diff options
author | bunnei <bunneidev@gmail.com> | 2022-12-18 08:25:46 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:26 +0200 |
commit | bb2cbbfba3ba255c11953f2bcca912046519cfb1 (patch) | |
tree | b72691480e35039d67c0bd703596f1ae214bdaa7 /src/android/build.gradle | |
parent | cmake: Integrate bundled FFmpeg for Android. (diff) | |
download | yuzu-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 'src/android/build.gradle')
-rw-r--r-- | src/android/build.gradle | 26 |
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 +} |