* feat(android): implement AndroidX media3 dependencies * refactor(android): remove duplicate code * refactor(android): remove unused codes * feat(android): replace ExoPlayer2 with AndroidX media3 * fix(android): move default properties to gradle.properties * revert(android): prevent security exception * chore: align indent * chore: remove redundant comments * chore: reorder import * fix: apply media3's legacy player control view
51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
package com.brentvatne.react;
|
|
|
|
import com.brentvatne.exoplayer.DefaultReactExoplayerConfig;
|
|
import com.brentvatne.exoplayer.ReactExoplayerConfig;
|
|
import com.brentvatne.exoplayer.ReactExoplayerViewManager;
|
|
import com.facebook.react.ReactPackage;
|
|
import com.facebook.react.bridge.JavaScriptModule;
|
|
import com.facebook.react.bridge.NativeModule;
|
|
import com.facebook.react.bridge.ReactApplicationContext;
|
|
import com.facebook.react.uimanager.ViewManager;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public class ReactVideoPackage implements ReactPackage {
|
|
|
|
private ReactExoplayerConfig config;
|
|
|
|
public ReactVideoPackage() {
|
|
}
|
|
|
|
public ReactVideoPackage(ReactExoplayerConfig config) {
|
|
this.config = config;
|
|
}
|
|
|
|
@Override
|
|
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
|
|
List<NativeModule> modules = new ArrayList<NativeModule>();
|
|
|
|
modules.add(new VideoDecoderPropertiesModule(reactContext));
|
|
modules.add(new VideoManagerModule(reactContext));
|
|
|
|
return modules;
|
|
}
|
|
|
|
// Deprecated RN 0.47
|
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
|
return Collections.emptyList();
|
|
}
|
|
|
|
|
|
@Override
|
|
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
|
|
if (config == null) {
|
|
config = new DefaultReactExoplayerConfig(reactContext);
|
|
}
|
|
return Collections.singletonList(new ReactExoplayerViewManager(config));
|
|
}
|
|
}
|