File tree Expand file tree Collapse file tree 4 files changed +40
-29
lines changed
Expand file tree Collapse file tree 4 files changed +40
-29
lines changed Original file line number Diff line number Diff line change 11buildscript {
2- repositories {
3- jcenter()
4- }
5- dependencies {
6- classpath ' com.android.tools.build:gradle:2.3.0-beta1 '
7- }
2+ repositories {
3+ jcenter()
4+ }
5+ dependencies {
6+ classpath ' com.android.tools.build:gradle:2.3.0'
7+ }
88}
99
1010allprojects {
11- repositories {
12- jcenter()
13- }
11+ repositories {
12+ jcenter()
13+ }
14+ }
15+
16+ ext {
17+ compileSdkVersion = 25
18+ buildToolsVersion = ' 25.0.2'
19+ minSdkVersion = 15
20+ targetSdkVersion = compileSdkVersion
21+
22+ supportLibVersion = ' 25.3.0'
1423}
1524
1625task clean (type : Delete ) {
17- delete rootProject. buildDir
26+ delete rootProject. buildDir
1827}
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33dependencies {
4- compile project(' :expandicon' )
5- compile ' com.android.support:appcompat-v7:25.1.0 '
4+ compile project(' :expandicon' )
5+ compile " com.android.support:appcompat-v7:$s upportLibVersion "
66}
77
88android {
9- compileSdkVersion 25
10- buildToolsVersion " 25.0.2 "
9+ compileSdkVersion rootProject . ext . compileSdkVersion
10+ buildToolsVersion rootProject . ext . buildToolsVersion
1111
12- defaultConfig {
13- applicationId " com.github.zagum.expandicon.sample"
14- minSdkVersion 15
15- targetSdkVersion 25
16- versionCode 1
17- versionName " 1.0"
18- }
12+ defaultConfig {
13+ applicationId " com.github.zagum.expandicon.sample"
14+ minSdkVersion rootProject. ext. minSdkVersion
15+ targetSdkVersion rootProject. ext. targetSdkVersion
16+ versionCode 1
17+ versionName " 1.0"
18+
19+ vectorDrawables. useSupportLibrary = true
20+ }
1921}
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22
33dependencies {
4- compile ' com.android.support:support-annotations:25.1.0 '
4+ compile " com.android.support:appcompat-v7: $s upportLibVersion "
55}
66
77android {
8- compileSdkVersion 25
9- buildToolsVersion " 25.0.2 "
8+ compileSdkVersion rootProject . ext . compileSdkVersion
9+ buildToolsVersion rootProject . ext . buildToolsVersion
1010
11- defaultConfig {
12- minSdkVersion 15
13- }
11+ defaultConfig {
12+ minSdkVersion rootProject . ext . minSdkVersion
13+ }
1414}
Original file line number Diff line number Diff line change 1- # Wed Jan 04 21:50:05 MSK 2017
1+ # Thu Mar 23 18:14:57 MSK 2017
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-3.2 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.3 -all.zip
You can’t perform that action at this time.
0 commit comments