Add preBuild dependency on libryujinx for app

This commit is contained in:
TSR Berry 2023-07-21 02:59:14 +02:00 committed by Emmanuel Hansen
parent 6aa738d23b
commit ffcb51bafb

View File

@ -68,6 +68,10 @@ android {
}
}
tasks.named("preBuild") {
dependsOn ':libryujinx:assemble'
}
dependencies {
runtimeOnly project(":libryujinx")
implementation 'androidx.core:core-ktx:1.10.1'