forked from ftctechnh/ftc_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (27 loc) · 852 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: android
jdk: oraclejdk8
sudo: false
android:
components:
- tools
- platform-tools
- build-tools-27.0.3
- tools
- android-19 #Minimum API Version
- android-23 #Target API Version
# - android-26 #Newest API Version
- extra-google-m2repository #linter and some other extras
- extra-android-m2repository
# (We use te default ./gradlew build ConnectedCheck now, so this is unnecessary)
#script :
# - gradle assemble
notifications:
slack: technoramic5190:DzHEyly89iwtuHPp933y0cNE
#
# before_script:
# #create and start emulator (ONLY NECESSARY IF TESTING IT WITH AN EMULATOR)
# - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
# - emulator -avd test -no-skin -no-audio -no-window &
# - android-wait-for-emulator
# - adb shell input keyevent 82 &
#