|
|
package com.yh_vendor;
|
|
|
|
|
|
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;
|
|
|
|
|
|
/**
|
|
|
* <Description> <br>
|
|
|
*
|
|
|
* @author yewanwan<br>
|
|
|
* @version 1.0<br>
|
|
|
* @taskId <br>
|
|
|
* @CreateDate 16/6/3 <br>
|
|
|
*/
|
|
|
public class RNNativeConfig implements ReactPackage {
|
|
|
@Override
|
|
|
public List<NativeModule> createNativeModules(ReactApplicationContext reactApplicationContext) {
|
|
|
List<NativeModule> modules = new ArrayList<>();
|
|
|
|
|
|
modules.add(new RNNativeConfigModule(reactApplicationContext));
|
|
|
|
|
|
return modules;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
|
|
return Collections.emptyList();
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<ViewManager> createViewManagers(ReactApplicationContext reactApplicationContext) {
|
|
|
return Collections.emptyList();
|
|
|
}
|
|
|
} |
...
|
...
|
|