summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2021-12-20 08:44:42 +0100
committerAlbin <albin@mullvad.net>2022-01-05 03:24:10 +0100
commit81118bc2162cb7b2a693ef3c804d58247adc40aa (patch)
tree7bb4f0f9ea711aaed79c7162c6bcbb2988f8a9b8 /android
parent2b2b2a3fd6e1dc857b140483269019743f25a1b8 (diff)
downloadmullvadvpn-81118bc2162cb7b2a693ef3c804d58247adc40aa.tar.xz
mullvadvpn-81118bc2162cb7b2a693ef3c804d58247adc40aa.zip
Apply gradle plugins declaratively
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle10
1 files changed, 6 insertions, 4 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 46b0a827dc..1752514119 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -1,7 +1,9 @@
-apply plugin: "com.android.application"
-apply plugin: "com.github.triplet.play"
-apply plugin: "kotlin-android"
-apply plugin: "kotlin-parcelize"
+plugins {
+ id("com.android.application")
+ id("com.github.triplet.play")
+ id("kotlin-android")
+ id("kotlin-parcelize")
+}
def repoRootPath = rootProject.projectDir.absoluteFile.parentFile.absolutePath
def extraAssetsDirectory = "$project.buildDir/extraAssets"