Skip to content

Commit a9cc7d2

Browse files
committed
support compile under build:gradle:1.0.0
1 parent b909a2a commit a9cc7d2

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:0.12.+'
8+
classpath 'com.android.tools.build:gradle:1.0.0'
99

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

demo/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ android {
55
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
66

77
defaultConfig {
8-
applicationId "com.daimajia.swipedemo"
98
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
109
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
1110
versionName project.VERSION_NAME
1211
versionCode Integer.parseInt(project.VERSION_CODE)
1312
}
1413
buildTypes {
1514
release {
16-
runProguard false
15+
minifyEnabled false
1716
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1817
}
1918
}

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# org.gradle.parallel=true
1919

2020

21-
VERSION_NAME=1.1.7
22-
VERSION_CODE=18
21+
VERSION_NAME=1.1.8
22+
VERSION_CODE=19
2323
GROUP=com.daimajia.swipelayout
2424

2525
ANDROID_BUILD_MIN_SDK_VERSION=8

gradle/wrapper/gradle-wrapper.properties

+1-1
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=http\://services.gradle.org/distributions/gradle-1.12-all.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-2.2.1-all.zip

library/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ android {
55
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
66

77
defaultConfig {
8-
applicationId "com.daimajia.swipe"
98
minSdkVersion 8
109
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
1110
}

0 commit comments

Comments
 (0)