|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| LiveEffect/ | | 03-May-2024 | - | 1,586 | 1,093 |
| MegaDrone/ | | 03-May-2024 | - | 895 | 653 |
| RhythmGame/ | | 03-May-2024 | - | 55,990 | 37,082 |
| SoundBoard/ | | 03-May-2024 | - | 1,028 | 723 |
| audio-device/ | | 03-May-2024 | - | 497 | 310 |
| debug-utils/ | | 03-May-2024 | - | 167 | 88 |
| drumthumper/ | | 03-May-2024 | - | 2,290 | 1,781 |
| gradle/wrapper/ | | 03-May-2024 | - | 7 | 6 |
| hello-oboe/ | | 03-May-2024 | - | 1,592 | 1,030 |
| iolib/ | | 03-May-2024 | - | 882 | 487 |
| minimaloboe/ | | 03-May-2024 | - | 956 | 703 |
| parselib/ | | 03-May-2024 | - | 1,258 | 636 |
| shared/ | | 03-May-2024 | - | 642 | 316 |
| .gitignore | D | 03-May-2024 | 129 | 11 | 10 |
| README.md | D | 03-May-2024 | 2.9 KiB | 61 | 49 |
| build.gradle | D | 03-May-2024 | 1.2 KiB | 44 | 39 |
| gradle.properties | D | 03-May-2024 | 1.5 KiB | 38 | 32 |
| gradlew | D | 03-May-2024 | 4.9 KiB | 161 | 120 |
| gradlew.bat | D | 03-May-2024 | 2.3 KiB | 91 | 66 |
| settings.gradle | D | 03-May-2024 | 836 | 28 | 26 |
README.md
1Oboe Samples
2==============
3These samples demonstrate how to use the Oboe library:
4
51. [MinimalOboe](minimaloboe): Just create an Oboe stream and play white noise. Restart stream when disconnected. (Kotlin/Compose)
61. [hello-oboe](hello-oboe): Creates an output (playback) stream and plays a
7sine wave when you tap the screen. (Java)
81. [RhythmGame](RhythmGame): A simple rhythm game where you copy the clap patterns you hear by tapping on the screen.
9There is an associated codelab to follow along with. (Java)
101. [MegaDrone](MegaDrone): A one hundred oscillator synthesizer, demonstrates low latency and CPU performance. (Java)
111. [DrumThumper](drumthumper): A drum pad that plays sounds from loaded WAV files. (Java)
121. [LiveEffect](LiveEffect): Loops audio from input stream to output stream to demonstrate duplex capability. (Java)
131. [SoundBoard](SoundBoard): A 30 note dynamic synthesizer, demonstating combining signals. (Kotlin)
14
15Pre-requisites
16-------------
17* Android device or emulator running API 16 (Jelly Bean) or above
18* [Android SDK 26](https://developer.android.com/about/versions/oreo/android-8.0-migration.html#ptb)
19* [NDK r17](https://developer.android.com/ndk/downloads/index.html) or above
20* [Android Studio 2.3.0+](https://developer.android.com/studio/index.html)
21
22Getting Started
23---------------
241. [Install Android Studio](https://developer.android.com/studio/index.html)
251. Import the sample project into Android Studio
26 - File -> New -> Import Project
27 - Browse to oboe/samples/build.gradle
28 - Click "OK"
291. Click Run, click on the sample you wish to run
30
31Support
32-------
33If you've found an error in these samples, please [file an issue](https://github.com/google/oboe/issues/new).
34
35Patches are encouraged, and may be submitted by [forking this project](https://github.com/google/oboe/fork) and
36submitting a pull request through GitHub. Please see [CONTRIBUTING.md](../CONTRIBUTING.md) for more details.
37
38- [Stack Overflow](http://stackoverflow.com/questions/tagged/android-ndk)
39- [Google+ Community](https://plus.google.com/communities/105153134372062985968)
40- [Android Tools Feedback](http://tools.android.com/feedback)
41
42
43License
44-------
45Copyright 2017 Google, Inc.
46
47Licensed to the Apache Software Foundation (ASF) under one or more contributor
48license agreements. See the NOTICE file distributed with this work for
49additional information regarding copyright ownership. The ASF licenses this
50file to you under the Apache License, Version 2.0 (the "License"); you may not
51use this file except in compliance with the License. You may obtain a copy of
52the License at
53
54http://www.apache.org/licenses/LICENSE-2.0
55
56Unless required by applicable law or agreed to in writing, software
57distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
58WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
59License for the specific language governing permissions and limitations under
60the License.
61