File tree 4 files changed +23
-13
lines changed
4 files changed +23
-13
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 25
5
- buildToolsVersion " 25.0.2"
4
+ compileSdkVersion rootProject. ext. compileSdkVersion
5
+ buildToolsVersion rootProject. ext. buildToolsVersion
6
+
6
7
defaultConfig {
7
8
applicationId " es.dmoral.toastysample"
8
- minSdkVersion 14
9
- targetSdkVersion 25
9
+ minSdkVersion rootProject . ext . minSdkVersion
10
+ targetSdkVersion rootProject . ext . targetSdkVersion
10
11
versionCode 1
11
12
versionName " 1.0"
12
13
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -24,7 +25,7 @@ dependencies {
24
25
androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
25
26
exclude group : ' com.android.support' , module : ' support-annotations'
26
27
})
27
- compile ' com.android.support:appcompat-v7:25.1.0 '
28
+ compile " com.android.support:appcompat-v7:$s upportLibVersion "
28
29
testCompile ' junit:junit:4.12'
29
30
compile project(' :toasty' )
30
31
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:2.2.3 '
8
+ classpath ' com.android.tools.build:gradle:2.3.0 '
9
9
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.5'
10
10
11
11
// NOTE: Do not place your application dependencies here; they belong
@@ -19,6 +19,15 @@ allprojects {
19
19
}
20
20
}
21
21
22
+ ext {
23
+ compileSdkVersion = 25
24
+ buildToolsVersion = ' 25.0.2'
25
+ minSdkVersion = 9
26
+ targetSdkVersion = compileSdkVersion
27
+
28
+ supportLibVersion = ' 25.2.0'
29
+ }
30
+
22
31
task clean (type : Delete ) {
23
32
delete rootProject. buildDir
24
33
}
Original file line number Diff line number Diff line change 1
- # Mon Dec 28 10:00:20 PST 2015
1
+ # Mon Mar 13 08:55:32 GMT 2017
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-2.14.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.3 -all.zip
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ group = 'com.github.GrenderG'
4
4
version = ' 1.1.3'
5
5
6
6
android {
7
- compileSdkVersion 25
8
- buildToolsVersion " 25.0.2 "
7
+ compileSdkVersion rootProject . ext . compileSdkVersion
8
+ buildToolsVersion rootProject . ext . buildToolsVersion
9
9
10
10
defaultConfig {
11
- minSdkVersion 9
12
- targetSdkVersion 25
11
+ minSdkVersion rootProject . ext . minSdkVersion
12
+ targetSdkVersion rootProject . ext . targetSdkVersion
13
13
versionCode 113
14
14
versionName " 1.1.3"
15
15
@@ -26,5 +26,5 @@ android {
26
26
27
27
dependencies {
28
28
compile fileTree(dir : ' libs' , include : [' *.jar' ])
29
- compile ' com.android.support:appcompat-v7:25.1.1 '
29
+ compile " com.android.support:appcompat-v7:$s upportLibVersion "
30
30
}
You can’t perform that action at this time.
0 commit comments