Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/OboeDJ/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':audio-device')
implementation project(':parselib') // We need parselib for WAV reading
implementation project(':shared')
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'

Expand Down
Binary file removed samples/OboeDJ/src/main/assets/song1.wav
Binary file not shown.
Binary file removed samples/OboeDJ/src/main/assets/song2.wav
Binary file not shown.
1 change: 1 addition & 0 deletions samples/powerplay/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ android {
}

dependencies {
implementation project(':shared')
implementation "androidx.core:core-ktx:$core_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
Expand Down
Binary file removed samples/powerplay/src/main/assets/song3.wav
Binary file not shown.
3 changes: 2 additions & 1 deletion samples/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ include ':parselib'
include ':iolib'
include ':minimaloboe'
include ':powerplay'
include ':OboeDJ'
include ':OboeDJ'
include ':shared'
10 changes: 10 additions & 0 deletions samples/shared/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apply plugin: 'com.android.library'

android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 36
compileSdkVersion 36
}
namespace 'com.google.oboe.samples.shared'
}
2 changes: 2 additions & 0 deletions samples/shared/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>
Loading