Facebook Audience Network Proguard settings
I'm currently using Proguard in my app, and the Audience Network is not working. I need some different configuration, rather than the usual:
-keep class com.facebook.** { *; }
The problem is the integration guide doesn't refer any kind of Proguard configuration. Does someone already faced this problem and figured out what is missing?
I need some different configuration, rather than the usual:
-keep class com.facebook.** { *; }
You need to use
-keep class com.facebook.ads.** { *; }
proguard configuration to show Facebook Audience Network.Because in AudienceNetwork.jar
the main package is com.facebook.ads
简单地使用
-keep class com.facebook.ads.** { *; }
-keep class com.facebook.ads.** { *; }
-dontwarn com.facebook.ads.**
链接地址: http://www.djcxy.com/p/21898.html
上一篇: 什么JVM优化导致这些性能结果?