Building Apps with Over 64K Methods

问题
Error:The number of method references in a .dex file cannot exceed 64K.  
Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html  
解决方案
1 在app的 build.gradle 中
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'  
}  
2 在 AndroidManifest.xml 中的 application 标签中添加
  
  
      
        ...  
      
  

**Note: If your app uses extends the Application
class, you can override the attachBaseContext() method and call **
MultiDex.install(this) to enable multidex. For more information, see the MultiDexApplication
reference documentation.

你可能感兴趣的:(Building Apps with Over 64K Methods)