* change(android): added android support * change(git): Remove .yarn from version control * change(git): Remove .yarn from version control * change(rn-tracker): android view fixes * change(tracker): yarn * fix rn: fix ios config for react native * ios source changes * change(lib): tracker manager * change(lib): layout fixes * change(lib): layout fixes * fix default api endp --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com>
13 lines
393 B
Objective-C
13 lines
393 B
Objective-C
#import <React/RCTViewManager.h>
|
|
|
|
@interface RCT_EXTERN_MODULE(RnTrackedInputManager, RCTViewManager)
|
|
|
|
// If your view manager needs to execute methods on the main thread:
|
|
+ (BOOL)requiresMainQueueSetup
|
|
{
|
|
return NO; // Return YES if the module needs to be initialized on the main thread
|
|
}
|
|
|
|
// Add any RCT_EXPORT_METHOD() here if your view manager exposes any methods to React Native
|
|
|
|
@end
|