2024-03-06 10:57:49 +00:00
|
|
|
//
|
|
|
|
// ReactViewController.h
|
|
|
|
// TecnaviaApplication
|
|
|
|
//
|
|
|
|
// Created by iPad Developer on 18.01.21.
|
|
|
|
// Copyright © 2021 Facebook. All rights reserved.
|
|
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
#import "ReactBridgeManager.h"
|
|
|
|
|
|
|
|
extern NSString *const TAPSetupPropKey;
|
|
|
|
extern NSString *const TAServerPropKey;
|
|
|
|
extern NSString *const TALocalePropKey;
|
|
|
|
extern NSString *const TASplashBackgroundColorPropKey;
|
|
|
|
extern NSString *const TALoadingColorPropKey;
|
|
|
|
extern NSString *const TAAppNamePropKey;
|
|
|
|
extern NSString *const TAAppVersionNamePropKey;
|
|
|
|
extern NSString *const TAAppVersionCodePropKey;
|
|
|
|
extern NSString *const TAIAPSharedSecretPropKey;
|
|
|
|
extern NSString *const TAPushServicePropKey;
|
|
|
|
extern NSString *const TAPushChannelPropKey;
|
|
|
|
extern NSString *const TAPushChannelSilentPropKey;
|
|
|
|
extern NSString *const TAOneSignalAppIdPropKey;
|
|
|
|
extern NSString *const TAMasAppIdPropKey;
|
|
|
|
extern NSString *const TAFacebookAppIdPropKey;
|
|
|
|
extern NSString *const TADebugModePropKey;
|
|
|
|
extern NSString *const TAAndroidAppIdPropKey;
|
|
|
|
extern NSString *const TAAmazonIapDeveloperSecretPropKey;
|
|
|
|
extern NSString *const TAInitialOrientationPropKey;
|
|
|
|
extern NSString *const TADeveloperNamePropKey;
|
|
|
|
extern NSString *const TAExternalLinkAccountURLPropKey;
|
|
|
|
extern NSString *const TAIsAddonPropKey;
|
|
|
|
extern NSString *const TAAddonNeedsCloseButtonPropKey;
|
|
|
|
extern NSString *const TAAddonNeedsSafeAreaPropKey;
|
|
|
|
extern NSString *const TATokenPropKey;
|
|
|
|
extern NSString *const TAAPIKeyPropKey;
|
2024-04-25 10:28:00 +00:00
|
|
|
extern NSString *const TALockedOrientationPropKey;
|
|
|
|
extern NSString *const TALockedOrientationDevicePropKey;
|
2024-03-06 10:57:49 +00:00
|
|
|
|
|
|
|
@interface ReactViewController : UIViewController
|
|
|
|
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge moduleName:(NSString*)moduleName initialProps:(NSDictionary*)initialProps;
|
|
|
|
- (instancetype)initBridgeWithLaunchOptions:(NSDictionary *)launchOptions moduleName:(NSString*)moduleName initialProps:(NSDictionary*)initialProps;
|
|
|
|
@end
|