diff options
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" |
