Skip to content

Commit

Permalink
fix: in-app messaging proguard rules missing (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
levibostian committed Jul 21, 2023
1 parent 84cdcbc commit c494bb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions messaginginapp/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Gist
-keep class io.customer.messaginginapp.** { *; }
2 changes: 1 addition & 1 deletion samples/java_layout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {

buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin_compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {

buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
)
Expand Down

0 comments on commit c494bb0

Please sign in to comment.