Skip to content

Commit

Permalink
android: keep debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Velaron committed Feb 26, 2025
1 parent 88a5943 commit 81e117b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ android {
noCompress += ""
}

packaging {
jniLibs {
keepDebugSymbols.add("**/*.so")
}
}

sourceSets {
main {
assets {
Expand All @@ -52,11 +58,13 @@ android {
debuggable true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}

release {
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}

register("ci") {
initWith(getByName("release"))

Expand Down

0 comments on commit 81e117b

Please sign in to comment.