Skip to content

Commit

Permalink
Update build tools to 27.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimezis committed Dec 11, 2017
1 parent 92c3149 commit 0b006b4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 22 deletions.
17 changes: 8 additions & 9 deletions app/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 27
buildToolsVersion "27.0.1"
buildToolsVersion "27.0.2"

defaultConfig {
renderscriptTargetApi 27
Expand All @@ -23,15 +23,14 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:cardview-v7:27.0.2'
compile 'com.android.support:design:27.0.2'
compile 'com.android.support:recyclerview-v7:27.0.2'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:cardview-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:recyclerview-v7:27.0.2'

compile 'com.jakewharton:butterknife:8.0.1'
implementation 'com.jakewharton:butterknife:8.0.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.0.1'

compile project(':library')
compile project(':supportrenderscriptblur')
implementation project(':library')
implementation project(':supportrenderscriptblur')
}
11 changes: 5 additions & 6 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.eightbitlab'
PUBLISH_ARTIFACT_ID = 'blurview'
PUBLISH_VERSION = '1.3.3'
PUBLISH_VERSION = '1.3.4'
}

android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
buildToolsVersion "27.0.2"

defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 15
versionName "1.3.3"
versionCode 16
versionName "1.3.4"
}

buildTypes {
Expand All @@ -30,8 +30,7 @@ configurations {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-annotations:27.0.2'
implementation 'com.android.support:support-annotations:27.0.2'
javadocDeps 'com.android.support:support-annotations:27.0.2'
}

Expand Down
13 changes: 6 additions & 7 deletions supportrenderscriptblur/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.eightbitlab'
PUBLISH_ARTIFACT_ID = 'supportrenderscriptblur'
PUBLISH_VERSION = '1.0.0'
PUBLISH_VERSION = '1.0.1'
}

android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
buildToolsVersion "27.0.2"

defaultConfig {
renderscriptTargetApi 27
renderscriptSupportModeEnabled true
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.0.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand All @@ -30,9 +30,8 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:27.0.2'
provided 'com.eightbitlab:blurview:1.3.2'
implementation 'com.android.support:appcompat-v7:27.0.2'
compileOnly 'com.eightbitlab:blurview:1.3.2'
}

apply plugin: 'maven'
Expand Down

0 comments on commit 0b006b4

Please sign in to comment.