我嘗試使用CircleCI的assembleDebug
,但它必須無法構建(preDex)。 爲什麼我不能那樣做?Gradle assembleDebug和preDexDebug失敗,CircleCI
- 使用ProductFlavor(名稱是生產)
- Android的搖籃ver.1.1.0-RC1
問題
./gradlew assembleProductionDebug意外死亡92號樓%3% > :app:preDexProductionDebugaction ./gradlew assembleProductionDebug failed
circle.yml
general:
artifacts:
- "app/build/outputs/apk/app-production-release-unaligned.apk"
machine:
java:
version: openjdk7
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "build-tools-21.1.2"
- echo y | android update sdk --no-ui --all --filter "platform-tools"
- echo y | android update sdk --no-ui --all --filter "tools"
- echo y | android update sdk --no-ui --all --filter "extra-google-google_play_services"
- echo y | android update sdk --no-ui --all --filter "extra-google-m2repository"
- echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"
- echo y | android update sdk --no-ui --all --filter "extra-android-support"
- echo y | android update sdk --no-ui --all --filter "android-21"
- git submodule sync
- git submodule update --init
cache_directories:
- ~/.android
- ~/android
override:
- ./gradlew dependencies
test:
override:
- ./gradlew test
deployment:
master:
branch: master
commands:
- ./gradlew assembleProductionDebug
嘿,那裏,我爲CircleCI工作。你介意在[email protected]給我們留言,以便我們可以收集有關您項目的更多信息,併爲您提供幫助嗎? – bellkev 2015-02-09 23:03:12
你是否設法解決這個問題?我有同樣的問題。 – maclir 2015-08-04 12:56:42