aboutsummaryrefslogtreecommitdiff
path: root/src/android/build.gradle
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-12-17 23:25:46 -0800
committerbunnei <bunneidev@gmail.com>2023-06-03 00:05:26 -0700
commitbb2cbbfba3ba255c11953f2bcca912046519cfb1 (patch)
treeb72691480e35039d67c0bd703596f1ae214bdaa7 /src/android/build.gradle
parent851b1008a881010b90002f4af9d0a4ac36710fea (diff)
android: Add Citra frontend.
Diffstat (limited to 'src/android/build.gradle')
-rw-r--r--src/android/build.gradle26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/android/build.gradle b/src/android/build.gradle
new file mode 100644
index 000000000..9d7571a4e
--- /dev/null
+++ b/src/android/build.gradle
@@ -0,0 +1,26 @@
+// 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.3.1'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}