Raf*_*ada 7 android minify android-studio build.gradle
我将我的 android studio 更新为“Android Studio Dolphin | 2021.3.1”,现在我在一些项目中遇到了问题:
运行 R8 时检测到缺少类。请添加缺少的类或应用“位置地址”中生成的其他保留规则
缺少的类是:
AGPBI: {"kind":"warning","text":"Missing class com.facebook.infer.annotation.Nullsafe$Mode (referenced from: com.facebook.ads.NativeAdBase)\r\nMissing class comMissing class com.facebook.infer.annotation.Nullsafe$Mode (referenced from: com.facebook.ads.NativeAdBase)
Missing class com.facebook.infer.annotation.Nullsafe$Mode (referenced from: com.facebook.ads.NativeAdBase)
Missing class com.facebook.infer.annotation.Nullsafe (referenced from: com.facebook.ads.NativeAdBase)
Run Code Online (Sandbox Code Playgroud)
我的 Gradle.build 文件:
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
android {
compileSdk 32
defaultConfig {
applicationId "app_id"
minSdk 20
targetSdk 32
versionCode 4
versionName "2.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules-debug.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'app_id'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
//admob
implementation 'com.google.android.gms:play-services-ads:21.2.0'
implementation 'com.google.ads.mediation:facebook:6.11.0.1'
//firebase
// Import the BoM for the Firebase platform
implementation platform('com.google.firebase:firebase-bom:30.4.1')
// Add the dependency for the Analytics library
// When using the BoM, you don't specify versions in Firebase library dependencies
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-inappmessaging-display'
}
Run Code Online (Sandbox Code Playgroud)
请帮助我解决这个问题。
Gou*_*Das 22
我通过添加以下依赖项解决了这个问题
implementation 'com.facebook.infer.annotation:infer-annotation:0.18.0'
希望,它会有所帮助。