Skip to content

Commit

Permalink
Merge pull request Bearded-Hen#204 from fractalwrench/master
Browse files Browse the repository at this point in the history
Test latest fixes and update dependencies
  • Loading branch information
jamie-beardedhen authored Jul 22, 2017
2 parents 838845d + 625f889 commit b6a2e11
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions AndroidBootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply from: 'push.gradle'

android {
compileSdkVersion Integer.parseInt(TARGET_SDK_INT)
buildToolsVersion "25.0.1"
buildToolsVersion "25.0.3"

defaultConfig {
minSdkVersion Integer.parseInt(MIN_SDK_INT)
Expand All @@ -14,6 +14,6 @@ android {
}

dependencies {
compile 'com.android.support:support-annotations:25.0.1'
compile 'com.android.support:support-v4:25.0.1'
compile 'com.android.support:support-annotations:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void initialise(AttributeSet attrs) {
try {
this.rounded = a.getBoolean(R.styleable.BootstrapEditText_roundedCorners, false);

int typeOrdinal = a.getInt(R.styleable.AwesomeTextView_bootstrapBrand, -1);
int typeOrdinal = a.getInt(R.styleable.BootstrapEditText_bootstrapBrand, -1);
int sizeOrdinal = a.getInt(R.styleable.BootstrapEditText_bootstrapSize, -1);

this.bootstrapBrand = DefaultBootstrapBrand.fromAttributeValue(typeOrdinal);
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.2'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=2.3.1
VERSION_CODE=231
VERSION_NAME=2.3.2
VERSION_CODE=232
GROUP=com.beardedhen

MIN_SDK_INT=14
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 @@
#Mon Dec 28 10:00:20 PST 2015
#Sat Jul 22 10:14:14 BST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion Integer.parseInt(TARGET_SDK_INT)
buildToolsVersion "25.0.1"
buildToolsVersion "25.0.3"

defaultConfig {
applicationId "com.fractalwrench.androidbootstrap.sample"
Expand Down Expand Up @@ -31,6 +31,6 @@ dependencies {
compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:support-annotations:25.0.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-annotations:25.3.1'
}

0 comments on commit b6a2e11

Please sign in to comment.