We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7df16 commit 31dbcd8Copy full SHA for 31dbcd8
android/src/main/java/com/callstack/reactnativebrownfield/ReactNativeBrownfield.kt
@@ -77,7 +77,9 @@ class ReactNativeBrownfield private constructor(val reactHost: ReactHost) {
77
packageList = (options["packages"] as? List<*> ?: emptyList<ReactPackage>())
78
.filterIsInstance<ReactPackage>(),
79
jsMainModulePath = options["mainModuleName"] as? String ?: "index",
80
- useDevSupport = options["useDeveloperSupport"] as? Boolean ?: ReactBuildConfig.DEBUG
+ useDevSupport = options["useDeveloperSupport"] as? Boolean
81
+ ?: ReactBuildConfig.DEBUG,
82
+ jsRuntimeFactory = null
83
)
84
}
85
0 commit comments