blob: b7bec709e38387aa7ac5503e2d1d75a8171b04b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
sudo: false
language: android
branches:
only:
- master
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
- extra-android-support
- extra-android-m2repository
# The BuildTools version used by your project
- build-tools-22.0.1
# The SDK version used to compile your project
- android-22
script:
- ./gradlew :sample:test :sample:assembleDebug
|