Fix incorrect syntax in Proguard flags

When writing a rule matching fields and methods at the same
time, only the name '*' is authorized.

Bug: 34916285

Change-Id: I90cb8273f0915e216940faa1b3d9c6e82296798f
This commit is contained in:
Delphine Martin
2017-02-03 11:46:41 +01:00
parent abf19d1aa4
commit 25fed91371

View File

@@ -38,5 +38,5 @@
-keep class ** extends android.support.v14.preference.PreferenceFragment
-keep class com.android.systemui.tuner.*
-keep class com.android.systemui.plugins.** {
public protected **;
public protected *;
}