我是靠谱客的博主 舒心鸡翅,最近开发中收集的这篇文章主要介绍Kotlin NoClassDefFoundError异常,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

出现异常 java.lang.NoClassDefFoundError: Failed resolution of: Lkotlin/jvm/internal/Intrinsics



网上有人说添加   

compile 'com.mapzen:on-the-road:0.8.1

测试会报其他异常或错误

解决办法


默认会在 app build.gradle 添加

dependencies{

    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

}

repositories {
    mavenCentral()
}


然后同步(sync Now)

如果出现

Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.

It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html

将 compile 修改为 implementation 

同步(sync Now) 编译正常显示

最后

以上就是舒心鸡翅为你收集整理的Kotlin NoClassDefFoundError异常的全部内容,希望文章能够帮你解决Kotlin NoClassDefFoundError异常所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部