Skip to content

Commit 0b006b4

Browse files
committed
Update build tools to 27.0.2
1 parent 92c3149 commit 0b006b4

File tree

3 files changed

+19
-22
lines changed

3 files changed

+19
-22
lines changed

app/build.gradle

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion "27.0.1"
5+
buildToolsVersion "27.0.2"
66

77
defaultConfig {
88
renderscriptTargetApi 27
@@ -23,15 +23,14 @@ android {
2323
}
2424

2525
dependencies {
26-
compile fileTree(dir: 'libs', include: ['*.jar'])
27-
compile 'com.android.support:appcompat-v7:27.0.2'
28-
compile 'com.android.support:cardview-v7:27.0.2'
29-
compile 'com.android.support:design:27.0.2'
30-
compile 'com.android.support:recyclerview-v7:27.0.2'
26+
implementation 'com.android.support:appcompat-v7:27.0.2'
27+
implementation 'com.android.support:cardview-v7:27.0.2'
28+
implementation 'com.android.support:design:27.0.2'
29+
implementation 'com.android.support:recyclerview-v7:27.0.2'
3130

32-
compile 'com.jakewharton:butterknife:8.0.1'
31+
implementation 'com.jakewharton:butterknife:8.0.1'
3332
annotationProcessor 'com.jakewharton:butterknife-compiler:8.0.1'
3433

35-
compile project(':library')
36-
compile project(':supportrenderscriptblur')
34+
implementation project(':library')
35+
implementation project(':supportrenderscriptblur')
3736
}

library/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ apply plugin: 'com.android.library'
33
ext {
44
PUBLISH_GROUP_ID = 'com.eightbitlab'
55
PUBLISH_ARTIFACT_ID = 'blurview'
6-
PUBLISH_VERSION = '1.3.3'
6+
PUBLISH_VERSION = '1.3.4'
77
}
88

99
android {
1010
compileSdkVersion 27
11-
buildToolsVersion "27.0.1"
11+
buildToolsVersion "27.0.2"
1212

1313
defaultConfig {
1414
minSdkVersion 14
1515
targetSdkVersion 27
16-
versionCode 15
17-
versionName "1.3.3"
16+
versionCode 16
17+
versionName "1.3.4"
1818
}
1919

2020
buildTypes {
@@ -30,8 +30,7 @@ configurations {
3030
}
3131

3232
dependencies {
33-
compile fileTree(dir: 'libs', include: ['*.jar'])
34-
compile 'com.android.support:support-annotations:27.0.2'
33+
implementation 'com.android.support:support-annotations:27.0.2'
3534
javadocDeps 'com.android.support:support-annotations:27.0.2'
3635
}
3736

supportrenderscriptblur/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ apply plugin: 'com.android.library'
33
ext {
44
PUBLISH_GROUP_ID = 'com.eightbitlab'
55
PUBLISH_ARTIFACT_ID = 'supportrenderscriptblur'
6-
PUBLISH_VERSION = '1.0.0'
6+
PUBLISH_VERSION = '1.0.1'
77
}
88

99
android {
1010
compileSdkVersion 27
11-
buildToolsVersion "27.0.1"
11+
buildToolsVersion "27.0.2"
1212

1313
defaultConfig {
1414
renderscriptTargetApi 27
1515
renderscriptSupportModeEnabled true
1616
minSdkVersion 14
1717
targetSdkVersion 27
18-
versionCode 1
19-
versionName "1.0"
18+
versionCode 2
19+
versionName "1.0.1"
2020

2121
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2222
}
@@ -30,9 +30,8 @@ android {
3030
}
3131

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

3837
apply plugin: 'maven'

0 commit comments

Comments
 (0)