程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android 4.0-引用multiDexEnabled 問題

android 4.0-引用multiDexEnabled 問題

編輯:編程綜合問答
引用multiDexEnabled 問題

java.lang.NoClassDefFoundError: android.support.v7.appcompat.R$layout
引用multiDexEnabled = true android 4.x 及以下的手機不能運行,出現上述錯誤

最佳回答:


這個問題我搜索了好久,在國內的搜索上找不到類似問題,所以自己提了一個。其實我已經解決了。
I faced the same issue and fixed it. It is issue with Dex Limit. Because the dex limit is reached, it creates two dex files. Lollipop knows how to read, preLollipop has no idea unless you tell it in application class.
就是dex限制問題,android5.x及以上的都知道,之前的版本要加一句話在 dependencies{}中

android {
compileSdkVersion 21
buildToolsVersion "21.1.0"

defaultConfig {
    ...
    minSdkVersion 14
    targetSdkVersion 21
    ...

    // Enabling multidex support.
    multiDexEnabled true
}
...

}

dependencies {
compile 'com.android.support:multidex:1.0.0'
}


還要在Manifest.xml的application 標簽中加入以下一句話:
<?xml version="1.0" encoding="utf-8"?>
package="com.example.android.multidex.myapplication">
...
android:name="android.support.multidex.MultiDexApplication">
...


解決
引用自google官網

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved