私はproguardに署名してAPKに署名しようとしています。インモビ-広告:6.0.3これは、前Android:InMobi新バージョン6.0.3のProguard問題
You may need to add missing library jars or update their versions.
Warning:there were 2 unresolved references to classes or interfaces.
If your code works fine without the missing classes, you can suppress
the warnings with '-dontwarn' options.
として警告はありませんが、「」com.inmobi.monetizationをコンパイル として依存関係を使用しています取得していますインモビ
のための依存関係を追加完全に働いていました'"。Inmobi用のjarファイルを使用する前に。
古いバージョンのInMobi 5.0.4を使用しているとき、それはjarファイルです。その時間プロガードは問題ありません。
問題6.0.3
が
-keepattributes SourceFile,LineNumberTable
-keep class com.inmobi.** { *; }
-keep public class com.google.android.gms.**
-dontwarn com.google.android.gms.**
-dontwarn com.squareup.picasso.**
-keep class com.google.android.gms.ads.identifier.AdvertisingIdClient{
public *;
}
-keep class com.google.android.gms.ads.identifier.AdvertisingIdClient$Info{
public *;
}
-keep class com.moat.** {*;}
-dontwarn com.moat.**<br>
はまだ問題
解決していない2つの参照はどれですか? Android Studioでそれ以上のことを言わない場合は、より詳細なログを使ってgradleタスクを実行してください。 – anthonymonori