From 25fed913715cad2f20fcafd63bd1452721dfeea3 Mon Sep 17 00:00:00 2001 From: Delphine Martin Date: Fri, 3 Feb 2017 11:46:41 +0100 Subject: [PATCH] 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 --- packages/SystemUI/proguard.flags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/proguard.flags b/packages/SystemUI/proguard.flags index 6d76798304903..8cc2ce2600664 100644 --- a/packages/SystemUI/proguard.flags +++ b/packages/SystemUI/proguard.flags @@ -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 *; }