LEADBOLT рекламирует строку ошибки proguard 1

Я интегрировал рекламу LEADBOLT в свое приложение для Android. Я использую Proguard. Когда я экспортирую apk, возникает следующая ошибка. Я публикую здесь консольную ошибку и Proguard-project.text

Я включаю AdColony в свое приложение для Android и теперь пытаюсь экспортировать свое приложение с помощью proguard. Я нашел конфигурацию для AdColony здесь и здесь. Пробовал включать их по отдельности и вместе в proguard.cfg, но не получается.

Ошибка консоли

  [2015-08-04 12:22:44 - Leadboat Demo] Proguard returned with error code 1. See console
    [2015-08-04 12:22:44 - Leadboat Demo]       You should check if you need to specify additional program jars.
    [2015-08-04 12:22:44 - Leadboat Demo] Unexpected error while performing partial evaluation:
    [2015-08-04 12:22:44 - Leadboat Demo]   Class       = [com/apptracker/android/module/AppModuleLoader]
    [2015-08-04 12:22:44 - Leadboat Demo]   Method      = [onFailed(Lcom/apptracker/android/listener/AppModuleListener;Ljava/lang/String;Ljava/lang/String;Z)V]
    [2015-08-04 12:22:44 - Leadboat Demo]   Exception   = [java.lang.ArrayIndexOutOfBoundsException] (-1)
    [2015-08-04 12:22:44 - Leadboat Demo] java.lang.ArrayIndexOutOfBoundsException: -1
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.optimize.peephole.BranchTargetFinder.visitConstantInstruction(BranchTargetFinder.java:492)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.instruction.ConstantInstruction.accept(ConstantInstruction.java:157)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.attribute.CodeAttribute.instructionsAccept(CodeAttribute.java:138)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.attribute.CodeAttribute.instructionsAccept(CodeAttribute.java:110)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.optimize.peephole.BranchTargetFinder.visitCodeAttribute(BranchTargetFinder.java:354)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.attribute.CodeAttribute.accept(CodeAttribute.java:101)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.optimize.evaluation.PartialEvaluator.visitCodeAttribute0(PartialEvaluator.java:261)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.optimize.evaluation.PartialEvaluator.visitCodeAttribute(PartialEvaluator.java:181)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.attribute.CodeAttribute.accept(CodeAttribute.java:101)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.ProgramMethod.attributesAccept(ProgramMethod.java:79)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.attribute.visitor.AllAttributeVisitor.visitProgramMember(AllAttributeVisitor.java:95)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.util.SimplifiedVisitor.visitProgramMethod(SimplifiedVisitor.java:91)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.ProgramMethod.accept(ProgramMethod.java:71)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.ProgramClass.methodsAccept(ProgramClass.java:504)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.visitor.AllMethodVisitor.visitProgramClass(AllMethodVisitor.java:47)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.ProgramClass.accept(ProgramClass.java:346)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.classfile.ClassPool.classesAccept(ClassPool.java:116)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.optimize.Optimizer.execute(Optimizer.java:372)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.ProGuard.optimize(ProGuard.java:306)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.ProGuard.execute(ProGuard.java:115)
    [2015-08-04 12:22:44 - Leadboat Demo]   at proguard.ProGuard.main(ProGuard.java:492)

Код файла Proguard

enter code here

-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-renamesourcefileattribute SourceFile
-keepattributes SourceFile,LineNumberTable

-dontwarn java.awt.**
-dontnote java.awt.**
-dontwarn com.badlogic.gdx.jnigen.**


-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

-keep class com.android.vending.billing.**


-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 *;
}

-keepnames class com.badlogic.gdx.backends.android.AndroidInput*
-keepclassmembers class com.badlogic.gdx.backends.android.AndroidInput* {<init>(...);}
#GOOGLE PLAY SERVICES
-keep class com.google.** { *;}
-keep interface com.google.** { *;}
-dontwarn com.google.**

-dontwarn sun.misc.Unsafe
-dontwarn com.google.common.collect.MinMaxPriorityQueue
-keepattributes *Annotation*,Signature
-keep class * extends com.google.api.client.json.GenericJson {*;}
-keep class com.google.api.services.drive.** {*;}

# AdColony
-dontwarn android.webkit.** 
-dontwarn com.jirbo.adcolony.**
-keep class com.jirbo.adcolony.**{*;}

-keep class com.apptracker.** { *; } 
-keepclassmembers class **.R$* { 
    public static <fields>; 
} 
-keep class **.R$*

person swati tiwari    schedule 04.08.2015    source источник
comment
у вас есть перечисления в вашем проекте ..? stackoverflow.com/questions/26368971 / проверить это один раз   -  person RamBabu Pudari    schedule 04.08.2015
comment
Когда мы подписываем apk, возникает ошибка. Мы разрешили использовать proguard. Помогите пожалуйста мне.   -  person swati tiwari    schedule 04.08.2015
comment
я использую в приложении рекламу LEADBOLT.   -  person swati tiwari    schedule 04.08.2015
comment
можете ли вы опубликовать свой класс com/apptracker/android/module/AppModuleLoader и файлы com/apptracker/android/listener/AppModuleListener для справки   -  person RamBabu Pudari    schedule 04.08.2015
comment
Определите, как класс и файл не находятся в состоянии защиты от ошибок.   -  person swati tiwari    schedule 04.08.2015
comment
я спрашиваю класс Java и интерфейс, что вы получаете error.i.e AppModuleLoader и AppModuleListener   -  person RamBabu Pudari    schedule 04.08.2015
comment
@RamBabuPudari: - Отправьте свой идентификатор facebook, я отправлю вам файл Java   -  person swati tiwari    schedule 05.08.2015