You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
748 B
27 lines
748 B
8 months ago
|
#import "AppDelegate.h"
|
||
|
|
||
|
#import <React/RCTBundleURLProvider.h>
|
||
|
|
||
|
@implementation AppDelegate
|
||
|
|
||
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
||
|
{
|
||
|
self.moduleName = @"ospodduta";
|
||
|
// You can add your custom initial props in the dictionary below.
|
||
|
// They will be passed down to the ViewController used by React Native.
|
||
|
self.initialProps = @{};
|
||
|
|
||
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
||
|
}
|
||
|
|
||
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
||
|
{
|
||
|
#if DEBUG
|
||
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
||
|
#else
|
||
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
@end
|