Skip to content

Commit

Permalink
fix crash in release version only
Browse files Browse the repository at this point in the history
  • Loading branch information
Helium314 committed Sep 27, 2023
1 parent 38253f1 commit e985190
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {
applicationId = "de.westnordost.streetcomplete.expert"
minSdk = 21
targetSdk = 33
versionCode = 5402
versionName = "54.1"
versionCode = 5403
versionName = "54.11"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
3 changes: 3 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
# crashes when selecting some quests from tag editor
-keep class androidx.core.app.CoreComponentFactory { *; }

# crashes on start after upgrading to gradle 8 (release version only for some reason, though same rules are used)
-keepclassmembers public class io.requery.android.database.sqlite.SQLiteConnection { *; }

# kotlinx-serialization start ----------------------------------------------------------------------

-keepattributes *Annotation*, InnerClasses
Expand Down

0 comments on commit e985190

Please sign in to comment.