Skip to content

Commit

Permalink
Merge pull request #66 from JSpiner/feature/fix-travis-license
Browse files Browse the repository at this point in the history
travis 이슈 수정
  • Loading branch information
ParkSangGwon authored Nov 7, 2017
2 parents 75cb0af + 3fe6bc5 commit 7cdcaec
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 21 deletions.
31 changes: 12 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,15 @@
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-23.0.2
- android-23
- extra-google-m2repository
- extra-android-m2repository
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'

install:
- echo y | android update sdk -u -a -t tools
- echo y | android update sdk -u -a -t platform-tools
- echo y | android update sdk -u -a -t build-tools-23.0.2
- echo y | android update sdk -u -a -t android-23
- echo y | android update sdk -u -a -t extra-google-m2repository
- echo y | android update sdk -u -a -t extra-android-m2repository
- tools
- platform-tools
- tools
- build-tools-25.0.0
- build-tools-23.0.2
- android-25
- android-23
- extra-android-m2repository
- extra-google-m2repository
script:
- ./gradlew build
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

lintOptions {
abortOnError false
}
buildToolsVersion '25.0.0'
}

Expand Down
4 changes: 3 additions & 1 deletion tedpermission-rx1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ android {
}
}


lintOptions {
abortOnError false
}
buildToolsVersion '25.0.0'
}

Expand Down
4 changes: 3 additions & 1 deletion tedpermission-rx2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ android {
}
}


lintOptions {
abortOnError false
}
buildToolsVersion '25.0.0'
}

Expand Down
3 changes: 3 additions & 0 deletions tedpermission/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ android {
}
}

lintOptions {
abortOnError false
}

buildToolsVersion '25.0.0'
}
Expand Down

0 comments on commit 7cdcaec

Please sign in to comment.