Skip to content

Commit

Permalink
Updated gradle 1.12, gradle-plugin 0.11, build-tools 19.1.0 for AS 0.…
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielemariotti committed Jun 14, 2014
1 parent fdf6c9e commit a8fac03
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ before_install:
- export TERM=dumb

# newer version of gradle
# - wget http://services.gradle.org/distributions/gradle-1.11-bin.zip
# - unzip -qq gradle-1.11-bin.zip
# - wget http://services.gradle.org/distributions/gradle-1.12-bin.zip
# - unzip -qq gradle-1.12-bin.zip
# - export GRADLE_HOME=$PWD/gradle-1.11
# - export PATH=$GRADLE_HOME/bin:$PATH

Expand All @@ -51,7 +51,7 @@ before_install:
# Install required components.
# For a full list, run `android list sdk -a --extended`
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.0.3 --no-ui --force > /dev/null
- echo yes | android update sdk --all --filter build-tools-19.1.0 --no-ui --force > /dev/null
- echo yes | android update sdk --filter android-19 --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:0.10.+'
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.10.+'
}
}

ext {
compileSdkVersion = 19
buildToolsVersion = "19.0.3"
buildToolsVersion = "19.1.0"
}

def isReleaseBuild() {
Expand Down
2 changes: 1 addition & 1 deletion demo/extras/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ android {
}

debug {
packageNameSuffix ".debug"
applicationIdSuffix ".debug"
versionNameSuffix "-debug"
}
}
Expand Down
6 changes: 3 additions & 3 deletions demo/stock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ android {
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)

testInstrumentationRunner "com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner"
//testInstrumentationRunner "com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner"
}

signingConfigs {
Expand All @@ -30,7 +30,7 @@ android {
}

debug {
packageNameSuffix ".debug"
applicationIdSuffix ".debug"
versionNameSuffix "-debug"
}
}
Expand All @@ -47,7 +47,7 @@ dependencies {
// Support Libraries
compile 'com.android.support:support-v4:19.1.0'

androidTestCompile 'com.jakewharton.espresso:espresso:1.1-r2'
//androidTestCompile 'com.jakewharton.espresso:espresso:1.1-r2'
}


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.7.1-SNAPSHOT
VERSION_NAME=1.7.2-SNAPSHOT
VERSION_CODE=32
GROUP=com.github.gabrielemariotti.cards

Expand Down
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 Jan 29 22:27:25 CET 2014
#Sat Jun 14 20:21:40 CEST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-bin.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
2 changes: 1 addition & 1 deletion library-extra/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ dependencies {
}

// Used to update in Maven
//apply from: '../maven_push.gradle'
apply from: '../maven_push.gradle'
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ dependencies {
}

// Used to update in Maven
//apply from: '../maven_push.gradle'
apply from: '../maven_push.gradle'

0 comments on commit a8fac03

Please sign in to comment.