android – Gradle assembleDebug和preDexDebug因CircleCI而失败

前端之家收集整理的这篇文章主要介绍了android – Gradle assembleDebug和preDexDebug因CircleCI而失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用CircleCI汇编调试器,但它必须无法构建(preDex).
为什么我不能这样做?

>使用ProductFlavor(名称为生产)
> Android Gradle ver.1.1.0-rc1

问题

./gradlew assembleProductionDebug died unexpectedly Building 92%3% >
:app:preDexProductionDebugaction ./gradlew assembleProductionDebug
Failed

circle.yml

  1. general:
  2. artifacts:
  3. - "app/build/outputs/apk/app-production-release-unaligned.apk"
  4. machine:
  5. java:
  6. version: openjdk7
  7. environment:
  8. ANDROID_HOME: /usr/local/android-sdk-linux
  9.  
  10. dependencies:
  11. pre:
  12. - echo y | android update sdk --no-ui --all --filter "build-tools-21.1.2"
  13. - echo y | android update sdk --no-ui --all --filter "platform-tools"
  14. - echo y | android update sdk --no-ui --all --filter "tools"
  15. - echo y | android update sdk --no-ui --all --filter "extra-google-google_play_services"
  16. - echo y | android update sdk --no-ui --all --filter "extra-google-m2repository"
  17. - echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"
  18. - echo y | android update sdk --no-ui --all --filter "extra-android-support"
  19. - echo y | android update sdk --no-ui --all --filter "android-21"
  20. - git submodule sync
  21. - git submodule update --init
  22. cache_directories:
  23. - ~/.android
  24. - ~/android
  25. override:
  26. - ./gradlew dependencies
  27.  
  28. test:
  29. override:
  30. - ./gradlew test
  31.  
  32. deployment:
  33. master:
  34. branch: master
  35. commands:
  36. - ./gradlew assembleProductionDebug

解决方法

我遇到过同样的问题.事实证明,我必须为ci版本禁用preDex.

把它放在root build.gradle中:

  1. project.ext.preDexLibs = !project.hasProperty('disablePreDex')
  2.  
  3. subprojects {
  4. project.plugins.whenPluginAdded { plugin ->
  5. if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
  6. project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
  7. } else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
  8. project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
  9. }
  10. }
  11. }

然后,您可以使用以下命令构建ci:

  1. ./gradlew ... -PdisablePreDex

猜你在找的Android相关文章