protected synchronized void maybeLoadOtherSoLibraries()

in example/android/app/src/main/java/com/example/amazonivsreactnativeplayer/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java [40:47]


  protected synchronized void maybeLoadOtherSoLibraries() {
    if (!sIsSoLibraryLoaded) {
      // If you change the name of your application .so file in the Android.mk file,
      // make sure you update the name here as well.
      SoLoader.loadLibrary("example_amazonivsreactnativeplayer_appmodules");
      sIsSoLibraryLoaded = true;
    }
  }