android 多索引实现

android multidex implementation

我遇到了这个错误。

Error:Execution failed for task ':myApp:createDebugMainDexClassList'. com.android.ide.common.internal.LoggedErrorException: Failed to run command: java -Xmx1024M -cp \android-sdk\build-tools.1.0\lib\dx.jar com.android.multidex.ClassReferenceListBuilder myApp\build\intermediates\multi-dex\debug\componentClasses.jar myApp\build\intermediates\multi-dex\debug\allclasses.jar

Error Code: 1 Output: Error: Could not find or load main class com.android.multidex.ClassReferenceListBuilder

我正在尝试使用 multidex 库,因为我的应用程序使用了 65000 方法,因为我正在使用 Link 描述的外部库,我在 mainfest 和 build.gradle 文件中添加了这些行,任何提示都是 appreciated.Thanks

编辑 几次启动后我收到了这个错误。

Error:Execution failed for task ':myApp:dexDebug'. com.android.ide.common.internal.LoggedErrorException: Failed to run command: \android-sdk\build-tools.1.0\dx.bat --dex --no-optimize --multi-dex --main-dex-list myApp\build\intermediates\multi-dex\debug\maindexlist.txt --output myApp\build\intermediates\dex\debug --input-list=myApp\build\intermediates\tmp\dex\debug\inputList.txt ,,Error Code:3.

Output: UNEXPECTED TOP-LEVEL ERROR: java.lang.OutOfMemoryError: Java heap space

我试图增加文件 'studio64.exe.vmoptions' 中的 Xms1024m -Xmx1024m 的大小,但它仍然没有帮助,我还在设置>编译器>VM 选项 Xms1024m -Xmx1024m

中进行了尝试

根据 https://developer.android.com/tools/building/multidex.html 的 multidex 文档,您需要 运行 构建工具 21.1.0 或更高版本才能使用 multidex。根据您的错误消息,您似乎使用的是 19.1.0。尝试升级。