Skip to content

Commit

Permalink
Updated Proguard rules to make my shameful reflection hack work
Browse files Browse the repository at this point in the history
  • Loading branch information
Waboodoo committed Jun 9, 2023
1 parent 520209a commit 281603f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HTTPShortcuts/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ android {
// Version name and code must remain as literals so that F-Droid can read them
versionName = "3.0.1"
// 11,(2 digits major),(2 digits minor),(2 digits patch),(2 digits build)
versionCode = 1103000100
versionCode = 1103000101

buildConfigField("String", "BUGSNAG_API_KEY", "\"$bugsnagAPIKey\"")
buildConfigField("String", "BUILD_TIMESTAMP", "\"${rootProject.ext["buildTimestamp"]}\"")
Expand Down
3 changes: 2 additions & 1 deletion HTTPShortcuts/app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
-keep class com.yalantis.ucrop** { *; }
-keep interface com.yalantis.ucrop** { *; }
-keep class com.joaomgcd.taskerpluginlibrary.** { *; }
-keep class net.dinglisch.android.tasker.** { *; }
-keep class net.dinglisch.android.tasker.** { *; }
-keep class androidx.compose.material3.TabRowKt { *; } # here because I had to resort to reflection to change a hard-coded value

0 comments on commit 281603f

Please sign in to comment.