Release 2019.2

This commit is contained in:
Re4son 2019-05-05 13:52:20 +10:00
parent b652516cf2
commit 7b0a81b188
2 changed files with 7 additions and 6 deletions

View File

@ -7,7 +7,7 @@ buildscript {
} }
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.0' classpath 'com.android.tools.build:gradle:3.4.0'
} }
} }
@ -24,7 +24,7 @@ ext {
minSdkVersion=14 minSdkVersion=14
targetSdkVersion=28 targetSdkVersion=28
//version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1) //version=YYYYMMVVRR (Either "VV" for stable version OR "RR" for pre-release candidate (e.g. 0001 for rc1)
versionCode=2019020003 versionCode=2019020100
versionName="2019.2-rc3" versionName="2019.2"
} }

View File

@ -4,7 +4,7 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.0' classpath 'com.android.tools.build:gradle:3.4.0'
} }
} }
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
@ -52,15 +52,16 @@ android {
} }
} }
// Not sure if the below is still required but it causes errors in 2019
// by default recent plugin version does not copy any AIDL files "to avoid publishing too much" // by default recent plugin version does not copy any AIDL files "to avoid publishing too much"
android.libraryVariants.all { variant -> /*android.libraryVariants.all { variant ->
Sync packageAidl = project.tasks.create("addPublic${variant.name.capitalize()}Aidl", Sync) { sync -> Sync packageAidl = project.tasks.create("addPublic${variant.name.capitalize()}Aidl", Sync) { sync ->
from "$project.projectDir/src/main/aidl/" from "$project.projectDir/src/main/aidl/"
into "$buildDir/intermediates/bundles/${variant.dirName}/aidl/" into "$buildDir/intermediates/bundles/${variant.dirName}/aidl/"
} }
variant.javaCompile.dependsOn packageAidl variant.javaCompile.dependsOn packageAidl
} }*/
dependencies { dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')