From 193c228747721981d0d8d3fbfb184f9f6448d6c3 Mon Sep 17 00:00:00 2001 From: Nick Adams Date: Sat, 13 May 2017 19:56:32 -0700 Subject: [PATCH 1/2] [gradle] bump dependencies versions to latest --- build.gradle | 2 +- library/build.gradle | 4 ++-- sample/build.gradle | 13 +++++++++---- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index ff65cab..b4bcaa8 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.0-beta2' + classpath 'com.android.tools.build:gradle:2.3.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/library/build.gradle b/library/build.gradle index 224b5e4..a0d10e3 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -3,7 +3,7 @@ apply from: 'gradle-maven-push.gradle' android { compileSdkVersion 25 - buildToolsVersion "25.0.2" + buildToolsVersion "25.0.3" defaultConfig { minSdkVersion 14 @@ -17,7 +17,7 @@ android { } dependencies { - compile 'com.google.android.gms:play-services-maps:10.0.1' + compile 'com.google.android.gms:play-services-maps:10.2.4' compile 'com.google.maps.android:android-maps-utils:0.4' testCompile 'junit:junit:4.12' diff --git a/sample/build.gradle b/sample/build.gradle index f4391ea..866a129 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "25.0.2" + buildToolsVersion "25.0.3" defaultConfig { applicationId "com.airbnb.airmapview.sample" @@ -15,12 +15,17 @@ android { lintOptions { disable 'GradleCompatible' } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 + } } dependencies { compile project(':library') compile 'com.android.support:multidex:1.0.1' - compile 'com.android.support:recyclerview-v7:25.1.0' - compile 'com.android.support:appcompat-v7:25.1.0' - compile 'com.google.android.gms:play-services:10.0.1' + compile 'com.android.support:recyclerview-v7:25.3.1' + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.google.android.gms:play-services-maps:10.2.4' } From 72281e87185d62d81dcda23ddccdbd15ca262a75 Mon Sep 17 00:00:00 2001 From: Nick Adams Date: Sat, 13 May 2017 20:15:05 -0700 Subject: [PATCH 2/2] [travis] ensure travis requirements are up to date --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b474cb4..568a8b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ android: components: - tools - platform-tools - - build-tools-25.0.2 + - build-tools-25.0.3 - android-25 - extra-google-google_play_services - extra-android-m2repository