Skip to content

Commit 5e9fadc

Browse files
committed
android sdk, tools version 27 up gradle 4.4 up
1 parent 46a3cf9 commit 5e9fadc

3 files changed

Lines changed: 20 additions & 16 deletions

File tree

build.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ buildscript {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:2.1.3'
10-
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
11-
classpath 'com.novoda:bintray-release:0.3.4'
9+
classpath 'com.android.tools.build:gradle:3.1.4'
10+
classpath 'com.novoda:bintray-release:0.8.0'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
1212
}
1313
}
1414

1515
allprojects {
1616
repositories {
1717
maven { url 'https://maven.google.com' }
1818
jcenter()
19+
maven { url "https://jitpack.io" }
1920
}
2021
}
2122

@@ -25,16 +26,16 @@ task clean(type: Delete) {
2526

2627
ext {
2728
minSdkVersion = 14
28-
targetSdkVersion = 26
29-
compileSdkVersion = 26
30-
buildToolsVersion = '26.0.2'
29+
targetSdkVersion = 23
30+
compileSdkVersion = 27
31+
buildToolsVersion = '27.0.3'
3132

3233
sourceCompatibility = JavaVersion.VERSION_1_7
3334
targetCompatibility = JavaVersion.VERSION_1_7
3435

3536
versionCode = 11
3637
versionName = '1.2.10'
3738

38-
supportLibVersion = '26.1.0'
39+
supportLibVersion = '27.1.1'
3940
playLibVersion = '8.4.0'
4041
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Aug 30 21:23:54 KST 2016
1+
#Tue Dec 04 23:34:30 KST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

library/build.gradle

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
apply plugin: 'com.android.library'
2-
apply plugin: 'com.neenbedankt.android-apt'
32
apply plugin: 'com.novoda.bintray-release'
43

54
android {
@@ -26,12 +25,12 @@ android {
2625

2726
dependencies {
2827
compile fileTree(dir: 'libs', include: ['*.jar'])
29-
compile "com.android.support:support-annotations:${rootProject.ext.supportLibVersion}"
30-
compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
31-
compile "com.android.support:design:${rootProject.ext.supportLibVersion}"
32-
compile 'com.nineoldandroids:library:2.4.0'
33-
compile 'com.thefinestartist:utils:0.9.0'
34-
apt 'com.thefinestartist:compilers:0.9.0'
28+
implementation "com.android.support:support-annotations:${rootProject.ext.supportLibVersion}"
29+
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
30+
implementation "com.android.support:design:${rootProject.ext.supportLibVersion}"
31+
implementation 'com.nineoldandroids:library:2.4.0'
32+
implementation 'com.thefinestartist:utils:0.9.0'
33+
annotationProcessor 'com.thefinestartist:compilers:0.9.0'
3534
}
3635

3736
publish {
@@ -43,4 +42,8 @@ publish {
4342
website = 'https://github.com/TheFinestArtist/FinestWebView-Android'
4443
}
4544

45+
apply plugin: 'com.github.dcendents.android-maven'
46+
47+
group='com.thefinestartist.finestwebview'
48+
4649
//$ ./gradlew clean build bintrayUpload -PbintrayUser=thefinestartist -PbintrayKey=BINTRAY_KEY -PdryRun=false

0 commit comments

Comments
 (0)