Skip to content

Commit

Permalink
Release v2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-norman committed Jul 21, 2024
1 parent 1e6b8fa commit fe8b136
Show file tree
Hide file tree
Showing 3 changed files with 11 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 @@ -14,8 +14,8 @@ android {
applicationId = "com.cobresun.brun.pantsorshorts"
minSdk = 24
targetSdk = 34
versionCode = 25
versionName = "2.8"
versionCode = 26
versionName = "2.9"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled = true
buildConfigField("String", "PirateWeatherAPIKey", properties["PirateWeatherAPIKey"].toString())
Expand Down
9 changes: 9 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,12 @@
-keepclasseswithmembers class * {
@retrofit2.http.* <methods>;
}

# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
-keep,allowobfuscation,allowshrinking class retrofit2.Response

# With R8 full mode generic signatures are stripped for classes that are not
# kept. Suspend functions are wrapped in continuations where the type argument
# is used.
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
Binary file modified app/release/app-release.aab
Binary file not shown.

0 comments on commit fe8b136

Please sign in to comment.