react-native-boiler-plate-vijay 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +84 -0
  3. package/package.json +32 -0
  4. package/template/.husky/pre-commit +1 -0
  5. package/template/Gemfile +16 -0
  6. package/template/README.md +272 -0
  7. package/template/__tests__/App.test.tsx +13 -0
  8. package/template/_eslintrc.js +4 -0
  9. package/template/_gitignore +71 -0
  10. package/template/_prettierrc.js +7 -0
  11. package/template/_watchmanconfig +1 -0
  12. package/template/android/app/build.gradle +119 -0
  13. package/template/android/app/debug.keystore +0 -0
  14. package/template/android/app/proguard-rules.pro +10 -0
  15. package/template/android/app/src/main/AndroidManifest.xml +28 -0
  16. package/template/android/app/src/main/assets/custom/index.ts +12 -0
  17. package/template/android/app/src/main/assets/fonts/Poppins-Black.ttf +0 -0
  18. package/template/android/app/src/main/assets/fonts/Poppins-Bold.ttf +0 -0
  19. package/template/android/app/src/main/assets/fonts/Poppins-ExtraBold.ttf +0 -0
  20. package/template/android/app/src/main/assets/fonts/Poppins-ExtraLight.ttf +0 -0
  21. package/template/android/app/src/main/assets/fonts/Poppins-Italic.ttf +0 -0
  22. package/template/android/app/src/main/assets/fonts/Poppins-Light.ttf +0 -0
  23. package/template/android/app/src/main/assets/fonts/Poppins-Medium.ttf +0 -0
  24. package/template/android/app/src/main/assets/fonts/Poppins-Regular.ttf +0 -0
  25. package/template/android/app/src/main/assets/fonts/Poppins-SemiBold.ttf +0 -0
  26. package/template/android/app/src/main/assets/fonts/Poppins-Thin.ttf +0 -0
  27. package/template/android/app/src/main/java/com/helloworld/MainActivity.kt +29 -0
  28. package/template/android/app/src/main/java/com/helloworld/MainApplication.kt +27 -0
  29. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  30. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  31. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  32. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  33. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  34. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  35. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  36. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  37. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  38. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  39. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  40. package/template/android/app/src/main/res/values/strings.xml +3 -0
  41. package/template/android/app/src/main/res/values/styles.xml +9 -0
  42. package/template/android/build.gradle +31 -0
  43. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  44. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  45. package/template/android/gradle.properties +44 -0
  46. package/template/android/gradlew +251 -0
  47. package/template/android/gradlew.bat +99 -0
  48. package/template/android/settings.gradle +6 -0
  49. package/template/app.json +4 -0
  50. package/template/babel.config.js +38 -0
  51. package/template/index.js +9 -0
  52. package/template/ios/.xcode.env +11 -0
  53. package/template/ios/HelloWorld/AppDelegate.swift +48 -0
  54. package/template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  55. package/template/ios/HelloWorld/Images.xcassets/Contents.json +6 -0
  56. package/template/ios/HelloWorld/Info.plist +73 -0
  57. package/template/ios/HelloWorld/LaunchScreen.storyboard +47 -0
  58. package/template/ios/HelloWorld/PrivacyInfo.xcprivacy +45 -0
  59. package/template/ios/HelloWorld.xcodeproj/project.pbxproj +547 -0
  60. package/template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme +88 -0
  61. package/template/ios/HelloWorld.xcworkspace/contents.xcworkspacedata +10 -0
  62. package/template/ios/Podfile +34 -0
  63. package/template/jest.config.js +3 -0
  64. package/template/metro.config.js +24 -0
  65. package/template/package.json +83 -0
  66. package/template/react-native.config.js +3 -0
  67. package/template/src/api/axiosInstance.ts +75 -0
  68. package/template/src/api/index.ts +13 -0
  69. package/template/src/appRedux/index.ts +32 -0
  70. package/template/src/appRedux/modules/LoaderSlice.ts +23 -0
  71. package/template/src/appRedux/modules/ProfileSlice.ts +56 -0
  72. package/template/src/assets/fonts/Poppins-Black.ttf +0 -0
  73. package/template/src/assets/fonts/Poppins-Bold.ttf +0 -0
  74. package/template/src/assets/fonts/Poppins-ExtraBold.ttf +0 -0
  75. package/template/src/assets/fonts/Poppins-ExtraLight.ttf +0 -0
  76. package/template/src/assets/fonts/Poppins-Italic.ttf +0 -0
  77. package/template/src/assets/fonts/Poppins-Light.ttf +0 -0
  78. package/template/src/assets/fonts/Poppins-Medium.ttf +0 -0
  79. package/template/src/assets/fonts/Poppins-Regular.ttf +0 -0
  80. package/template/src/assets/fonts/Poppins-SemiBold.ttf +0 -0
  81. package/template/src/assets/fonts/Poppins-Thin.ttf +0 -0
  82. package/template/src/assets/fonts/index.ts +12 -0
  83. package/template/src/assets/images/IC_Home_Active.svg +3 -0
  84. package/template/src/assets/images/IC_Home_UnActive.svg +4 -0
  85. package/template/src/assets/images/IC_Setting_Active.svg +3 -0
  86. package/template/src/assets/images/IC_Setting_UnActive.svg +3 -0
  87. package/template/src/assets/images/index.ts +11 -0
  88. package/template/src/assets/index.ts +1 -0
  89. package/template/src/common/asyncServices.ts +41 -0
  90. package/template/src/common/constant.ts +18 -0
  91. package/template/src/common/helperFunctions.ts +70 -0
  92. package/template/src/common/index.ts +3 -0
  93. package/template/src/components/NoInternetModalPopUp.tsx +71 -0
  94. package/template/src/components/PrimaryButton.tsx +74 -0
  95. package/template/src/components/PrimaryFlashMessage.tsx +122 -0
  96. package/template/src/components/PrimaryLoader.tsx +37 -0
  97. package/template/src/components/PrimaryScrollView.tsx +97 -0
  98. package/template/src/components/PrimaryText.tsx +25 -0
  99. package/template/src/components/index.ts +15 -0
  100. package/template/src/hooks/index.ts +0 -0
  101. package/template/src/i18n/en.json +30 -0
  102. package/template/src/i18n/es.json +30 -0
  103. package/template/src/i18n/i18n.ts +37 -0
  104. package/template/src/i18n/index.ts +4 -0
  105. package/template/src/index.tsx +25 -0
  106. package/template/src/navigation/AppStack.tsx +22 -0
  107. package/template/src/navigation/AuthStack.tsx +12 -0
  108. package/template/src/navigation/MainNavigation.tsx +35 -0
  109. package/template/src/navigation/RootNavigationRef.ts +46 -0
  110. package/template/src/navigation/TabNavigator.tsx +65 -0
  111. package/template/src/navigation/index.ts +5 -0
  112. package/template/src/screens/Home/index.tsx +51 -0
  113. package/template/src/screens/Login/index.tsx +48 -0
  114. package/template/src/screens/ModalScreen/index.tsx +56 -0
  115. package/template/src/screens/Profile/index.tsx +68 -0
  116. package/template/src/screens/index.ts +5 -0
  117. package/template/src/services/index.ts +0 -0
  118. package/template/src/static/index.ts +0 -0
  119. package/template/src/theme/colors.ts +7 -0
  120. package/template/src/theme/dimensions.ts +35 -0
  121. package/template/src/theme/index.ts +3 -0
  122. package/template/src/theme/styles.ts +7 -0
  123. package/template/src/types/declarations.d.ts +6 -0
  124. package/template/src/types/index.ts +64 -0
  125. package/template/tsconfig.json +27 -0
  126. package/template.config.js +10 -0
