Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions androidapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ android {
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
signingConfig = buildTypes.getByName("debug").signingConfig
proguardFiles("rules.pro")
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions androidapp/rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

-dontwarn androidx.test.platform.app.InstrumentationRegistry
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
kotlin = "2.3.0"
jni = "1.1.0"
agp = "9.0.1"
agp = "9.2.1"
filepicker = "0.12.0"
publish = "0.35.0"
skiko = "0.9.22.2"
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Sat Nov 15 15:30:12 EET 2025
#Thu May 14 11:29:59 UTC 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionSha256Sum=2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion pdfmp-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kotlin {
}
}
jvmToolchain(21)
androidLibrary {
android {
namespace = "com.dshatz.pdfmp.compose"
compileSdk = 36
minSdk = 24
Expand Down
7 changes: 5 additions & 2 deletions pdfmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,16 @@ kotlin {
}
jvmToolchain(21)
jvm()
androidLibrary {
android {
namespace = "com.dshatz.pdfmp"
compileSdk = 36
minSdk = 24

optimization {
this.consumerKeepRules.file(project.file("consumer-rules.pro"))
this.consumerKeepRules.apply {
file(project.file("consumer-rules.pro"))
publish = true
}
}

withDeviceTestBuilder {
Expand Down
Loading