Skip to content

Commit 54a898e

Browse files
committed
maybe fix reproducible builds
1 parent cf5af6f commit 54a898e

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

app/build.gradle.kts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ android {
4848
applicationId = "io.github.luantak.fokuslauncher"
4949
minSdk = 26
5050
targetSdk = 36
51-
versionCode = 5
52-
versionName = "1.0.5"
51+
versionCode = 6
52+
versionName = "1.0.6"
5353

5454
testInstrumentationRunner = "io.github.luantak.fokuslauncher.HiltTestRunner"
5555
}
@@ -85,6 +85,13 @@ android {
8585

8686
buildFeatures { compose = true }
8787

88+
// Keep symbols in this native lib to avoid environment-dependent stripping output.
89+
packaging {
90+
jniLibs {
91+
keepDebugSymbols += "**/libdatastore_shared_counter.so"
92+
}
93+
}
94+
8895
testOptions {
8996
unitTests {
9097
isIncludeAndroidResources = true

0 commit comments

Comments
 (0)