Android Studio で署名済み apk を生成しようとしていますが、これらのエラーが表示されます
Error:(59, 18) error: package timber.log does not exist
Error:(27, 23) error: package okhttp3.logging does not exist
私のアプリケーションクラスでは、木材を次のように定義しています
if (BuildConfig.DEBUG) {
Timber.plant(new Timber.DebugTree());
} else {
Timber.plant(new CrashReportingTree());
}
これは私が使用する Okhttp ロギング方法です。
public static HttpLoggingInterceptor loggingInterceptor() {
return new HttpLoggingInterceptor().setLevel(BuildConfig.DEBUG ? HttpLoggingInterceptor.Level.BODY :HttpLoggingInterceptor.Level.NONE);
}
次のようにgradleセットアップ:
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
特定のプロガード構成はありません。何が間違っている可能性がありますか?