Skip to content

Fix/android/runtime import #527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 25, 2025
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
12 changes: 6 additions & 6 deletions apps/fabric-example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2244,7 +2244,7 @@ PODS:
- React-perflogger (= 0.80.0)
- React-utils (= 0.80.0)
- SocketRocket
- RNAudioAPI (0.6.3):
- RNAudioAPI (0.6.4):
- boost
- DoubleConversion
- fast_float
Expand All @@ -2271,10 +2271,10 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNAudioAPI/audioapi (= 0.6.3)
- RNAudioAPI/audioapi (= 0.6.4)
- SocketRocket
- Yoga
- RNAudioAPI/audioapi (0.6.3):
- RNAudioAPI/audioapi (0.6.4):
- boost
- DoubleConversion
- fast_float
Expand All @@ -2301,10 +2301,10 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNAudioAPI/audioapi/ios (= 0.6.3)
- RNAudioAPI/audioapi/ios (= 0.6.4)
- SocketRocket
- Yoga
- RNAudioAPI/audioapi/ios (0.6.3):
- RNAudioAPI/audioapi/ios (0.6.4):
- boost
- DoubleConversion
- fast_float
Expand Down Expand Up @@ -2898,7 +2898,7 @@ SPEC CHECKSUMS:
ReactAppDependencyProvider: 3267432b637c9b38e86961b287f784ee1b08dde0
ReactCodegen: d82f538f70f00484d418803f74b5a0ea09cc8689
ReactCommon: b028d09a66e60ebd83ca59d8cc9a1216360db147
RNAudioAPI: 183be6eff02514571758fcf08cddd1cba27c21ad
RNAudioAPI: ad4ef31318e5ae564eb845cd2fbd9d9cb525b843
RNGestureHandler: eeb622199ef1fb3a076243131095df1c797072f0
RNReanimated: 402e6a3b84071df4da6264630a1b99962a113d2d
RNScreens: ee2abe7e0c548eed14e92742e81ed991165c56aa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import androidx.media.app.NotificationCompat.MediaStyle
import com.facebook.react.bridge.ReactApplicationContext
import com.facebook.react.bridge.ReadableMap
import com.facebook.react.bridge.ReadableType
import com.facebook.react.views.imagehelper.ResourceDrawableIdHelper.instance
import com.swmansion.audioapi.R
import java.io.IOException
import java.lang.ref.WeakReference
Expand Down Expand Up @@ -250,7 +249,7 @@ class LockScreenManager(
// If we are running the app in debug mode, the "local" image will be served from htt://localhost:8080, so we need to check for this case and load those images from URL
if (local && !url.startsWith("http")) {
// Gets the drawable from the RN's helper for local resources
val helper = instance
val helper = com.facebook.react.views.imagehelper.ResourceDrawableIdHelper.instance
val image = helper.getResourceDrawable(reactContext.get()!!, url)

bitmap =
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-audio-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-audio-api",
"version": "0.6.3",
"version": "0.6.4",
"description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification",
"bin": {
"setup-rn-audio-api-web": "./scripts/setup-rn-audio-api-web.js"
Expand Down
Loading