我正在努力解决一个奇怪的问题。我尝试了一切,以找到解决我的应用程序崩溃的原因。
原因是“实现'com.google.ar.sceneform.ux:sceneform-ux:1.7.0'”。
当我添加此实现时,我收到错误:
java.lang.RuntimeException: Unable to instantiate activity
ComponentInfo{com.example.myarcore/com.example.myarcore.MainActivity}:
java.lang.ClassNotFoundException: Didn't find class
"com.example.myarcore.MainActivity" on path: DexPathList[[zip file
"/data/app/com.example.myarcore-Aw
这是我的应用程序gradle代码:
apply plugin: 'com.android.application'
apply plugin: 'com.google.ar.sceneform.plugin'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.myarcore"
minSdkVersion 26
targetSdkVersion 28
multiDexEnabled true
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
根据MultiDex文档,如果app min sdk高于21,那么启用MultiDex我需要的是将multiDexEnabled设置为true。
解决了,
我的min SDK设置为26。
只需将此添加到您的应用程序gradle中,即使文档说明在低于26的min SDK中也是如此。
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}