HTML/JavaScript小工具

HTML/JavaScript小工具

2020年3月9日 星期一

andorid 錯誤筆記 Didn't find class "android.view.layout" on path: DexPathList

 Didn't find class "android.view.layout" on path: DexPathList
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.view.layout" on path: DexPathList[[zip file "/data/app/com.example.nnroh.debtmanager-eZJs9JyPFQcK5hHTFcCewQ==/base.apk", zip file "/data/app/com.example.nnroh.debtmanager-eZJs9JyPFQcK5hHTFcCewQ==/split_lib_dependencies_apk.apk", zip file

發生以上錯誤時
解法如下:

於gradle 內加入
android {
.......

 dataBinding {
        enabled = true
    }
}