Skip to content

Commit

Permalink
Update libraries to newest versions (#172)
Browse files Browse the repository at this point in the history
* Update libraries to newest versions
* Remove extra maven repository
  • Loading branch information
fallsdownhill authored Mar 4, 2019
1 parent fe6352b commit 1af1f74
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.3.1'
}
}

allprojects {
repositories {
jcenter()
maven{ url 'https://esri.bintray.com/arcgis' }
maven {
// url ’http://esri.bintray.com/arcgis'
url 'http://android:8080/artifactory/arcgis'
}
maven { url 'https://esri.bintray.com/arcgis' }
google()
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Dec 13 14:17:23 PST 2017
#Tue Feb 26 16:09:41 PST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
16 changes: 8 additions & 8 deletions maps-app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 27
compileSdkVersion 28


defaultConfig {
applicationId "com.esri.android.mapsapp"
minSdkVersion 17
targetSdkVersion 25
minSdkVersion 19
targetSdkVersion 28
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}

Expand All @@ -28,13 +28,13 @@ android {

dependencies {
// android support libraries
implementation 'com.android.support:support-v4:27.0.2'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:cardview-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'

// ArcGIS Android API
implementation 'com.esri.arcgisruntime:arcgis-android:100.2.0'
implementation 'com.esri.arcgisruntime:arcgis-android:100.4.0'
// square libs
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
Expand Down

0 comments on commit 1af1f74

Please sign in to comment.