diff options
| author | Albin <albin@mullvad.net> | 2021-12-20 08:44:42 +0100 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2022-01-05 03:24:10 +0100 |
| commit | 81118bc2162cb7b2a693ef3c804d58247adc40aa (patch) | |
| tree | 7bb4f0f9ea711aaed79c7162c6bcbb2988f8a9b8 /android | |
| parent | 2b2b2a3fd6e1dc857b140483269019743f25a1b8 (diff) | |
| download | mullvadvpn-81118bc2162cb7b2a693ef3c804d58247adc40aa.tar.xz mullvadvpn-81118bc2162cb7b2a693ef3c804d58247adc40aa.zip | |
Apply gradle plugins declaratively
Diffstat (limited to 'android')
| -rw-r--r-- | android/app/build.gradle | 10 |
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" |
