android: fix initializing audio device handler modules too early
When ConnectionService is used (the default) we were attaching the handlers too early, and since attaching them requires that the RNConnectionService module is loaded, it silently failed. Instead, use the initialize() method, which gets called after all the Catalyst (aka native) modules have been loaded.
This commit is contained in:
parent
5b99219f29
commit
6b716f8f56
|
@ -136,8 +136,6 @@ class AudioModeModule extends ReactContextBaseJavaModule {
|
|||
*/
|
||||
public AudioModeModule(ReactApplicationContext reactContext) {
|
||||
super(reactContext);
|
||||
|
||||
setAudioDeviceHandler();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -193,6 +191,16 @@ class AudioModeModule extends ReactContextBaseJavaModule {
|
|||
return NAME;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes the audio device handler module. This function is called *after* all Catalyst
|
||||
* modules have been created, and that's why we use it, because {@link AudioDeviceHandlerConnectionService}
|
||||
* needs access to another Catalyst module, so doing this in the constructor would be too early.
|
||||
*/
|
||||
@Override
|
||||
public void initialize() {
|
||||
setAudioDeviceHandler();
|
||||
}
|
||||
|
||||
private void setAudioDeviceHandler() {
|
||||
if (audioDeviceHandler != null) {
|
||||
audioDeviceHandler.stop();
|
||||
|
|
Loading…
Reference in New Issue