Skip to content

Commit 6189a8f

Browse files
committed
update
1 parent 7e8d885 commit 6189a8f

4 files changed

Lines changed: 13 additions & 10 deletions

File tree

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "24.0.2"
4+
compileSdkVersion 25
5+
buildToolsVersion "25.0.1"
66

77
defaultConfig {
88
applicationId "com.dl7.taglayout"
99
minSdkVersion 14
10-
targetSdkVersion 23
10+
targetSdkVersion 25
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -22,6 +22,6 @@ android {
2222
dependencies {
2323
compile fileTree(include: ['*.jar'], dir: 'libs')
2424
testCompile 'junit:junit:4.12'
25-
compile 'com.android.support:appcompat-v7:23.4.0'
25+
compile 'com.android.support:appcompat-v7:25.0.1'
2626
compile project(':taglayout')
2727
}

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.1.2'
8+
classpath 'com.android.tools.build:gradle:2.2.2'
9+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

taglayout/build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
group='com.github.Rukey7'
24

35
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "24.0.2"
6+
compileSdkVersion 25
7+
buildToolsVersion "25.0.1"
68

79
defaultConfig {
810
minSdkVersion 14
9-
targetSdkVersion 23
11+
targetSdkVersion 25
1012
versionCode 1
1113
versionName "1.0"
1214

@@ -26,6 +28,6 @@ dependencies {
2628
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
2729
exclude group: 'com.android.support', module: 'support-annotations'
2830
})
29-
compile 'com.android.support:appcompat-v7:23.4.0'
31+
compile 'com.android.support:appcompat-v7:25.0.1'
3032
testCompile 'junit:junit:4.12'
3133
}

0 commit comments

Comments
 (0)