Don't print proguard info about the packages under fr.username404.
This commit is contained in:
parent
701c299576
commit
fb787b3be2
|
@ -42,7 +42,7 @@ subprojects {
|
||||||
obfuscationdictionary("$dictionariesDir/dictionary.txt")
|
obfuscationdictionary("$dictionariesDir/dictionary.txt")
|
||||||
classobfuscationdictionary("$dictionariesDir/classdictionary.txt")
|
classobfuscationdictionary("$dictionariesDir/classdictionary.txt")
|
||||||
adaptclassstrings()
|
adaptclassstrings()
|
||||||
dontwarn("fr.username404.**")
|
"fr.username404.**".also { dontwarn(it); dontnote(it) }
|
||||||
dontwarn("java.**") // Needed for the current version of proguard
|
dontwarn("java.**") // Needed for the current version of proguard
|
||||||
// Note: dontpreverify() should NOT be used, it will cause errors at runtime
|
// Note: dontpreverify() should NOT be used, it will cause errors at runtime
|
||||||
useuniqueclassmembernames()
|
useuniqueclassmembernames()
|
||||||
|
|
Loading…
Reference in New Issue