android – proguard不会忽略引用的库

前端之家收集整理的这篇文章主要介绍了android – proguard不会忽略引用的库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用proguard,在proguard-project.txt中,我有一行忽略引用的类

-dontwarn com.google.ads.**

日志说:

Warning: com.flurry.android.ab: can’t find referenced class com.google.ads.InterstitialAd
Warning: com.flurry.android.ab: can’t find referenced class com.google.ads.InterstitialAd
Warning: com.flurry.android.ab: can’t find referenced class com.google.ads.InterstitialAd
Warning: com.flurry.android.ab: can’t find referenced class com.google.ads.AdRequest
Warning: com.flurry.android.ab: can’t find referenced class com.google.ads.AdRequest

……….

You should check if you need to specify additional program jars.
Warning: there were 277 unresolved references to classes or
interfaces. You may need to
specify additional library jars (using ‘-libraryjars’). java.io.IOException: Please correct the above
warnings first. at
proguard.Initializer.execute(Initializer.java:321) at
proguard.ProGuard.initialize(ProGuard.java:211) at proguard.ProGuard.execute(ProGuard.java:86)
at proguard.ProGuard.main(ProGuard.java:492)

我将line -libraryjars ./libs/FlurryAgent.jar包含在congig文件中.我的问题是什么?

解决方法

正如您所尝试的那样,您应该将这一行放在proguard-project.txt中:
-dontwarn com.google.ads.**

您必须确保ProGuard实际使用此配置文件,并在project.properties中使用此行:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

这是Android SDK r20或更高版本的标准行(旧版本仅使用proguard.config = proguard.cfg,在这种情况下,您必须指定整个配置,而不是依赖SDK中的配置).

原文链接:https://www.f2er.com/android/308670.html

猜你在找的Android相关文章