Androi java.lang.NoClassDefFoundError——on path: DexPathList[[zip file "/data/app/com.example-1/base.

在写kotlin时,包没有安排好 重新改了下类包分配,报错了这个,后来又都退了回去但是bug一直在。
有个大坑,kotlin包名路径,我之前创建的包已经删除了,但是其他类导包路径没有自动改回去,如
Androi java.lang.NoClassDefFoundError——on path: DexPathList[[zip file
可以看到,并没有network的包。

解决办法:
1、看看你有没有类似情况 ,正确导包。
2、取消勾选下Instant Run(tAndroi java.lang.NoClassDefFoundError——on path: DexPathList[[zip file

这个改好之后又出现了新的Bug,找不到BaseApplication路径(WTF

java.lang.RuntimeException: Unable to instantiate application com.example.MyApp: java.lang.ClassNotFoundException: Didn't find class "com.xxx.BaseApplication" on path: DexPathList[[zip file "/data/app/com.example-1/base.apk"],nativeLibraryDirectories=[/data/app/com.example-1/lib/arm, /vendor/lib, /system/lib]]

查找很多信息后解决办法:
1.so 库加载的问题,解决方法是请合理设置 abiFilters;

2.gradle 版本和 gradle tools 的版本问题

3.Android Studio clean 和 rebuild 后就能解决。

4.检查 Android Studio 的 instant run 是否开启,若开启,请关闭。

成功解决

你可能感兴趣的:(Bug)