Skip to content

Update buildToolsVersion to 26.0.1, supportLibrary and SdkVersion to 26 #849

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

Merged
merged 1 commit into from
Aug 3, 2017
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android:
- tools
before_script:
- mv library/google-services.json app/google-services.json
- ${ANDROID_HOME}tools/bin/sdkmanager --channel=3 "tools" "platform-tools" "build-tools;25.0.3" "platforms;android-25" "extras;google;m2repository"
- ${ANDROID_HOME}tools/bin/sdkmanager --channel=3 "tools" "platform-tools" "build-tools;26.0.1" "platforms;android-26" "extras;google;m2repository"
script: ./gradlew clean assembleDebug check
after_failure:
# tests
Expand Down
8 changes: 4 additions & 4 deletions constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ project.ext {
version = '2.2.0'
pomdesc = 'Firebase UI Android'

compileSdk = 25
targetSdk = 25
compileSdk = 26
targetSdk = 26
minSdk = 14

buildTools = '25.0.3' // Remember to also update in .travis.yml
buildTools = '26.0.1' // Remember to also update in .travis.yml

firebaseVersion = '11.0.4'
supportLibraryVersion = '25.4.0'
supportLibraryVersion = '26.0.0'
}