Skip to content

Commit

Permalink
Updating targetSdkVersion to 26 ;) (Build configuration is still 23)
Browse files Browse the repository at this point in the history
Updating Gradle (gradle-wrapper.properties) from 2.10 to 3.3
  • Loading branch information
CarlosACepeda committed Sep 2, 2019
1 parent a6e8714 commit 8d2d1b1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
18 changes: 14 additions & 4 deletions project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@ import java.text.SimpleDateFormat

buildscript {
repositories {
mavenCentral()
jcenter()
mavenCentral()
mavenLocal()
maven {
url 'https://maven.google.com/'
name 'Google'
}

}
dependencies {
//noinspection GradleDynamicVersion
classpath 'com.android.tools.build:gradle:2.2.0-alpha3'
classpath 'com.android.tools.build:gradle:2.1.3'
classpath 'commons-codec:commons-codec:1.10'
}
}
Expand All @@ -43,11 +49,15 @@ repositories {
url "https://jitpack.io"
}
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}

android {
compileSdkVersion 23
buildToolsVersion '23.0.3'
buildToolsVersion '25.0.0'

lintOptions {
checkReleaseBuilds true
Expand All @@ -56,7 +66,7 @@ android {

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 26

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
11 changes: 10 additions & 1 deletion project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,24 @@
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
//noinspection GradleDynamicVersion
classpath 'com.android.tools.build:gradle:2.2.0-alpha3'
classpath 'com.android.tools.build:gradle:2.3.1'
}
}

allprojects {
repositories {
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
4 changes: 2 additions & 2 deletions project/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Jan 09 14:19:06 EET 2016
#Mon Sep 02 09:08:35 COT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit 8d2d1b1

Please sign in to comment.