Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis 이슈 수정 #66

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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