summaryrefslogtreecommitdiffstats
path: root/src/android/build.gradle
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-06 08:01:37 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:34 +0200
commit834d53fbbfcaef45172f6f4dc57c7c41815ba071 (patch)
tree012cfea54244b4e7ce840b99c8a45e20d720f3a2 /src/android/build.gradle
parentandroid: Upgrade java version to 11 (diff)
downloadyuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar.gz
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar.bz2
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar.lz
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar.xz
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.tar.zst
yuzu-834d53fbbfcaef45172f6f4dc57c7c41815ba071.zip
Diffstat (limited to '')
-rw-r--r--src/android/build.gradle24
1 files changed, 4 insertions, 20 deletions
diff --git a/src/android/build.gradle b/src/android/build.gradle
index 4734855d0..e2c06c58c 100644
--- a/src/android/build.gradle
+++ b/src/android/build.gradle
@@ -1,24 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
-
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:7.4.2'
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- google()
- jcenter()
- }
+plugins {
+ id 'com.android.application' version '7.4.2' apply false
+ id 'com.android.library' version '7.4.2' apply false
+ id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
}
task clean(type: Delete) {