Skip to content

Commit

Permalink
Updated agp, gradle compile and min sdk versions. Cleaned up proguard…
Browse files Browse the repository at this point in the history
…-rules.
  • Loading branch information
jhetrifork committed Dec 14, 2023
1 parent 0c5949a commit 9e424fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.library") version "8.0.1" apply false
id("com.android.library") version "8.2.0-rc02" apply false
id("org.jetbrains.kotlin.android") version "1.8.0" apply false
kotlin("plugin.serialization") version "1.8.21"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions kotlin-data-wedge-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ val libraryVersion = "0.0.5"

android {
namespace = "dk.gls.kdw"
compileSdk = 33
compileSdk = 34

defaultConfig {
minSdk = 26
minSdk = 30

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
Expand Down
6 changes: 1 addition & 5 deletions kotlin-data-wedge-lib/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}

-keep class dk.gls.kdw.configuration.** {
*;
*;
}

-keep class dk.gls.kdw.configuration.model.** {
Expand Down Expand Up @@ -61,10 +61,6 @@
*;
}

-keep class dk.gls.kdw.KDW {
*;
}

-keep class dk.gls.kdw.configuration.scanner.ParityFlowScannerController {
*;
}

0 comments on commit 9e424fe

Please sign in to comment.