mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 13:01:15 +00:00
33 lines
954 B
Java
33 lines
954 B
Java
package com.mapbox.reactnativemapboxgl;
|
|||
|
|
|
||
|
|
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.Arrays;
|
||
|
|
import java.util.Collections;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import android.util.Log;
|
||
|
|
|
||
|
|
public class ReactNativeMapboxGLPackage implements ReactPackage {
|
||
|
|
@Override
|
||
|
|
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
|
||
|
|
return Collections.emptyList();
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<Class<? extends JavaScriptModule>> createJSModules() {
|
||
|
|
return Collections.emptyList();
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
|
||
|
|
return Arrays.<ViewManager>asList(
|
||
|
|
new ReactNativeMapboxGLManager()
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|