clover / clover-android-sdk

Clover SDK for developing applications on Clover Station/Mobile/Mini/Flex

Home Page:https://docs.clover.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proguard rules

javichaques opened this issue · comments

Hi,

Which are the rules for proguard?

I try to build release with minify and shrinkResources enabled and this fails with this Warning:

Warning: com.clover.core.internal.calc.Decimal: can't find referenced class edu.umd.cs.findbugs.annotations.SuppressFBWarnings

release {
minifyEnabled true
shrinkResources true
debuggable false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}

Try adding this to your rules: -dontwarn edu.umd.cs.findbugs.annotations.SuppressFBWarnings

It's working, ty!