Skip to content

Commit

Permalink
Update build tools and version for 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgod committed Jul 16, 2014
1 parent 3936387 commit c2957f2
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.android.tools.build:gradle:0.12.+'
}
}

task wrapper(type: Wrapper) {
gradleVersion = '1.11'
gradleVersion = '1.10'
}
14 changes: 7 additions & 7 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ repositories {
mavenCentral()
}

apply plugin: 'android'
apply plugin: 'com.android.application'

dependencies {
compile project(":library")
}

android {
compileSdkVersion 17
buildToolsVersion "19.0.3"
compileSdkVersion 19
buildToolsVersion "20"

defaultConfig {
minSdkVersion 8
targetSdkVersion 19
}

dependencies {
compile project(":library")
}
}
2 changes: 2 additions & 0 deletions example/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.tokenautocomplete.example"
android:versionCode="1"
android:versionName="1.0" >

<application
tools:replace="android:label"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Mar 26 15:13:23 MDT 2014
#Wed Jul 16 10:47:37 EDT 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-bin.zip
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ repositories {
apply plugin: 'android-library'

android {
compileSdkVersion 17
buildToolsVersion "19.0.3"
compileSdkVersion 19
buildToolsVersion "20"

defaultConfig {
minSdkVersion 8
Expand Down
4 changes: 2 additions & 2 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tokenautocomplete"
android:versionCode="1"
android:versionName="1.0">
android:versionCode="2"
android:versionName="1.2.1">

<application android:label="TokenAutoComplete" />

Expand Down

0 comments on commit c2957f2

Please sign in to comment.