From 0bdbf314ef08a8a899df6303316fa1c8c9852365 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 7 Nov 2017 04:25:48 +0100 Subject: [PATCH] Update gradle configuration --- scripts/bintray-publish.gradle | 1 - terminal-emulator/build.gradle | 4 ++-- terminal-view/build.gradle | 12 ++++++------ 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/scripts/bintray-publish.gradle b/scripts/bintray-publish.gradle index 01f8a99f..6707b915 100644 --- a/scripts/bintray-publish.gradle +++ b/scripts/bintray-publish.gradle @@ -1,5 +1,4 @@ // Start https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle -apply plugin: 'com.github.dcendents.android-maven' group = publishedGroupId // Maven Group ID for the artifact install { repositories.mavenInstaller { diff --git a/terminal-emulator/build.gradle b/terminal-emulator/build.gradle index 0c28cb98..97ddb9ac 100644 --- a/terminal-emulator/build.gradle +++ b/terminal-emulator/build.gradle @@ -17,12 +17,12 @@ ext { } android { - compileSdkVersion 26 + compileSdkVersion 27 buildToolsVersion "27.0.1" defaultConfig { minSdkVersion 21 - targetSdkVersion 26 + targetSdkVersion 27 externalNativeBuild { ndkBuild { diff --git a/terminal-view/build.gradle b/terminal-view/build.gradle index 11121954..0460d0ea 100644 --- a/terminal-view/build.gradle +++ b/terminal-view/build.gradle @@ -1,6 +1,6 @@ plugins { - id "com.jfrog.bintray" version "1.7" - id "com.github.dcendents.android-maven" version "1.5" + id "com.jfrog.bintray" version "1.7.3" + id "com.github.dcendents.android-maven" version "2.0" } apply plugin: 'com.android.library' @@ -13,21 +13,21 @@ ext { libraryDescription = 'The terminal view used in Termux' siteUrl = 'https://github.com/termux/termux' gitUrl = 'https://github.com/termux/termux.git' - libraryVersion = '0.49' + libraryVersion = '0.50' } android { - compileSdkVersion 26 + compileSdkVersion 27 buildToolsVersion "27.0.1" dependencies { - compile 'com.android.support:support-annotations:25.3.1' + compile 'com.android.support:support-annotations:27.0.0' compile project(":terminal-emulator") } defaultConfig { minSdkVersion 21 - targetSdkVersion 26 + targetSdkVersion 27 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" }