[Android] Upgrade Kotlin to v1.3.30
Geoffrey Métais
git at videolan.org
Fri Apr 12 11:53:22 CEST 2019
vlc-android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Fri Apr 12 10:29:41 2019 +0200| [2a8d11bdf6ac7d42da17a984ce404f4b585247b4] | committer: Geoffrey Métais
Upgrade Kotlin to v1.3.30
> https://code.videolan.org/videolan/vlc-android/commit/2a8d11bdf6ac7d42da17a984ce404f4b585247b4
---
build.gradle | 2 +-
compile.sh | 3 +++
gradle.properties | 3 +++
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index 8d216ac5e..fdbb86700 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.android_plugin_version = '3.3.2'
- ext.kotlin_version = '1.3.21'
+ ext.kotlin_version = '1.3.30'
ext.kotlinx_version = '1.1.1'
repositories {
flatDir dirs: "gradle/plugins"
diff --git a/compile.sh b/compile.sh
index c0e75c197..a7cfc5127 100755
--- a/compile.sh
+++ b/compile.sh
@@ -162,6 +162,9 @@ fi
if [ ! -f gradle.properties ]; then
echo android.enableJetifier=true > gradle.properties
echo android.useAndroidX=true >> gradle.properties
+ echo kapt.incremental.apt=true >> gradle.properties
+ echo kapt.use.worker.api=true >> gradle.properties
+ echo kapt.include.compile.classpath=false >> gradle.properties
echo keyStoreFile=$KEYSTORE_FILE >> gradle.properties
echo storealias=$STOREALIAS >> gradle.properties
if [ -z "$PASSWORD_KEYSTORE" ]; then
diff --git a/gradle.properties b/gradle.properties
index c791eda7f..4031fdc2e 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,7 @@
android.enableJetifier=true
android.useAndroidX=true
android.enableR8=false
+kapt.incremental.apt=true
+kapt.use.worker.api=true
+kapt.include.compile.classpath=false
More information about the Android
mailing list