|
@@ -189,6 +189,10 @@ async function getCurrentlyVisibleScreenId() {
|
189
|
189
|
return await NativeReactModule.getCurrentlyVisibleScreenId();
|
190
|
190
|
}
|
191
|
191
|
|
|
192
|
+async function getLaunchArgs() {
|
|
193
|
+ return await NativeReactModule.getLaunchArgs();
|
|
194
|
+}
|
|
195
|
+
|
192
|
196
|
module.exports = {
|
193
|
197
|
startApp,
|
194
|
198
|
push,
|
|
@@ -225,5 +229,6 @@ module.exports = {
|
225
|
229
|
setScreenStyle,
|
226
|
230
|
isAppLaunched,
|
227
|
231
|
isRootLaunched,
|
228
|
|
- getCurrentlyVisibleScreenId
|
|
232
|
+ getCurrentlyVisibleScreenId,
|
|
233
|
+ getLaunchArgs
|
229
|
234
|
};
|