android: Add Citra frontend.

This commit is contained in:
bunnei 2022-12-17 23:25:46 -08:00
parent 851b1008a8
commit bb2cbbfba3
319 changed files with 13799 additions and 0 deletions

26
src/android/build.gradle Normal file
View file

@ -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
}