-
Notifications
You must be signed in to change notification settings - Fork 2
/
circle.yml
22 lines (19 loc) · 837 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "platform-tools,tools"
- echo y | android update sdk --no-ui --all --filter "android-23,build-tools-23.0.2"
- 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 "extra-google-m2repository"
- echo y | android update sdk --no-ui --all --filter "extra-google-google_play_services"
- echo y | android update sdk --no-ui --all --filter "addon-google_apis-google-21"
cache_directories:
- ~/.android
override:
- ./gradlew dependencies
test:
override:
- ./gradlew clean build -PdisablePreDex