我使用带有 Eclipse IDE 的 OS X El Capitan 的 Mac
当我创建一个项目“Gluon Mobile - Single View Project”时,我无法为 Android 编译,因为我遇到了 multidex 问题。我使用这个命令:
./gradlew androidInstall
Execution failed for task ':mergeClassesIntoJar'.
> Cannot expand ZIP '/.../sdk/extras/android/support/multidex/library/libs/android-support-multidex.jar'
as it does not exist.
我看到了不同的主题,并进行了这些验证:
- Android SDK 由“Android Studio”安装 但是,我没有要安装的 android 支持库
如果我在 build.gradle 上添加 compile 'com.android.support:multidex:1.0.0',我还有另一个错误
Could not resolve all dependencies for configuration ':compile'. > Could not find com.android.support:multidex:1.0.0.
但是如果我在一个随机的 Android Studio 项目中添加 compile 'com.android.support:multidex:1.0.0' , gradle compile 。
- 为桌面编译是可以的,在 iPhone 模拟上也是如此。
我不明白为什么它不起作用
感谢您的阅读。你能帮助我吗 ?