Skip to content

Commit

Permalink
Use Oboe player for API level 16+
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Nov 29, 2024
1 parent a97d27d commit 28529b5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Snapcast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "de.badaix.snapcast"
minSdkVersion 21
targetSdkVersion 34
versionCode 2901
versionName '0.29.0.1'
versionCode 2902
versionName '0.29.0.2'
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
externalNativeBuild {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void startProcess() throws IOException {
else if (configuredEngine.equals("Oboe"))
player = "oboe";
else {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O)
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN)
player = "opensl";
else
player = "oboe";
Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Version 0.29.0.2

## Bugfixes

- Use Oboe player for API level 16+ (was OpenSL for 16+ and Oboe for 26+)

_Johannes Pohl <snapcast@badaix.de> Sun, 24 Nov 2024 00:13:37 +0200_

# Version 0.29.0.1

## Bugfixes
Expand Down

0 comments on commit 28529b5

Please sign in to comment.