mirror of
https://github.com/rust-mobile/android-activity.git
synced 2026-07-18 12:38:58 +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)
11 lines
293 B
Groovy
11 lines
293 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.1.2' apply false
|
|
id 'com.android.library' version '7.1.2' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|