summaryrefslogtreecommitdiffstats
path: root/src/android/build.gradle
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-12-18 08:25:46 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:26 +0200
commitbb2cbbfba3ba255c11953f2bcca912046519cfb1 (patch)
treeb72691480e35039d67c0bd703596f1ae214bdaa7 /src/android/build.gradle
parentcmake: Integrate bundled FFmpeg for Android. (diff)
downloadyuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.gz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.bz2
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.lz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.xz
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.zst
yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.zip
Diffstat (limited to '')
-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
+}