Skip to content

Commit 4cc665f

Browse files
committed
refactor: add wakeApp placeholder method
1 parent 5b7870a commit 4cc665f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ios/RNIterableAPI/RNIterableAPI.mm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,10 @@ - (void)passAlongAuthToken:(NSString *_Nullable)authToken {
273273
[_swiftAPI passAlongAuthToken:authToken];
274274
}
275275

276+
- (void)wakeApp {
277+
// Placeholder function -- this method is only used in Android
278+
}
279+
276280
// MARK: - TurboModule integration
277281
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:
278282
(const facebook::react::ObjCTurboModule::InitParams &)params {
@@ -495,6 +499,10 @@ - (void)passAlongAuthToken:(NSString *_Nullable)authToken {
495499
[_swiftAPI passAlongAuthToken:authToken];
496500
}
497501

502+
RCT_EXPORT_METHOD(wakeApp) {
503+
// Placeholder function -- this method is only used in Android
504+
}
505+
498506
#endif
499507

500508
@end

0 commit comments

Comments
 (0)