Skip to content

Commit c2957f2

Browse files
committed
Update build tools and version for 1.2.1
1 parent 3936387 commit c2957f2

File tree

7 files changed

+17
-15
lines changed

7 files changed

+17
-15
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:0.9.+'
8+
classpath 'com.android.tools.build:gradle:0.12.+'
99
}
1010
}
1111

1212
task wrapper(type: Wrapper) {
13-
gradleVersion = '1.11'
13+
gradleVersion = '1.10'
1414
}

example/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ repositories {
22
mavenCentral()
33
}
44

5-
apply plugin: 'android'
5+
apply plugin: 'com.android.application'
6+
7+
dependencies {
8+
compile project(":library")
9+
}
610

711
android {
8-
compileSdkVersion 17
9-
buildToolsVersion "19.0.3"
12+
compileSdkVersion 19
13+
buildToolsVersion "20"
1014

1115
defaultConfig {
1216
minSdkVersion 8
1317
targetSdkVersion 19
1418
}
15-
16-
dependencies {
17-
compile project(":library")
18-
}
1919
}

example/src/main/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
package="com.tokenautocomplete.example"
45
android:versionCode="1"
56
android:versionName="1.0" >
67

78
<application
9+
tools:replace="android:label"
810
android:allowBackup="true"
911
android:icon="@drawable/ic_launcher"
1012
android:label="@string/app_name"

gradle/wrapper/gradle-wrapper.jar

-598 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Mar 26 15:13:23 MDT 2014
1+
#Wed Jul 16 10:47:37 EDT 2014
22
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.11-all.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-bin.zip

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ repositories {
55
apply plugin: 'android-library'
66

77
android {
8-
compileSdkVersion 17
9-
buildToolsVersion "19.0.3"
8+
compileSdkVersion 19
9+
buildToolsVersion "20"
1010

1111
defaultConfig {
1212
minSdkVersion 8

library/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.tokenautocomplete"
4-
android:versionCode="1"
5-
android:versionName="1.0">
4+
android:versionCode="2"
5+
android:versionName="1.2.1">
66

77
<application android:label="TokenAutoComplete" />
88

0 commit comments

Comments
 (0)