Fix a proguard rule and enable proguard on debug builds too.
This commit is contained in:
parent
5465dcaa44
commit
653bdbec69
3 changed files with 3 additions and 2 deletions
|
@ -34,7 +34,7 @@ android {
|
|||
ext.enableCrashlytics = true
|
||||
}
|
||||
debug {
|
||||
minifyEnabled false
|
||||
minifyEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
resValue("string", "PORT_NUMBER", "8082")
|
||||
// disable crashlytics
|
||||
|
|
1
app/proguard-rules.pro
vendored
1
app/proguard-rules.pro
vendored
|
@ -69,6 +69,7 @@
|
|||
|
||||
|
||||
###### ???
|
||||
-keep class org.slf4j.** { *; }
|
||||
-dontwarn org.slf4j.**
|
||||
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ import java.util.concurrent.TimeUnit
|
|||
class ImportBrainkeyFragment : BaseAccountFragment() {
|
||||
|
||||
companion object {
|
||||
private const val TAG = "ImportBrainkeyActivity"
|
||||
private const val TAG = "ImportBrainkeyFragment"
|
||||
}
|
||||
|
||||
/** User account associated with the key derived from the brainkey that the user just typed in */
|
||||
|
|
Loading…
Reference in a new issue