>>> -keep public class com.android.vending.licensing.ILicensingService

The latest LVL library version uses a different package name,
com.android.vending.licensing has been replaced
with com.google.android.vending.licensing. Check ILicensingService.java and
adjust your ProGuard rules accordingly.

-- K

2012/7/23 Gabriel Simões <[email protected]>

> Sorry, here is my proguard's config.txt file:
>
> -target 1.6
> -optimizationpasses 5
> -dontusemixedcaseclassnames
> -dontskipnonpubliclibraryclasses
> -dontpreverify
> -verbose
> -dump class_files.txt
> -printseeds seeds.txt
> -printusage unused.txt
> -printmapping mapping.txt
> -libraryjars ..\libs
>
> -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
>
> -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 <methods>;
> }
>
> -keepclasseswithmembers class * {
>     public <init>(android.content.Context, android.util.AttributeSet);
> }
>
> -keepclasseswithmembers class * {
>     public <init>(android.content.Context, android.util.AttributeSet, int);
> }
>
> -keepclassmembers class * extends android.app.Activity {
>    public void *(android.view.View);
> }
>
> -keepclassmembers enum * {
>     public static **[] values();
>     public static ** valueOf(java.lang.String);
> }
>
> -keep class * implements android.os.Parcelable {
>   public static final android.os.Parcelable$Creator *;
> }
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to