I tried using proguard with my Android Wear application, but I'm not sure what should be going into the rules. In my wear app's gradle file I have:
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
and my proguard-rules.pro
looks like:
-keepattributes SourceFile,LineNumberTable
When I run my app, the UI works, but anything that accesses the DataApi
is missing. Anyone have any ideas/experience?