This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
forked from mikepenz/AboutLibraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix travis
- Loading branch information
Showing
2 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## About this issue | ||
|
||
- Briefly describe the issue | ||
- How can the issue be reproduced / sample code | ||
|
||
## Details | ||
- [ ] Used library version | ||
- [ ] Used support library version | ||
- [ ] Used gradle build tools version | ||
- [ ] Used tooling / Android Studio version | ||
- [ ] Other used libraries, potential conflicting libraries | ||
|
||
## Checklist | ||
|
||
- [ ] Searched for [similar issues](https://github.com/mikepenz/AboutLibraries/issues) | ||
- [ ] Checked out the [sample application](https://github.com/mikepenz/AboutLibraries/tree/develop/app) | ||
- [ ] Read the [README](https://github.com/mikepenz/AboutLibraries/blob/develop/README.md) | ||
- [ ] Checked out the [CHANGELOG](https://github.com/mikepenz/AboutLibraries/releases) | ||
- [ ] Read the [MIGRATION GUIDE](https://github.com/mikepenz/AboutLibraries/blob/develop/MIGRATION.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,24 @@ | ||
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 BuildTools version used by your project | ||
- build-tools-27.0.1 | ||
|
||
# The SDK version used to compile your project | ||
- build-tools-27.0.2 | ||
- android-27 | ||
|
||
# Additional components | ||
- extra-google-m2repository | ||
- extra-android-m2repository | ||
licenses: | ||
- '.+' | ||
|
||
before_install: | ||
- yes | sdkmanager "platforms;android-27" | ||
jdk: | ||
- oraclejdk8 | ||
script: | ||
- ./gradlew clean assemble --stacktrace | ||
|
||
- ./gradlew clean build | ||
branches: | ||
except: | ||
- gh-pages | ||
|
||
notifications: | ||
email: false | ||
|
||
sudo: false | ||
|
||
before_cache: | ||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | ||
cache: | ||
directories: | ||
- $HOME/.m2 | ||
|
||
- $HOME/.gradle/caches/ | ||
- $HOME/.gradle/wrapper/ |