mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-14 02:28:54 +00:00
ecd03edb1a
Based on the android example that's in the cpal repo, this test plays a 440hz sine wave and is based on GameActivity Note: this requires a workaround branch for cpal that comments out a dev-dependency on ndk-glue that cpal has for its android example. This is needed because Cargo is spuriously propagating this dev dependency outside of the cpal package (which leads to a crash)
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'
|