From 8ca8f830a09d8ff08ccb654199cb33779117cc37 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 12 May 2024 16:40:21 +0530 Subject: Initial commit Generated by react-native@0.74.1 --- ios/OwynLauncherRewrite/AppDelegate.h | 6 +++ ios/OwynLauncherRewrite/AppDelegate.mm | 31 +++++++++++++ .../AppIcon.appiconset/Contents.json | 53 ++++++++++++++++++++++ .../Images.xcassets/Contents.json | 6 +++ ios/OwynLauncherRewrite/Info.plist | 52 +++++++++++++++++++++ ios/OwynLauncherRewrite/LaunchScreen.storyboard | 47 +++++++++++++++++++ ios/OwynLauncherRewrite/PrivacyInfo.xcprivacy | 38 ++++++++++++++++ ios/OwynLauncherRewrite/main.m | 10 ++++ 8 files changed, 243 insertions(+) create mode 100644 ios/OwynLauncherRewrite/AppDelegate.h create mode 100644 ios/OwynLauncherRewrite/AppDelegate.mm create mode 100644 ios/OwynLauncherRewrite/Images.xcassets/AppIcon.appiconset/Contents.json create mode 100644 ios/OwynLauncherRewrite/Images.xcassets/Contents.json create mode 100644 ios/OwynLauncherRewrite/Info.plist create mode 100644 ios/OwynLauncherRewrite/LaunchScreen.storyboard create mode 100644 ios/OwynLauncherRewrite/PrivacyInfo.xcprivacy create mode 100644 ios/OwynLauncherRewrite/main.m (limited to 'ios/OwynLauncherRewrite') diff --git a/ios/OwynLauncherRewrite/AppDelegate.h b/ios/OwynLauncherRewrite/AppDelegate.h new file mode 100644 index 0000000..5d28082 --- /dev/null +++ b/ios/OwynLauncherRewrite/AppDelegate.h @@ -0,0 +1,6 @@ +#import +#import + +@interface AppDelegate : RCTAppDelegate + +@end diff --git a/ios/OwynLauncherRewrite/AppDelegate.mm b/ios/OwynLauncherRewrite/AppDelegate.mm new file mode 100644 index 0000000..8c3a5ca --- /dev/null +++ b/ios/OwynLauncherRewrite/AppDelegate.mm @@ -0,0 +1,31 @@ +#import "AppDelegate.h" + +#import + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + self.moduleName = @"OwynLauncherRewrite"; + // 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 +{ + return [self bundleURL]; +} + +- (NSURL *)bundleURL +{ +#if DEBUG + return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; +#else + return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; +#endif +} + +@end diff --git a/ios/OwynLauncherRewrite/Images.xcassets/AppIcon.appiconset/Contents.json b/ios/OwynLauncherRewrite/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..8121323 --- /dev/null +++ b/ios/OwynLauncherRewrite/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,53 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/ios/OwynLauncherRewrite/Images.xcassets/Contents.json b/ios/OwynLauncherRewrite/Images.xcassets/Contents.json new file mode 100644 index 0000000..2d92bd5 --- /dev/null +++ b/ios/OwynLauncherRewrite/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/OwynLauncherRewrite/Info.plist b/ios/OwynLauncherRewrite/Info.plist new file mode 100644 index 0000000..bbb92c1 --- /dev/null +++ b/ios/OwynLauncherRewrite/Info.plist @@ -0,0 +1,52 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + OwynLauncherRewrite + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(MARKETING_VERSION) + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + LSRequiresIPhoneOS + + NSAppTransportSecurity + + + NSAllowsArbitraryLoads + + NSAllowsLocalNetworking + + + NSLocationWhenInUseUsageDescription + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + arm64 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/ios/OwynLauncherRewrite/LaunchScreen.storyboard b/ios/OwynLauncherRewrite/LaunchScreen.storyboard new file mode 100644 index 0000000..77ee3a4 --- /dev/null +++ b/ios/OwynLauncherRewrite/LaunchScreen.storyboard @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/OwynLauncherRewrite/PrivacyInfo.xcprivacy b/ios/OwynLauncherRewrite/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..ef1896e --- /dev/null +++ b/ios/OwynLauncherRewrite/PrivacyInfo.xcprivacy @@ -0,0 +1,38 @@ + + + + + NSPrivacyCollectedDataTypes + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyTracking + + + diff --git a/ios/OwynLauncherRewrite/main.m b/ios/OwynLauncherRewrite/main.m new file mode 100644 index 0000000..d645c72 --- /dev/null +++ b/ios/OwynLauncherRewrite/main.m @@ -0,0 +1,10 @@ +#import + +#import "AppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} -- cgit v1.3.1