gpt4 book ai didi

Android Kotlin : java. lang.NoClassDefFoundError:解析失败:

转载 作者:IT老高 更新时间:2023-10-28 13:35:24 26 4
gpt4 key购买 nike

我们的 android 应用程序的每第二次运行,我们都会遇到一个崩溃,上面写着

java.lang.NoClassDefFoundError: Failed resolution of: Lin/blahapp/xxx/BlahUtil

BlahUtil 是一个带有 @JvmStatic 注释的 kotlin 对象。我从 android app(All in java) 的其余部分调用这些静态方法。

我们使用 multidex 1.0.1。

我在 android studio 2.1.2 上,使用 JDK 7。

相关的gradle配置:

compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
}
dexOptions {
incremental true
dexInProcess true
javaMaxHeapSize "10g"
preDexLibraries true
}
buildscript {
ext.kotlin_version = '1.0.3'

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin-android'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}

追踪:

at in.blahapp.xxx.OurActivity 
at android.app.Activity.performCreate(Activity.java:6251)
at ndroid.app.Instrumentation.callActivityOnCreate
at android.app.ActivityThread.performLaunchActivity
at android.app.ActivityThread.handleLaunchActivity
at android.app.ActivityThread.-wrap11
at android.app.ActivityThread$H.handleMessage
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:5417)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)

Caused by: java.lang.ClassNotFoundException: Didn't find class "in.blahapp.xxx.BlahUtil" on path: DexPathList[[dex file ....

logcat output

最佳答案

您应该关闭“即时运行”。 Android Studio -> 首选项 -> 构建、执行、部署 -> 即时运行。关掉一切。

关于Android Kotlin : java. lang.NoClassDefFoundError:解析失败:<KotlinObject>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38691131/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com