File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Examples_Android/SuperpoweredUSBExample
Examples_Flutter/superpowered_player_with_effects
Examples_ReactNative/SuperpoweredPlayerWithEffects/cpp Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33def superpowered_sdk_path = new File (projectDir, ' ../../../Superpowered' )
44
55android { // main settings for your application
6- compileSdkVersion = 34
6+ compileSdkVersion = 33
77
88 defaultConfig {
99 applicationId " com.superpowered.complexusb"
1010 minSdkVersion 26
11- targetSdkVersion 34
11+ targetSdkVersion 33
1212 versionCode 1
1313 versionName " 1.0"
1414
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33def superpowered_sdk_path = new File (projectDir, ' ../../../Superpowered' )
44
55android { // main settings for your application
6- compileSdkVersion = 34
6+ compileSdkVersion = 33
77
88 defaultConfig {
99 applicationId " com.superpowered.simpleusb"
1010 minSdkVersion 26
11- targetSdkVersion 34
11+ targetSdkVersion 33
1212 versionCode 1
1313 versionName " 1.0"
1414
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ cd ../example
44# Podspec does not support relative path
55cp -r ../../../Superpowered/libSuperpoweredAudio.xcframework ../ios/
66
7- flutter run -d iPhone
7+ flutter run -d iPhone
Original file line number Diff line number Diff line change 1616SuperpoweredEngineExample::SuperpoweredEngineExample () {
1717 player = std::make_unique<Superpowered::AdvancedAudioPlayer>(48000 , 0 );
1818 player->loopOnEOF = true ;
19-
19+
2020 flanger = std::make_unique<Superpowered::Flanger>(48000 );
2121 flanger->enabled = true ;
2222
@@ -29,7 +29,7 @@ SuperpoweredEngineExample::~SuperpoweredEngineExample() {
2929}
3030
3131void SuperpoweredEngineExample::play () {
32- player->open (" https://docs. superpowered.com/audio/samples/splice /SO_PF_74_string_phrase_soaring_Gb.mp3" );
32+ player->open (" https://superpowered.s3.amazonaws. com/SO_PF_74_string_phrase_soaring_Gb.mp3" );
3333 player->play ();
3434}
3535
Original file line number Diff line number Diff line change 77SuperpoweredEngineExample::SuperpoweredEngineExample () {
88 player = std::make_unique<Superpowered::AdvancedAudioPlayer>(48000 , 0 );
99 player->loopOnEOF = true ;
10-
10+
1111 flanger = std::make_unique<Superpowered::Flanger>(48000 );
1212 flanger->enabled = true ;
1313
@@ -20,7 +20,7 @@ SuperpoweredEngineExample::~SuperpoweredEngineExample() {
2020}
2121
2222void SuperpoweredEngineExample::play () {
23- player->open (" https://docs. superpowered.com/audio/samples/splice /SO_PF_74_string_phrase_soaring_Gb.mp3" );
23+ player->open (" https://superpowered.s3.amazonaws. com/SO_PF_74_string_phrase_soaring_Gb.mp3" );
2424 player->play ();
2525}
2626
You can’t perform that action at this time.
0 commit comments