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
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ allprojects {
apply plugin: 'idea'

ext {
minSdk = 17
targetSdk = 33
compileSdk = 33
buildTools = '33.0.2'
minSdk = 19
targetSdk = 35
compileSdk = 35

isReleaseBuild = {
return project.hasProperty("RELEASE")
Expand Down
1 change: 0 additions & 1 deletion gdx-video-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ android {
namespace = 'com.badlogic.gdx.video'

compileSdkVersion = project.compileSdk
buildToolsVersion = project.buildTools

defaultConfig {
aarMetadata {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public RawMusic (VideoDecoder decoder, ByteBuffer buffer, int channels, int samp
this.decoder = decoder;
backBuffer = buffer;
backBuffer.position(backBuffer.limit());
setup(channels, sampleRate);
setup(channels, 16, sampleRate);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public RawMusic (VideoDecoder decoder, ByteBuffer buffer, int channels, int samp
this.decoder = decoder;
backBuffer = buffer;
backBuffer.position(backBuffer.limit());
setup(channels, sampleRate);
setup(channels, 16, sampleRate);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gwtFrameworkVersion=2.8.2
gwtPluginVersion=1.1.29
androidPluginVersion=8.1.2
robovmVersion=2.3.21
gdxVersion=1.12.0
gdxVersion=1.13.0

# Publishing settings
group=com.badlogicgames.gdx-video
Expand Down
1 change: 0 additions & 1 deletion test/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ buildscript {
apply plugin: 'com.android.application'

android {
buildToolsVersion = project.buildTools
compileSdkVersion = project.compileSdk
namespace = 'com.badlogic.gdx.video.test'
sourceSets {
Expand Down