We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f733f commit 5b0351bCopy full SHA for 5b0351b
circle.yml
@@ -1,17 +1,20 @@
1
-checkout:
2
- post:
3
- - cp -r .circleci/licenses/. $ANDROID_HOME/licenses
4
-
5
machine:
6
java:
7
version:
8
oraclejdk8
9
10
-test:
+dependencies:
11
pre:
12
- - emulator -avd circleci-android24 -no-window:
+ # Android SDK Build-tools, revision 25.0.3, makes sure we've accepted the license
+ - if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.3" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.3"; fi
+ cache_directories:
+ - /usr/local/android-sdk-linux/build-tools/25.0.3
+ post:
13
+ - emulator -avd circleci-android22 -no-window:
14
background: true
15
parallel: true
16
+
17
+test:
18
override:
19
- ./gradlew test
20
- circle-android wait-for-boot
0 commit comments