I get the following error when exporting an Android application using Proguard (via ADT from Eclipse).
"proguard.ParseException: Waiting for opening '(' or delimiter ';' before 'name'"
I see that other ProGuard analysis error errors were resolved by updating Proguard and sdk; however, no luck here after all the updates. Has anyone seen / solved this before? Thank you in advance for your help!
-optimization covers 5 -dontusemixedcaseclassnames -dontskipnonpubliclibraryclasses -dontpreverify -detailed -optimization! code / simplification / arithmetic ,! field /, class / merge /
-assumenosideeffects class android.util.Log {public static boolean isLoggable (java.lang.String, int); public static int v (...); public static int d (...); }
-printmapping out.map
-renamesourcefileattribute SourceFile -keepattributes SourceFile, LineNumberTable
-keep public class * extends android.app.Activity -keep public class * extends android.app.Application -keep public class * extends android.app.Service -keep public class * extends android.content.BroadcastReceiver -keep public class * extends android.content.ContentProvider -keep public class * extends android.app.backup.BackupAgentHelper -keep public class * extends android.preference.Preference -keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {native; }
-keepclasseswithmembernames class * {public (android.content.Context, android.util.AttributeSet); }
-keepclasseswithmembernames class * {public (android.content.Context, android.util.AttributeSet, int); }
-keepclassmembers enum * {public static * [] values (); public static * valueOf (java.lang.String); }
-keep class * implements android.os.Parcelable {public static final android.os.Parcelable $ Creator *; }
-keepclassmembers class * extends android.content.Context {public void * (android.view.View); public void * (android.view.MenuItem); }
-keepclassmembers class * .R $ {public static; }