Skip to content

Commit

Permalink
Merge pull request #33 from zVolt/feature/improving
Browse files Browse the repository at this point in the history
fix pro guard rules
  • Loading branch information
zkhan93 authored Oct 29, 2021
2 parents d63b3a6 + f4d5f96 commit df54b86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
13 changes: 4 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ android {
versionCode 14
versionName "1.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
resConfigs "en" // FirebaseUI includes translations for all string resources.
}
signingConfigs {
release {
Expand All @@ -27,6 +28,9 @@ android {
keyAlias System.getenv("SIGNING_KEY_ALIAS")
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
}
debug {

}
}
buildTypes {
release {
Expand All @@ -48,15 +52,6 @@ android {
unitTests.returnDefaultValues = true
}
}
signingConfigs {
debug {
// storeFile file('C:\\Users\\zkhan\\.android\\debug.keystore')
}
}
defaultConfig {
resConfigs "en" // FirebaseUI includes translations for all string resources.
}

}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public static java.lang.String TABLENAME;
-keepclassmembers class io.github.zkhan93.familyfinance.models.** {
*;
}
-keep class io.github.zkhan93.familyfinance.models.** { *; }

#Glide
-keep public class * implements com.bumptech.glide.module.GlideModule
Expand All @@ -75,5 +76,4 @@ public static java.lang.String TABLENAME;
}
-dontnote
-dontwarn com.google.errorprone.**
-dontwarn com.google.common.**
-keep class android.support.v7.widget.SearchView { *; }
-dontwarn com.google.common.**

0 comments on commit df54b86

Please sign in to comment.