我正努力解决一个奇怪的问题。 我尽了一切努力来找到导致我的应用崩溃的解决方案。
原因是“实施'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文档,如果应用程序最小sdk高于21,则要启用MultiDex,我需要做的就是像我一样将 multiDexEnabled设置为true 。
答案 0 :(得分:2)
已解决,
我的min SDK设置为26。
只需将其添加到您的 app gradle 中,即使文档中指出最低SDK低于26也是必需的。
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}