You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
language: android
|
|
jdk: oraclejdk8
|
|
before_install:
|
|
- yes | sdkmanager "platforms;android-27"
|
|
|
|
env:
|
|
global:
|
|
- ANDROID_API_LEVEL=27
|
|
- ANDROID_BUILD_TOOLS_VERSION=27.0.3
|
|
- TRAVIS_SECURE_ENV_VARS=true
|
|
|
|
android:
|
|
components:
|
|
# The BuildTools version used by your project
|
|
- tools
|
|
- platform-tools
|
|
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
|
|
- extra-android-m2repository
|
|
- extra-google-android-support
|
|
|
|
# The SDK version used to compile your project
|
|
- android-$ANDROID_API_LEVEL
|
|
licenses:
|
|
- '.+'
|
|
|
|
script:
|
|
- ./gradlew clean
|
|
# - ./gradlew bintrayUpload
|
|
- ./gradlew assembleDebug
|
|
|