We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1312e3c commit 34db942Copy full SHA for 34db942
packages/sdk-apple/src/objectiveCParser.ts
@@ -73,10 +73,10 @@ export const parseAppDelegate = (
73
// You can add your custom initial props in the dictionary below.
74
// They will be passed down to the ViewController used by React Native.
75
self.initialProps = @{};
76
- [super application:application didFinishLaunchingWithOptions:launchOptions];
+ bool didFinish=[super application:application didFinishLaunchingWithOptions:launchOptions];
77
`,
78
render: (v) => `${v};`,
79
- end: 'return YES;',
+ end: 'return didFinish;',
80
},
81
sourceURLForBridge: {
82
isRequired: true,
0 commit comments