@@ -0,0 +1,547 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
11
+ 3987BAF002C5E61E2B5EBC1F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
12
+ 49065B90278E4C9BB62901A2 /* Poppins-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B5FF8D55A5B54E7B87B63A27 /* Poppins-Medium.ttf */; };
13
+ 6BA3C537306F4A29860E3271 /* Poppins-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3A7CB69494574C3FADD15DC3 /* Poppins-Bold.ttf */; };
14
+ 6E0D835F8B7B4830A84BFAC1 /* Poppins-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 58E23A74E8A44D7C976587D7 /* Poppins-Italic.ttf */; };
15
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
16
+ 7BE7B28B0FD84A2F8CB9D8FD /* Poppins-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BE204341BFF64C579DD7BC4B /* Poppins-Regular.ttf */; };
17
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
18
+ 851F7CBE21214B3ABE96CDA4 /* Poppins-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0BDDDAB07D5A490EB1C4E4FC /* Poppins-SemiBold.ttf */; };
19
+ 8C8AFB0DC55B486E831374B5 /* index.ts in Resources */ = {isa = PBXBuildFile; fileRef = 1A4CD3BCA0D4488290BFBE3B /* index.ts */; };
20
+ 8E447DEA50C84C998321B2DE /* Poppins-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FFC3445810954EA385936B72 /* Poppins-ExtraBold.ttf */; };
21
+ 92ADFD5355794313A13343FF /* Poppins-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 663B241FEB944F559992AE9C /* Poppins-Light.ttf */; };
22
+ 92F7DE383EF24A338BAAAE3A /* Poppins-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4539692875F24D72AA9A0A6E /* Poppins-ExtraLight.ttf */; };
23
+ CACD548D30A8F5CC9359F17E /* libPods-HelloWorld.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 97A0DFBD54A56D2E3F17B2D4 /* libPods-HelloWorld.a */; };
24
+ F0E78BB2B13549039788DA17 /* Poppins-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DAAD260C35A4D959FA3DD4B /* Poppins-Black.ttf */; };
25
+ F2374236596441A08F0CDE8B /* Poppins-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8DFEB4E79EBD414C874F5762 /* Poppins-Thin.ttf */; };
26
+ /* End PBXBuildFile section */
27
+
28
+ /* Begin PBXFileReference section */
29
+ 0BDDDAB07D5A490EB1C4E4FC /* Poppins-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-SemiBold.ttf"; path = "../src/assets/fonts/Poppins-SemiBold.ttf"; sourceTree = "<group>"; };
30
+ 13B07F961A680F5B00A75B9A /* HelloWorld.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = HelloWorld.app; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = HelloWorld/Images.xcassets; sourceTree = "<group>"; };
32
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = HelloWorld/Info.plist; sourceTree = "<group>"; };
33
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = HelloWorld/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
34
+ 1A4CD3BCA0D4488290BFBE3B /* index.ts */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = index.ts; path = ../src/assets/fonts/index.ts; sourceTree = "<group>"; };
35
+ 3A7CB69494574C3FADD15DC3 /* Poppins-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Bold.ttf"; path = "../src/assets/fonts/Poppins-Bold.ttf"; sourceTree = "<group>"; };
36
+ 4539692875F24D72AA9A0A6E /* Poppins-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraLight.ttf"; path = "../src/assets/fonts/Poppins-ExtraLight.ttf"; sourceTree = "<group>"; };
37
+ 58E23A74E8A44D7C976587D7 /* Poppins-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Italic.ttf"; path = "../src/assets/fonts/Poppins-Italic.ttf"; sourceTree = "<group>"; };
38
+ 663B241FEB944F559992AE9C /* Poppins-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Light.ttf"; path = "../src/assets/fonts/Poppins-Light.ttf"; sourceTree = "<group>"; };
39
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = HelloWorld/AppDelegate.swift; sourceTree = "<group>"; };
40
+ 7DAAD260C35A4D959FA3DD4B /* Poppins-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Black.ttf"; path = "../src/assets/fonts/Poppins-Black.ttf"; sourceTree = "<group>"; };
41
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = HelloWorld/LaunchScreen.storyboard; sourceTree = "<group>"; };
42
+ 8DFEB4E79EBD414C874F5762 /* Poppins-Thin.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Thin.ttf"; path = "../src/assets/fonts/Poppins-Thin.ttf"; sourceTree = "<group>"; };
43
+ 97A0DFBD54A56D2E3F17B2D4 /* libPods-HelloWorld.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-HelloWorld.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ B5FF8D55A5B54E7B87B63A27 /* Poppins-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Medium.ttf"; path = "../src/assets/fonts/Poppins-Medium.ttf"; sourceTree = "<group>"; };
45
+ BE204341BFF64C579DD7BC4B /* Poppins-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-Regular.ttf"; path = "../src/assets/fonts/Poppins-Regular.ttf"; sourceTree = "<group>"; };
46
+ CA8220B356641D3410368E4F /* Pods-HelloWorld.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloWorld.release.xcconfig"; path = "Target Support Files/Pods-HelloWorld/Pods-HelloWorld.release.xcconfig"; sourceTree = "<group>"; };
47
+ CAE57A8A19C26FB51304C472 /* Pods-HelloWorld.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-HelloWorld.debug.xcconfig"; path = "Target Support Files/Pods-HelloWorld/Pods-HelloWorld.debug.xcconfig"; sourceTree = "<group>"; };
48
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
49
+ FFC3445810954EA385936B72 /* Poppins-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Poppins-ExtraBold.ttf"; path = "../src/assets/fonts/Poppins-ExtraBold.ttf"; sourceTree = "<group>"; };
50
+ /* End PBXFileReference section */
51
+
52
+ /* Begin PBXFrameworksBuildPhase section */
53
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
54
+ isa = PBXFrameworksBuildPhase;
55
+ buildActionMask = 2147483647;
56
+ files = (
57
+ CACD548D30A8F5CC9359F17E /* libPods-HelloWorld.a in Frameworks */,
58
+ );
59
+ runOnlyForDeploymentPostprocessing = 0;
60
+ };
61
+ /* End PBXFrameworksBuildPhase section */
62
+
63
+ /* Begin PBXGroup section */
64
+ 13B07FAE1A68108700A75B9A /* HelloWorld */ = {
65
+ isa = PBXGroup;
66
+ children = (
67
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
68
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
69
+ 13B07FB61A68108700A75B9A /* Info.plist */,
70
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
71
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
72
+ );
73
+ name = HelloWorld;
74
+ sourceTree = "<group>";
75
+ };
76
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
77
+ isa = PBXGroup;
78
+ children = (
79
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
80
+ 97A0DFBD54A56D2E3F17B2D4 /* libPods-HelloWorld.a */,
81
+ );
82
+ name = Frameworks;
83
+ sourceTree = "<group>";
84
+ };
85
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
86
+ isa = PBXGroup;
87
+ children = (
88
+ );
89
+ name = Libraries;
90
+ sourceTree = "<group>";
91
+ };
92
+ 83CBB9F61A601CBA00E9B192 = {
93
+ isa = PBXGroup;
94
+ children = (
95
+ 13B07FAE1A68108700A75B9A /* HelloWorld */,
96
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
97
+ 83CBBA001A601CBA00E9B192 /* Products */,
98
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
99
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
100
+ E7A868483A654BAA809ACA72 /* Resources */,
101
+ );
102
+ indentWidth = 2;
103
+ sourceTree = "<group>";
104
+ tabWidth = 2;
105
+ usesTabs = 0;
106
+ };
107
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
108
+ isa = PBXGroup;
109
+ children = (
110
+ 13B07F961A680F5B00A75B9A /* HelloWorld.app */,
111
+ );
112
+ name = Products;
113
+ sourceTree = "<group>";
114
+ };
115
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
116
+ isa = PBXGroup;
117
+ children = (
118
+ CAE57A8A19C26FB51304C472 /* Pods-HelloWorld.debug.xcconfig */,
119
+ CA8220B356641D3410368E4F /* Pods-HelloWorld.release.xcconfig */,
120
+ );
121
+ path = Pods;
122
+ sourceTree = "<group>";
123
+ };
124
+ E7A868483A654BAA809ACA72 /* Resources */ = {
125
+ isa = PBXGroup;
126
+ children = (
127
+ 4539692875F24D72AA9A0A6E /* Poppins-ExtraLight.ttf */,
128
+ 663B241FEB944F559992AE9C /* Poppins-Light.ttf */,
129
+ B5FF8D55A5B54E7B87B63A27 /* Poppins-Medium.ttf */,
130
+ FFC3445810954EA385936B72 /* Poppins-ExtraBold.ttf */,
131
+ BE204341BFF64C579DD7BC4B /* Poppins-Regular.ttf */,
132
+ 3A7CB69494574C3FADD15DC3 /* Poppins-Bold.ttf */,
133
+ 7DAAD260C35A4D959FA3DD4B /* Poppins-Black.ttf */,
134
+ 8DFEB4E79EBD414C874F5762 /* Poppins-Thin.ttf */,
135
+ 0BDDDAB07D5A490EB1C4E4FC /* Poppins-SemiBold.ttf */,
136
+ 58E23A74E8A44D7C976587D7 /* Poppins-Italic.ttf */,
137
+ 1A4CD3BCA0D4488290BFBE3B /* index.ts */,
138
+ );
139
+ name = Resources;
140
+ path = "";
141
+ sourceTree = "<group>";
142
+ };
143
+ /* End PBXGroup section */
144
+
145
+ /* Begin PBXNativeTarget section */
146
+ 13B07F861A680F5B00A75B9A /* HelloWorld */ = {
147
+ isa = PBXNativeTarget;
148
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HelloWorld" */;
149
+ buildPhases = (
150
+ D336F769A08D4B9731D5BBE5 /* [CP] Check Pods Manifest.lock */,
151
+ 13B07F871A680F5B00A75B9A /* Sources */,
152
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
153
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
154
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
155
+ 0CF9409D3BA276F9F6886B5E /* [CP] Embed Pods Frameworks */,
156
+ 443FE82B9BBF04ADAADF67A8 /* [CP] Copy Pods Resources */,
157
+ );
158
+ buildRules = (
159
+ );
160
+ dependencies = (
161
+ );
162
+ name = HelloWorld;
163
+ productName = HelloWorld;
164
+ productReference = 13B07F961A680F5B00A75B9A /* HelloWorld.app */;
165
+ productType = "com.apple.product-type.application";
166
+ };
167
+ /* End PBXNativeTarget section */
168
+
169
+ /* Begin PBXProject section */
170
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
171
+ isa = PBXProject;
172
+ attributes = {
173
+ LastUpgradeCheck = 1210;
174
+ TargetAttributes = {
175
+ 13B07F861A680F5B00A75B9A = {
176
+ LastSwiftMigration = 1120;
177
+ };
178
+ };
179
+ };
180
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "HelloWorld" */;
181
+ compatibilityVersion = "Xcode 12.0";
182
+ developmentRegion = en;
183
+ hasScannedForEncodings = 0;
184
+ knownRegions = (
185
+ en,
186
+ Base,
187
+ );
188
+ mainGroup = 83CBB9F61A601CBA00E9B192;
189
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
190
+ projectDirPath = "";
191
+ projectRoot = "";
192
+ targets = (
193
+ 13B07F861A680F5B00A75B9A /* HelloWorld */,
194
+ );
195
+ };
196
+ /* End PBXProject section */
197
+
198
+ /* Begin PBXResourcesBuildPhase section */
199
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
200
+ isa = PBXResourcesBuildPhase;
201
+ buildActionMask = 2147483647;
202
+ files = (
203
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
204
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
205
+ 3987BAF002C5E61E2B5EBC1F /* PrivacyInfo.xcprivacy in Resources */,
206
+ 92F7DE383EF24A338BAAAE3A /* Poppins-ExtraLight.ttf in Resources */,
207
+ 92ADFD5355794313A13343FF /* Poppins-Light.ttf in Resources */,
208
+ 49065B90278E4C9BB62901A2 /* Poppins-Medium.ttf in Resources */,
209
+ 8E447DEA50C84C998321B2DE /* Poppins-ExtraBold.ttf in Resources */,
210
+ 7BE7B28B0FD84A2F8CB9D8FD /* Poppins-Regular.ttf in Resources */,
211
+ 6BA3C537306F4A29860E3271 /* Poppins-Bold.ttf in Resources */,
212
+ F0E78BB2B13549039788DA17 /* Poppins-Black.ttf in Resources */,
213
+ F2374236596441A08F0CDE8B /* Poppins-Thin.ttf in Resources */,
214
+ 851F7CBE21214B3ABE96CDA4 /* Poppins-SemiBold.ttf in Resources */,
215
+ 6E0D835F8B7B4830A84BFAC1 /* Poppins-Italic.ttf in Resources */,
216
+ 8C8AFB0DC55B486E831374B5 /* index.ts in Resources */,
217
+ );
218
+ runOnlyForDeploymentPostprocessing = 0;
219
+ };
220
+ /* End PBXResourcesBuildPhase section */
221
+
222
+ /* Begin PBXShellScriptBuildPhase section */
223
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
224
+ isa = PBXShellScriptBuildPhase;
225
+ buildActionMask = 2147483647;
226
+ files = (
227
+ );
228
+ inputPaths = (
229
+ "$(SRCROOT)/.xcode.env.local",
230
+ "$(SRCROOT)/.xcode.env",
231
+ );
232
+ name = "Bundle React Native code and images";
233
+ outputPaths = (
234
+ );
235
+ runOnlyForDeploymentPostprocessing = 0;
236
+ shellPath = /bin/sh;
237
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
238
+ };
239
+ 0CF9409D3BA276F9F6886B5E /* [CP] Embed Pods Frameworks */ = {
240
+ isa = PBXShellScriptBuildPhase;
241
+ buildActionMask = 2147483647;
242
+ files = (
243
+ );
244
+ inputFileListPaths = (
245
+ "${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-${CONFIGURATION}-input-files.xcfilelist",
246
+ );
247
+ name = "[CP] Embed Pods Frameworks";
248
+ outputFileListPaths = (
249
+ "${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks-${CONFIGURATION}-output-files.xcfilelist",
250
+ );
251
+ runOnlyForDeploymentPostprocessing = 0;
252
+ shellPath = /bin/sh;
253
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-frameworks.sh\"\n";
254
+ showEnvVarsInLog = 0;
255
+ };
256
+ 443FE82B9BBF04ADAADF67A8 /* [CP] Copy Pods Resources */ = {
257
+ isa = PBXShellScriptBuildPhase;
258
+ buildActionMask = 2147483647;
259
+ files = (
260
+ );
261
+ inputFileListPaths = (
262
+ "${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-resources-${CONFIGURATION}-input-files.xcfilelist",
263
+ );
264
+ name = "[CP] Copy Pods Resources";
265
+ outputFileListPaths = (
266
+ "${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-resources-${CONFIGURATION}-output-files.xcfilelist",
267
+ );
268
+ runOnlyForDeploymentPostprocessing = 0;
269
+ shellPath = /bin/sh;
270
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-HelloWorld/Pods-HelloWorld-resources.sh\"\n";
271
+ showEnvVarsInLog = 0;
272
+ };
273
+ D336F769A08D4B9731D5BBE5 /* [CP] Check Pods Manifest.lock */ = {
274
+ isa = PBXShellScriptBuildPhase;
275
+ buildActionMask = 2147483647;
276
+ files = (
277
+ );
278
+ inputFileListPaths = (
279
+ );
280
+ inputPaths = (
281
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
282
+ "${PODS_ROOT}/Manifest.lock",
283
+ );
284
+ name = "[CP] Check Pods Manifest.lock";
285
+ outputFileListPaths = (
286
+ );
287
+ outputPaths = (
288
+ "$(DERIVED_FILE_DIR)/Pods-HelloWorld-checkManifestLockResult.txt",
289
+ );
290
+ runOnlyForDeploymentPostprocessing = 0;
291
+ shellPath = /bin/sh;
292
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
293
+ showEnvVarsInLog = 0;
294
+ };
295
+ /* End PBXShellScriptBuildPhase section */
296
+
297
+ /* Begin PBXSourcesBuildPhase section */
298
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
299
+ isa = PBXSourcesBuildPhase;
300
+ buildActionMask = 2147483647;
301
+ files = (
302
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
303
+ );
304
+ runOnlyForDeploymentPostprocessing = 0;
305
+ };
306
+ /* End PBXSourcesBuildPhase section */
307
+
308
+ /* Begin XCBuildConfiguration section */
309
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
310
+ isa = XCBuildConfiguration;
311
+ baseConfigurationReference = CAE57A8A19C26FB51304C472 /* Pods-HelloWorld.debug.xcconfig */;
312
+ buildSettings = {
313
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
314
+ CLANG_ENABLE_MODULES = YES;
315
+ CURRENT_PROJECT_VERSION = 1;
316
+ ENABLE_BITCODE = NO;
317
+ INFOPLIST_FILE = HelloWorld/Info.plist;
318
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
319
+ LD_RUNPATH_SEARCH_PATHS = (
320
+ "$(inherited)",
321
+ "@executable_path/Frameworks",
322
+ );
323
+ MARKETING_VERSION = 1.0;
324
+ OTHER_LDFLAGS = (
325
+ "$(inherited)",
326
+ "-ObjC",
327
+ "-lc++",
328
+ );
329
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
330
+ PRODUCT_NAME = HelloWorld;
331
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
332
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
333
+ SWIFT_VERSION = 5.0;
334
+ TARGETED_DEVICE_FAMILY = "1,2";
335
+ VERSIONING_SYSTEM = "apple-generic";
336
+ };
337
+ name = Debug;
338
+ };
339
+ 13B07F951A680F5B00A75B9A /* Release */ = {
340
+ isa = XCBuildConfiguration;
341
+ baseConfigurationReference = CA8220B356641D3410368E4F /* Pods-HelloWorld.release.xcconfig */;
342
+ buildSettings = {
343
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
344
+ CLANG_ENABLE_MODULES = YES;
345
+ CURRENT_PROJECT_VERSION = 1;
346
+ INFOPLIST_FILE = HelloWorld/Info.plist;
347
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
348
+ LD_RUNPATH_SEARCH_PATHS = (
349
+ "$(inherited)",
350
+ "@executable_path/Frameworks",
351
+ );
352
+ MARKETING_VERSION = 1.0;
353
+ OTHER_LDFLAGS = (
354
+ "$(inherited)",
355
+ "-ObjC",
356
+ "-lc++",
357
+ );
358
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
359
+ PRODUCT_NAME = HelloWorld;
360
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
361
+ SWIFT_VERSION = 5.0;
362
+ TARGETED_DEVICE_FAMILY = "1,2";
363
+ VERSIONING_SYSTEM = "apple-generic";
364
+ };
365
+ name = Release;
366
+ };
367
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
368
+ isa = XCBuildConfiguration;
369
+ buildSettings = {
370
+ ALWAYS_SEARCH_USER_PATHS = NO;
371
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
372
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
373
+ CLANG_CXX_LIBRARY = "libc++";
374
+ CLANG_ENABLE_MODULES = YES;
375
+ CLANG_ENABLE_OBJC_ARC = YES;
376
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
377
+ CLANG_WARN_BOOL_CONVERSION = YES;
378
+ CLANG_WARN_COMMA = YES;
379
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
380
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
381
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
382
+ CLANG_WARN_EMPTY_BODY = YES;
383
+ CLANG_WARN_ENUM_CONVERSION = YES;
384
+ CLANG_WARN_INFINITE_RECURSION = YES;
385
+ CLANG_WARN_INT_CONVERSION = YES;
386
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
387
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
388
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
389
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
390
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
391
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
392
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
393
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
394
+ CLANG_WARN_UNREACHABLE_CODE = YES;
395
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
396
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
397
+ COPY_PHASE_STRIP = NO;
398
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
399
+ ENABLE_TESTABILITY = YES;
400
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
401
+ GCC_C_LANGUAGE_STANDARD = gnu99;
402
+ GCC_DYNAMIC_NO_PIC = NO;
403
+ GCC_NO_COMMON_BLOCKS = YES;
404
+ GCC_OPTIMIZATION_LEVEL = 0;
405
+ GCC_PREPROCESSOR_DEFINITIONS = (
406
+ "DEBUG=1",
407
+ "$(inherited)",
408
+ );
409
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
410
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
411
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
412
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
413
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
414
+ GCC_WARN_UNUSED_FUNCTION = YES;
415
+ GCC_WARN_UNUSED_VARIABLE = YES;
416
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
417
+ LD_RUNPATH_SEARCH_PATHS = (
418
+ /usr/lib/swift,
419
+ "$(inherited)",
420
+ );
421
+ LIBRARY_SEARCH_PATHS = (
422
+ "\"$(SDKROOT)/usr/lib/swift\"",
423
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
424
+ "\"$(inherited)\"",
425
+ );
426
+ MTL_ENABLE_DEBUG_INFO = YES;
427
+ ONLY_ACTIVE_ARCH = YES;
428
+ OTHER_CFLAGS = (
429
+ "$(inherited)",
430
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
431
+ );
432
+ OTHER_CPLUSPLUSFLAGS = (
433
+ "$(OTHER_CFLAGS)",
434
+ "-DFOLLY_NO_CONFIG",
435
+ "-DFOLLY_MOBILE=1",
436
+ "-DFOLLY_USE_LIBCPP=1",
437
+ "-DFOLLY_CFG_NO_COROUTINES=1",
438
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
439
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
440
+ );
441
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
442
+ SDKROOT = iphoneos;
443
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
444
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
445
+ USE_HERMES = true;
446
+ };
447
+ name = Debug;
448
+ };
449
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
450
+ isa = XCBuildConfiguration;
451
+ buildSettings = {
452
+ ALWAYS_SEARCH_USER_PATHS = NO;
453
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
454
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
455
+ CLANG_CXX_LIBRARY = "libc++";
456
+ CLANG_ENABLE_MODULES = YES;
457
+ CLANG_ENABLE_OBJC_ARC = YES;
458
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
459
+ CLANG_WARN_BOOL_CONVERSION = YES;
460
+ CLANG_WARN_COMMA = YES;
461
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
462
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
463
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
464
+ CLANG_WARN_EMPTY_BODY = YES;
465
+ CLANG_WARN_ENUM_CONVERSION = YES;
466
+ CLANG_WARN_INFINITE_RECURSION = YES;
467
+ CLANG_WARN_INT_CONVERSION = YES;
468
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
469
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
470
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
471
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
472
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
473
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
474
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
475
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
476
+ CLANG_WARN_UNREACHABLE_CODE = YES;
477
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
478
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
479
+ COPY_PHASE_STRIP = YES;
480
+ ENABLE_NS_ASSERTIONS = NO;
481
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
482
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
483
+ GCC_C_LANGUAGE_STANDARD = gnu99;
484
+ GCC_NO_COMMON_BLOCKS = YES;
485
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
486
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
487
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
488
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
489
+ GCC_WARN_UNUSED_FUNCTION = YES;
490
+ GCC_WARN_UNUSED_VARIABLE = YES;
491
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
492
+ LD_RUNPATH_SEARCH_PATHS = (
493
+ /usr/lib/swift,
494
+ "$(inherited)",
495
+ );
496
+ LIBRARY_SEARCH_PATHS = (
497
+ "\"$(SDKROOT)/usr/lib/swift\"",
498
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
499
+ "\"$(inherited)\"",
500
+ );
501
+ MTL_ENABLE_DEBUG_INFO = NO;
502
+ OTHER_CFLAGS = (
503
+ "$(inherited)",
504
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
505
+ );
506
+ OTHER_CPLUSPLUSFLAGS = (
507
+ "$(OTHER_CFLAGS)",
508
+ "-DFOLLY_NO_CONFIG",
509
+ "-DFOLLY_MOBILE=1",
510
+ "-DFOLLY_USE_LIBCPP=1",
511
+ "-DFOLLY_CFG_NO_COROUTINES=1",
512
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
513
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
514
+ );
515
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
516
+ SDKROOT = iphoneos;
517
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
518
+ USE_HERMES = true;
519
+ VALIDATE_PRODUCT = YES;
520
+ };
521
+ name = Release;
522
+ };
523
+ /* End XCBuildConfiguration section */
524
+
525
+ /* Begin XCConfigurationList section */
526
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "HelloWorld" */ = {
527
+ isa = XCConfigurationList;
528
+ buildConfigurations = (
529
+ 13B07F941A680F5B00A75B9A /* Debug */,
530
+ 13B07F951A680F5B00A75B9A /* Release */,
531
+ );
532
+ defaultConfigurationIsVisible = 0;
533
+ defaultConfigurationName = Release;
534
+ };
535
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "HelloWorld" */ = {
536
+ isa = XCConfigurationList;
537
+ buildConfigurations = (
538
+ 83CBBA201A601CBA00E9B192 /* Debug */,
539
+ 83CBBA211A601CBA00E9B192 /* Release */,
540
+ );
541
+ defaultConfigurationIsVisible = 0;
542
+ defaultConfigurationName = Release;
543
+ };
544
+ /* End XCConfigurationList section */
545
+ };
546
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
547
+ }
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1210"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
+ BuildableName = "RNBoilerPlate.app"
19
+ BlueprintName = "RNBoilerPlate"
20
+ ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
+ BuildableName = "RNBoilerPlateTests.xctest"
37
+ BlueprintName = "RNBoilerPlateTests"
38
+ ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ </TestAction>
43
+ <LaunchAction
44
+ buildConfiguration = "Debug"
45
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
46
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47
+ launchStyle = "0"
48
+ useCustomWorkingDirectory = "NO"
49
+ ignoresPersistentStateOnLaunch = "NO"
50
+ debugDocumentVersioning = "YES"
51
+ debugServiceExtension = "internal"
52
+ allowLocationSimulation = "YES">
53
+ <BuildableProductRunnable
54
+ runnableDebuggingMode = "0">
55
+ <BuildableReference
56
+ BuildableIdentifier = "primary"
57
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
+ BuildableName = "RNBoilerPlate.app"
59
+ BlueprintName = "RNBoilerPlate"
60
+ ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
61
+ </BuildableReference>
62
+ </BuildableProductRunnable>
63
+ </LaunchAction>
64
+ <ProfileAction
65
+ buildConfiguration = "Release"
66
+ shouldUseLaunchSchemeArgsEnv = "YES"
67
+ savedToolIdentifier = ""
68
+ useCustomWorkingDirectory = "NO"
69
+ debugDocumentVersioning = "YES">
70
+ <BuildableProductRunnable
71
+ runnableDebuggingMode = "0">
72
+ <BuildableReference
73
+ BuildableIdentifier = "primary"
74
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
+ BuildableName = "RNBoilerPlate.app"
76
+ BlueprintName = "RNBoilerPlate"
77
+ ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
78
+ </BuildableReference>
79
+ </BuildableProductRunnable>
80
+ </ProfileAction>
81
+ <AnalyzeAction
82
+ buildConfiguration = "Debug">
83
+ </AnalyzeAction>
84
+ <ArchiveAction
85
+ buildConfiguration = "Release"
86
+ revealArchiveInOrganizer = "YES">
87
+ </ArchiveAction>
88
+ </Scheme>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:RNBoilerPlate.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,34 @@
1
+ # Resolve react_native_pods.rb with node to allow for hoisting
2
+ require Pod::Executable.execute_command('node', ['-p',
3
+ 'require.resolve(
4
+ "react-native/scripts/react_native_pods.rb",
5
+ {paths: [process.argv[1]]},
6
+ )', __dir__]).strip
7
+
8
+ platform :ios, min_ios_version_supported
9
+ prepare_react_native_project!
10
+
11
+ linkage = ENV['USE_FRAMEWORKS']
12
+ if linkage != nil
13
+ Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
14
+ use_frameworks! :linkage => linkage.to_sym
15
+ end
16
+
17
+ target 'HelloWorld' do
18
+ config = use_native_modules!
19
+
20
+ use_react_native!(
21
+ :path => config[:reactNativePath],
22
+ # An absolute path to your application root.
23
+ :app_path => "#{Pod::Config.instance.installation_root}/.."
24
+ )
25
+
26
+ post_install do |installer|
27
+ react_native_post_install(
28
+ installer,
29
+ config[:reactNativePath],
30
+ :mac_catalyst_enabled => false,
31
+ # :ccache_enabled => true
32
+ )
33
+ end
34
+ end