mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-12 09:38:54 +00:00
a73f9202d0
Based on the demo in the oboe-rs repo this is a minimal example that runs with GameActivity and plays a 440Hz sine wave
17 lines
332 B
Groovy
17 lines
332 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
//rootProject.name = "Rust Template"
|
|
include ':app'
|