mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
3c5a391c9e
Adds a CoreSideLoadingActivity to sideload cores for debugging purposes. Adds instructions on how to debug both the RetroArch frontend and cores from within Android Studio Co-authored-by: natinusala <natinusala@gmail.com>
18 lines
335 B
Groovy
18 lines
335 B
Groovy
// 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:3.2.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|