Skip to content

Commit

Permalink
update gradle dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Jul 22, 2017
1 parent fb32eca commit edc75f6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions AndroidBootstrap/build.gradle
Expand Up @@ -3,7 +3,7 @@ apply from: 'push.gradle'

android {
compileSdkVersion Integer.parseInt(TARGET_SDK_INT)

This comment has been minimized.

Copy link
@MoraraGeorge

MoraraGeorge Apr 18, 2018

why my android studio does not get the TARGET_SDK_INT above?

buildToolsVersion "25.0.1"
buildToolsVersion "25.0.3"

defaultConfig {
minSdkVersion Integer.parseInt(MIN_SDK_INT)

This comment has been minimized.

Copy link
@MoraraGeorge

MoraraGeorge Apr 18, 2018

why my android studio does not get the MIN_SDK_INT above?

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'
}
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
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/wrapper/gradle-wrapper.properties
@@ -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
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'
}

1 comment on commit edc75f6

@MoraraGeorge
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I encountered the errors as commented in the above lines while trying to import the bootstrap module into my android studio version 2.2.3. Any help?

Please sign in to comment.