Skip to content

Instantly share code, notes, and snippets.

@duytq94
Last active April 10, 2020 15:59
Show Gist options
  • Save duytq94/e636f2d52f26a949a0a7664f1a4639bc to your computer and use it in GitHub Desktop.
Save duytq94/e636f2d52f26a949a0a7664f1a4639bc to your computer and use it in GitHub Desktop.
class TestConnectNativePackage : ReactPackage {
override fun createViewManagers(reactContext: ReactApplicationContext): List<ViewManager<*, *>> {
return emptyList()
}
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
val modules: MutableList<NativeModule> = ArrayList()
modules.add(TestConnectNativeModule(reactContext))
return modules
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment