From e98acab72ea74a4307d4bcefcaae890e1d7858c0 Mon Sep 17 00:00:00 2001 From: Maurice Lam Date: Thu, 12 May 2016 19:05:41 -0700 Subject: [PATCH] [SuwLib] Add proguard.flags Add proguard.flags file which apps should include in order to use items inflation from XML. Bug: 28740785 Change-Id: Ic8dc23e179b73de4c909044cacfdf7b8b4b4a0d8 --- library/proguard.flags | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 library/proguard.flags diff --git a/library/proguard.flags b/library/proguard.flags new file mode 100644 index 0000000..c3a49d5 --- /dev/null +++ b/library/proguard.flags @@ -0,0 +1,8 @@ +######################################### +## Keep rules +######################################### + +# Allow inflating ItemHierarchies from XML +-keep public class * extends com.android.setupwizardlib.items.ItemHierarchy { + public (android.content.Context, android.util.AttributeSet); +}