应用程序在我的android studio上运行正常,但是每当从play store应用程序下载到android nougat或更低版本时崩溃,则我包含了multidex,但仍然存在相同的错误
Build Gradle:
Build Gradle :
android {
compileSdkVersion 29
buildToolsVersion "29.0.0"
defaultConfig {
applicationId "com.-----.app"
minSdkVersion 15
targetSdkVersion 29
multiDexEnabled true //include
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
依赖性:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:18.0.0'
implementation 'com.android.support:multidex:2.1.0' // Multidex
implementation 'com.google.android.material:material:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
MainActivity:
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base)
MultiDex.install(this)
}
@Override
protected void onCreate(Bundle savedInstanceState) { //Fucntion
My code
答案 0 :(得分:0)
您正在使用ProGuard进行代码缩减以进行发布构建,并且构建工具会删除一些应该存在的类。您需要更新proguard-rules.pro
(或应用gradle中定义的任何名称),例如通过插入
-keep class com.example.MyClass
或类似的条目。我建议您检查正在使用的库的proguard部分。复制这些规则并将其添加到您的规则中。
您还可以检查this以获得更多信息。