25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: android
-
- jdk:
- - oraclejdk8
-
- android:
- components:
- # Uncomment the lines below if you want to
- # use the latest revision of Android SDK Tools
- - tools
- - platform-tools
-
- # The SDK version used to compile your project
- - android-26
-
- # The BuildTools version used by your project
- - build-tools-27.0.3
-
- # Additional components
- - extra-android-support
- - extra-android-m2repository
-
- # Command to run
- script: ./gradlew :andlinker:build
-
- notifications:
- email: false
-
- # as per http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
- sudo: false
-
- # Caching: https://docs.travis-ci.com/user/languages/android/#Default-Test-Command-for-Gradle
- before_cache:
- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
-
- cache:
- directories:
- - $HOME/.gradle/caches/
- - $HOME/.gradle/wrapper/
- - $HOME/.android/build-cache
|