Skip to content

Commit

Permalink
Updates dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-burton committed Sep 24, 2018
1 parent cf7811b commit 4752889
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
16 changes: 8 additions & 8 deletions common.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
ext.version = "1.1.0"
ext.version = "1.2.0"
ext.group = "nz.co.trademe.mapme"
ext.repo = "MapMe"
ext.org = "trademe"
ext.scm = 'https://github.com/TradeMe/MapMe.git'
ext.description = 'MapMe is an Android library that brings the adapter pattern to Maps, simplifying the management of markers and annotations.'

ext.compileSdk = 27
ext.compileSdk = 28
ext.minSdk = 15
ext.buildTools = "27.0.3"
ext.kotlin_version = '1.2.31'
ext.buildTools = "28.0.3"
ext.kotlin_version = '1.2.71'
ext.dokka_version = '0.9.15'
ext.gradle_version = '3.1.0'
ext.mapbox_version = '5.1.3'
ext.google_play_services_version = '11.8.0'
ext.android_support_version = '27.0.1'
ext.gradle_version = '3.2.0'
ext.mapbox_version = '6.4.0'
ext.google_play_services_version = '15.0.1'
ext.android_support_version = '28.0.0'
ext.android_maven_version = '3.3.0'

2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip
4 changes: 4 additions & 0 deletions mapbox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ android {
lintConfig new File(rootProject.projectDir, "lint.xml")
}

compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}

configurations.all {
Expand Down
5 changes: 5 additions & 0 deletions mapme/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ android {
testOptions {
unitTests.returnDefaultValues = true
}

compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}

repositories {
Expand Down
5 changes: 5 additions & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ android {
lintOptions {
lintConfig new File(rootProject.projectDir, "lint.xml")
}

compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}

repositories {
Expand Down

0 comments on commit 4752889

Please sign in to comment.