@xrnjs/app-template 0.0.1

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 (298) hide show
  1. package/$package.json +51 -0
  2. package/.env +6 -0
  3. package/.env.prod +6 -0
  4. package/LICENSE +202 -0
  5. package/android/app/build.gradle +176 -0
  6. package/android/app/build_defs.bzl +19 -0
  7. package/android/app/debug.keystore +0 -0
  8. package/android/app/proguard-rules.pro +10 -0
  9. package/android/app/src/debug/AndroidManifest.xml +13 -0
  10. package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +73 -0
  11. package/android/app/src/main/AndroidManifest.xml +46 -0
  12. package/android/app/src/main/assets/index.main-bundle.bundle +178940 -0
  13. package/android/app/src/main/assets/index.sub-bundle.bundle +178928 -0
  14. package/android/app/src/main/assets/xrn-manifest.json +1 -0
  15. package/android/app/src/main/java/com/xrn/template/MainActivity.kt +52 -0
  16. package/android/app/src/main/java/com/xrn/template/MainApplication.kt +91 -0
  17. package/android/app/src/main/java/com/xrn/template/multibundle/XBundleInfoHook.kt +9 -0
  18. package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +6 -0
  19. package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +81 -0
  20. package/android/app/src/main/java/com/xrn/template/navigation/MainClazzFactory.kt +14 -0
  21. package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +56 -0
  22. package/android/app/src/main/java/com/xrn/template/navigation/XMainActivity.kt +4 -0
  23. package/android/app/src/main/java/com/xrn/template/utils/DevEntryUtil.kt +29 -0
  24. package/android/app/src/main/java/com/xrn/template/utils/LifecycleAwareRunnable.kt +37 -0
  25. package/android/app/src/main/jni/CMakeLists.txt +7 -0
  26. package/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
  27. package/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
  28. package/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
  29. package/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
  30. package/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
  31. package/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
  32. package/android/app/src/main/jni/OnLoad.cpp +11 -0
  33. package/android/app/src/main/res/drawable/bg_debug_entry.xml +15 -0
  34. package/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  35. package/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
  36. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_alerttriangle.png +0 -0
  37. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_chevronleft.png +0 -0
  38. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_chevronright.png +0 -0
  39. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_close.png +0 -0
  40. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_loader.png +0 -0
  41. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
  42. package/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backiconmask.png +0 -0
  43. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_images_fail_icon.png +0 -0
  44. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_images_success_icon.png +0 -0
  45. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_close.png +0 -0
  46. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_filter.png +0 -0
  47. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_more.png +0 -0
  48. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_search.png +0 -0
  49. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_share.png +0 -0
  50. package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_navigation_assets_backicon.png +0 -0
  51. package/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
  52. package/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
  53. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_copy_icon.png +0 -0
  54. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_app_info.png +0 -0
  55. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_app_start_time.png +0 -0
  56. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_file.png +0 -0
  57. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_fps.png +0 -0
  58. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_h5.png +0 -0
  59. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_health.png +0 -0
  60. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_kadun.png +0 -0
  61. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_net.png +0 -0
  62. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_qingchu.png +0 -0
  63. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_scan.png +0 -0
  64. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_self.png +0 -0
  65. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_setting.png +0 -0
  66. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_view_check.png +0 -0
  67. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_view_level.png +0 -0
  68. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_viewmetrics.png +0 -0
  69. package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_images_rebackwhiteicon.png +0 -0
  70. package/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
  71. package/android/app/src/main/res/layout/activity_splash.xml +16 -0
  72. package/android/app/src/main/res/layout/layout_rn_dev_float.xml +18 -0
  73. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  74. package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  75. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  76. package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  77. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  78. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  79. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  80. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  81. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  82. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  83. package/android/app/src/main/res/raw/bundle_config.json +23 -0
  84. package/android/app/src/main/res/raw/launch_screen.json +1 -0
  85. package/android/app/src/main/res/values/strings.xml +3 -0
  86. package/android/app/src/main/res/values/styles.xml +9 -0
  87. package/android/build.gradle +83 -0
  88. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  89. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  90. package/android/gradle.properties +63 -0
  91. package/android/gradlew +234 -0
  92. package/android/gradlew.bat +89 -0
  93. package/android/settings.gradle +18 -0
  94. package/harmony/.clang-format +64 -0
  95. package/harmony/.clang-tidy +1 -0
  96. package/harmony/.clangd +13 -0
  97. package/harmony/AppScope/app.json5 +10 -0
  98. package/harmony/AppScope/resources/base/element/string.json +8 -0
  99. package/harmony/AppScope/resources/base/media/app_icon.png +0 -0
  100. package/harmony/XRNTemplate-dev.cer +52 -0
  101. package/harmony/XRNTemplate-devDebug.p7b +0 -0
  102. package/harmony/XRNTemplate.p12 +0 -0
  103. package/harmony/build-profile.json5 +91 -0
  104. package/harmony/code-linter.json5 +20 -0
  105. package/harmony/entry/build-profile.json5 +33 -0
  106. package/harmony/entry/hvigorfile.ts +6 -0
  107. package/harmony/entry/obfuscation-rules.txt +23 -0
  108. package/harmony/entry/oh-package-lock.json5 +486 -0
  109. package/harmony/entry/oh-package.json5 +59 -0
  110. package/harmony/entry/src/main/cpp/CMakeLists.txt +72 -0
  111. package/harmony/entry/src/main/cpp/PackageProvider.cpp +51 -0
  112. package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +25 -0
  113. package/harmony/entry/src/main/cpp/generated/BundleNavigation.h +21 -0
  114. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +21 -0
  115. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +21 -0
  116. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +21 -0
  117. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +21 -0
  118. package/harmony/entry/src/main/cpp/generated/ImageResizer.cpp +21 -0
  119. package/harmony/entry/src/main/cpp/generated/ImageResizer.h +21 -0
  120. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +22 -0
  121. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +21 -0
  122. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +31 -0
  123. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +21 -0
  124. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +28 -0
  125. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +21 -0
  126. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +26 -0
  127. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +21 -0
  128. package/harmony/entry/src/main/cpp/generated/RNCWebViewComponentDescriptor.h +43 -0
  129. package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +120 -0
  130. package/harmony/entry/src/main/cpp/generated/RNCWebViewModule.cpp +22 -0
  131. package/harmony/entry/src/main/cpp/generated/RNCWebViewModule.h +21 -0
  132. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +137 -0
  133. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +21 -0
  134. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +24 -0
  135. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +21 -0
  136. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +43 -0
  137. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +38 -0
  138. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +28 -0
  139. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +21 -0
  140. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +43 -0
  141. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +31 -0
  142. package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +31 -0
  143. package/harmony/entry/src/main/cpp/generated/RNLocalize.h +21 -0
  144. package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +191 -0
  145. package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +48 -0
  146. package/harmony/entry/src/main/cpp/generated/RTNCodePush.h +21 -0
  147. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +51 -0
  148. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +21 -0
  149. package/harmony/entry/src/main/cpp/generated/XRNAppUtilsModule.cpp +29 -0
  150. package/harmony/entry/src/main/cpp/generated/XRNAppUtilsModule.h +21 -0
  151. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +21 -0
  152. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +21 -0
  153. package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +27 -0
  154. package/harmony/entry/src/main/cpp/generated/XRNBundleModule.h +21 -0
  155. package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +32 -0
  156. package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.h +21 -0
  157. package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +22 -0
  158. package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +21 -0
  159. package/harmony/entry/src/main/cpp/generated/XRNLoadingModule.cpp +25 -0
  160. package/harmony/entry/src/main/cpp/generated/XRNLoadingModule.h +21 -0
  161. package/harmony/entry/src/main/cpp/generated/XRNMultiBundleModule.cpp +21 -0
  162. package/harmony/entry/src/main/cpp/generated/XRNMultiBundleModule.h +21 -0
  163. package/harmony/entry/src/main/cpp/generated/XRNNativeStorageModule.cpp +26 -0
  164. package/harmony/entry/src/main/cpp/generated/XRNNativeStorageModule.h +21 -0
  165. package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +23 -0
  166. package/harmony/entry/src/main/cpp/generated/XRNNavigation.h +21 -0
  167. package/harmony/entry/src/main/cpp/generated/XRNToastModule.cpp +22 -0
  168. package/harmony/entry/src/main/cpp/generated/XRNToastModule.h +21 -0
  169. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/BaseReactNativeOhTplAsyncStoragePackage.h +68 -0
  170. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/turbo_modules/RNCAsyncStorage.cpp +26 -0
  171. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/turbo_modules/RNCAsyncStorage.h +21 -0
  172. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/ComponentDescriptors.h +22 -0
  173. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/EventEmitters.cpp +18 -0
  174. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/EventEmitters.h +19 -0
  175. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/Props.cpp +21 -0
  176. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/Props.h +20 -0
  177. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/ShadowNodes.cpp +19 -0
  178. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/ShadowNodes.h +25 -0
  179. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/States.cpp +18 -0
  180. package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/react/renderer/components/_react_native_oh_tpl_async_storage/States.h +23 -0
  181. package/harmony/entry/src/main/ets/BundleHelper.ets +198 -0
  182. package/harmony/entry/src/main/ets/Constants.ets +2 -0
  183. package/harmony/entry/src/main/ets/MainAbilityStage.ets +60 -0
  184. package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +57 -0
  185. package/harmony/entry/src/main/ets/entrybackupability/EntryBackupAbility.ets +12 -0
  186. package/harmony/entry/src/main/ets/lottie/launch_screen.json +1 -0
  187. package/harmony/entry/src/main/ets/module/devtools/components/FloatBall.ets +359 -0
  188. package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +8 -0
  189. package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +8 -0
  190. package/harmony/entry/src/main/ets/navDestination/Splash.ets +79 -0
  191. package/harmony/entry/src/main/ets/pages/Index.ets +66 -0
  192. package/harmony/entry/src/main/module.json5 +68 -0
  193. package/harmony/entry/src/main/resources/base/element/color.json +12 -0
  194. package/harmony/entry/src/main/resources/base/element/string.json +19 -0
  195. package/harmony/entry/src/main/resources/base/media/background.png +0 -0
  196. package/harmony/entry/src/main/resources/base/media/foreground.png +0 -0
  197. package/harmony/entry/src/main/resources/base/media/ic_back.png +0 -0
  198. package/harmony/entry/src/main/resources/base/media/layered_image.json +7 -0
  199. package/harmony/entry/src/main/resources/base/media/startIcon.png +0 -0
  200. package/harmony/entry/src/main/resources/base/profile/backup_config.json +3 -0
  201. package/harmony/entry/src/main/resources/base/profile/main_pages.json +5 -0
  202. package/harmony/entry/src/main/resources/en_US/element/string.json +16 -0
  203. package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +23 -0
  204. package/harmony/entry/src/main/resources/rawfile/fonts/AntDesign.ttf +0 -0
  205. package/harmony/entry/src/main/resources/rawfile/fonts/Entypo.ttf +0 -0
  206. package/harmony/entry/src/main/resources/rawfile/fonts/EvilIcons.ttf +0 -0
  207. package/harmony/entry/src/main/resources/rawfile/fonts/Feather.ttf +0 -0
  208. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome.ttf +0 -0
  209. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Brands.ttf +0 -0
  210. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Regular.ttf +0 -0
  211. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Solid.ttf +0 -0
  212. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Brands.ttf +0 -0
  213. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Regular.ttf +0 -0
  214. package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Solid.ttf +0 -0
  215. package/harmony/entry/src/main/resources/rawfile/fonts/Fontisto.ttf +0 -0
  216. package/harmony/entry/src/main/resources/rawfile/fonts/Foundation.ttf +0 -0
  217. package/harmony/entry/src/main/resources/rawfile/fonts/Ionicons.ttf +0 -0
  218. package/harmony/entry/src/main/resources/rawfile/fonts/MaterialCommunityIcons.ttf +0 -0
  219. package/harmony/entry/src/main/resources/rawfile/fonts/MaterialIcons.ttf +0 -0
  220. package/harmony/entry/src/main/resources/rawfile/fonts/Octicons.ttf +0 -0
  221. package/harmony/entry/src/main/resources/rawfile/fonts/SimpleLineIcons.ttf +0 -0
  222. package/harmony/entry/src/main/resources/rawfile/fonts/Zocial.ttf +0 -0
  223. package/harmony/entry/src/main/resources/zh_CN/element/string.json +16 -0
  224. package/harmony/entry/src/mock/mock-config.json5 +2 -0
  225. package/harmony/entry/src/ohosTest/ets/test/Ability.test.ets +35 -0
  226. package/harmony/entry/src/ohosTest/ets/test/List.test.ets +5 -0
  227. package/harmony/entry/src/ohosTest/module.json5 +13 -0
  228. package/harmony/entry/src/test/List.test.ets +5 -0
  229. package/harmony/entry/src/test/LocalUnit.test.ets +33 -0
  230. package/harmony/hvigor/hvigor-config.json5 +22 -0
  231. package/harmony/hvigorfile.ts +6 -0
  232. package/harmony/material/ac/6a282c38039b44b2949441a85986c35d +1 -0
  233. package/harmony/material/ce/b2a765b7b925475797f45ae55c8d3ad3 +0 -0
  234. package/harmony/material/fd/0/9cbed212f275489b874de30a02692f59 +1 -0
  235. package/harmony/material/fd/1/dc8ea45ef44142d09bca7eeacdc5ecac +1 -0
  236. package/harmony/material/fd/2/d34888210a5846829d745f65295f90b7 +1 -0
  237. package/harmony/oh-package-lock.json5 +27 -0
  238. package/harmony/oh-package.json5 +17 -0
  239. package/ios/.xcode.env +11 -0
  240. package/ios/BundleEventCenter/XTBundleProvider.h +17 -0
  241. package/ios/BundleEventCenter/XTBundleProvider.m +129 -0
  242. package/ios/BundleEventCenter/XTBundleViewControllerFactory.h +18 -0
  243. package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +39 -0
  244. package/ios/BundleEventCenter/bundleController/XTBundleViewController.h +16 -0
  245. package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +35 -0
  246. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.h +16 -0
  247. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.m +41 -0
  248. package/ios/BundleEventCenter/bundleController/xtBundles.plist +14 -0
  249. package/ios/Podfile +221 -0
  250. package/ios/Podfile.lock +955 -0
  251. package/ios/RNDebug/DebugPlugin/XTPluginManage.h +24 -0
  252. package/ios/RNDebug/DebugPlugin/XTPluginManage.m +93 -0
  253. package/ios/RNDebug/Views/XTLoadJSErrorTipPanel.swift +231 -0
  254. package/ios/RNDebug/Views/XTScanQRPlugin.swift +122 -0
  255. package/ios/RNDebug/Views/XTSuspendBall.h +34 -0
  256. package/ios/RNDebug/Views/XTSuspendBall.m +357 -0
  257. package/ios/XRNTemplate/AppDelegate.h +8 -0
  258. package/ios/XRNTemplate/AppDelegate.mm +168 -0
  259. package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/Contents.json +55 -0
  260. package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/icon120_120@2x.png +0 -0
  261. package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/icon180_180@3x.png +0 -0
  262. package/ios/XRNTemplate/Images.xcassets/Contents.json +6 -0
  263. package/ios/XRNTemplate/Images.xcassets/launch_icon.imageset/Contents.json +21 -0
  264. package/ios/XRNTemplate/Images.xcassets/launch_icon.imageset/launch_icon@2x.png +0 -0
  265. package/ios/XRNTemplate/Info.plist +82 -0
  266. package/ios/XRNTemplate/LaunchScreen.storyboard +43 -0
  267. package/ios/XRNTemplate/main.m +10 -0
  268. package/ios/XRNTemplate-Bridging-Header.h +29 -0
  269. package/ios/XRNTemplate.xcodeproj/project.pbxproj +1022 -0
  270. package/ios/XRNTemplate.xcodeproj/xcshareddata/xcschemes/XRNTemplate.xcscheme +88 -0
  271. package/ios/XRNTemplate.xcworkspace/contents.xcworkspacedata +10 -0
  272. package/ios/XRNTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  273. package/ios/XRNTemplateTests/Info.plist +24 -0
  274. package/ios/XRNTemplateTests/XRNTemplateTests.m +66 -0
  275. package/main-bundle/App.tsx +29 -0
  276. package/main-bundle/app.json +15 -0
  277. package/main-bundle/babel.config.js +4 -0
  278. package/main-bundle/index.ts +3 -0
  279. package/main-bundle/metro.config.js +21 -0
  280. package/main-bundle/package.json +35 -0
  281. package/main-bundle/router.ts +18 -0
  282. package/main-bundle/tsconfig.json +26 -0
  283. package/main-bundle/xrn.config.ts +13 -0
  284. package/main-bundle/yarn.lock +13622 -0
  285. package/package.json +16 -0
  286. package/react-native.config.js +36 -0
  287. package/sub-bundle/App.tsx +23 -0
  288. package/sub-bundle/app.json +15 -0
  289. package/sub-bundle/babel.config.js +4 -0
  290. package/sub-bundle/index.ts +3 -0
  291. package/sub-bundle/metro.config.js +21 -0
  292. package/sub-bundle/package.json +36 -0
  293. package/sub-bundle/router.ts +18 -0
  294. package/sub-bundle/tsconfig.json +26 -0
  295. package/sub-bundle/xrn.config.ts +13 -0
  296. package/sub-bundle/yarn.lock +13652 -0
  297. package/xrn-react-native-xcode.sh +172 -0
  298. package/xrn.config.json +46 -0
@@ -0,0 +1,1022 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* XRNTemplateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* XRNTemplateTests.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-XRNTemplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-XRNTemplate.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 69C704442E13D35200ADBBDB /* XTBundleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C7042F2E13D35200ADBBDB /* XTBundleViewController.m */; };
16
+ 69C704452E13D35200ADBBDB /* XTScanQRPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043E2E13D35200ADBBDB /* XTScanQRPlugin.swift */; };
17
+ 69C704462E13D35200ADBBDB /* XTSuspendBall.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C704402E13D35200ADBBDB /* XTSuspendBall.m */; };
18
+ 69C704482E13D35200ADBBDB /* XTMainBundleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C704312E13D35200ADBBDB /* XTMainBundleViewController.m */; };
19
+ 69C704492E13D35200ADBBDB /* XTPluginManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043B2E13D35200ADBBDB /* XTPluginManage.m */; };
20
+ 69C7044A2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043D2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift */; };
21
+ 69C7044B2E13D35200ADBBDB /* XTBundleViewControllerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C704382E13D35200ADBBDB /* XTBundleViewControllerFactory.m */; };
22
+ 69C7044C2E13D35200ADBBDB /* xtBundles.plist in Resources */ = {isa = PBXBuildFile; fileRef = 69C7042D2E13D35200ADBBDB /* xtBundles.plist */; };
23
+ 69E6DB042E4B1E35007F02A4 /* XTBundleProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */; };
24
+ 7699B88040F8A987B510C191 /* libPods-XRNTemplate-XRNTemplateTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-XRNTemplate-XRNTemplateTests.a */; };
25
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
26
+ /* End PBXBuildFile section */
27
+
28
+ /* Begin PBXContainerItemProxy section */
29
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
30
+ isa = PBXContainerItemProxy;
31
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
32
+ proxyType = 1;
33
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
34
+ remoteInfo = XRNTemplate;
35
+ };
36
+ /* End PBXContainerItemProxy section */
37
+
38
+ /* Begin PBXFileReference section */
39
+ 00E356EE1AD99517003FC87E /* XRNTemplateTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XRNTemplateTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
41
+ 00E356F21AD99517003FC87E /* XRNTemplateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XRNTemplateTests.m; sourceTree = "<group>"; };
42
+ 13B07F961A680F5B00A75B9A /* XRNTemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = XRNTemplate.app; sourceTree = BUILT_PRODUCTS_DIR; };
43
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = XRNTemplate/AppDelegate.h; sourceTree = "<group>"; tabWidth = 4; };
44
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = XRNTemplate/AppDelegate.mm; sourceTree = "<group>"; tabWidth = 4; };
45
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = XRNTemplate/Images.xcassets; sourceTree = "<group>"; };
46
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = XRNTemplate/Info.plist; sourceTree = "<group>"; };
47
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = XRNTemplate/main.m; sourceTree = "<group>"; };
48
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-XRNTemplate-XRNTemplateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-XRNTemplate-XRNTemplateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
49
+ 29593CFF2BA7796694DDE3DC /* Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig"; sourceTree = "<group>"; };
50
+ 3B4392A12AC88292D35C810B /* Pods-XRNTemplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.debug.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.debug.xcconfig"; sourceTree = "<group>"; };
51
+ 5709B34CF0A7D63546082F79 /* Pods-XRNTemplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.release.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.release.xcconfig"; sourceTree = "<group>"; };
52
+ 5B7EB9410499542E8C5724F5 /* Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig"; sourceTree = "<group>"; };
53
+ 5DCACB8F33CDC322A6C60F78 /* libPods-XRNTemplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-XRNTemplate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
54
+ 69C7042D2E13D35200ADBBDB /* xtBundles.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = xtBundles.plist; sourceTree = "<group>"; };
55
+ 69C7042E2E13D35200ADBBDB /* XTBundleViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTBundleViewController.h; sourceTree = "<group>"; };
56
+ 69C7042F2E13D35200ADBBDB /* XTBundleViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTBundleViewController.m; sourceTree = "<group>"; };
57
+ 69C704302E13D35200ADBBDB /* XTMainBundleViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTMainBundleViewController.h; sourceTree = "<group>"; };
58
+ 69C704312E13D35200ADBBDB /* XTMainBundleViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTMainBundleViewController.m; sourceTree = "<group>"; };
59
+ 69C704372E13D35200ADBBDB /* XTBundleViewControllerFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTBundleViewControllerFactory.h; sourceTree = "<group>"; };
60
+ 69C704382E13D35200ADBBDB /* XTBundleViewControllerFactory.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTBundleViewControllerFactory.m; sourceTree = "<group>"; };
61
+ 69C7043A2E13D35200ADBBDB /* XTPluginManage.h */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = XTPluginManage.h; sourceTree = "<group>"; tabWidth = 4; };
62
+ 69C7043B2E13D35200ADBBDB /* XTPluginManage.m */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.objc; path = XTPluginManage.m; sourceTree = "<group>"; tabWidth = 4; };
63
+ 69C7043D2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = XTLoadJSErrorTipPanel.swift; sourceTree = "<group>"; tabWidth = 4; };
64
+ 69C7043E2E13D35200ADBBDB /* XTScanQRPlugin.swift */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.swift; path = XTScanQRPlugin.swift; sourceTree = "<group>"; tabWidth = 4; };
65
+ 69C7043F2E13D35200ADBBDB /* XTSuspendBall.h */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = XTSuspendBall.h; sourceTree = "<group>"; tabWidth = 4; };
66
+ 69C704402E13D35200ADBBDB /* XTSuspendBall.m */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.objc; path = XTSuspendBall.m; sourceTree = "<group>"; tabWidth = 4; };
67
+ 69C7044F2E13D4A600ADBBDB /* XRNTemplate-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XRNTemplate-Bridging-Header.h"; sourceTree = "<group>"; };
68
+ 69E6DB022E4B1E35007F02A4 /* XTBundleProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTBundleProvider.h; sourceTree = "<group>"; };
69
+ 69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTBundleProvider.m; sourceTree = "<group>"; };
70
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = XRNTemplate/LaunchScreen.storyboard; sourceTree = "<group>"; };
71
+ 89C6BE57DB24E9ADA2F236DE /* Pods-XRNTemplate-XRNTemplateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.release.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.release.xcconfig"; sourceTree = "<group>"; };
72
+ AEC8BF6D3233DB54DD408BD1 /* Pods-XRNTemplate.staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.staging.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.staging.xcconfig"; sourceTree = "<group>"; };
73
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
74
+ /* End PBXFileReference section */
75
+
76
+ /* Begin PBXFrameworksBuildPhase section */
77
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
78
+ isa = PBXFrameworksBuildPhase;
79
+ buildActionMask = 2147483647;
80
+ files = (
81
+ 7699B88040F8A987B510C191 /* libPods-XRNTemplate-XRNTemplateTests.a in Frameworks */,
82
+ );
83
+ runOnlyForDeploymentPostprocessing = 0;
84
+ };
85
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
86
+ isa = PBXFrameworksBuildPhase;
87
+ buildActionMask = 2147483647;
88
+ files = (
89
+ 0C80B921A6F3F58F76C31292 /* libPods-XRNTemplate.a in Frameworks */,
90
+ );
91
+ runOnlyForDeploymentPostprocessing = 0;
92
+ };
93
+ /* End PBXFrameworksBuildPhase section */
94
+
95
+ /* Begin PBXGroup section */
96
+ 00E356EF1AD99517003FC87E /* XRNTemplateTests */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ 00E356F21AD99517003FC87E /* XRNTemplateTests.m */,
100
+ 00E356F01AD99517003FC87E /* Supporting Files */,
101
+ );
102
+ path = XRNTemplateTests;
103
+ sourceTree = "<group>";
104
+ };
105
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ 00E356F11AD99517003FC87E /* Info.plist */,
109
+ );
110
+ name = "Supporting Files";
111
+ sourceTree = "<group>";
112
+ };
113
+ 13B07FAE1A68108700A75B9A /* XRNTemplate */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ 69C704392E13D35200ADBBDB /* BundleEventCenter */,
117
+ 69C704422E13D35200ADBBDB /* RNDebug */,
118
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
119
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
120
+ 69C7044F2E13D4A600ADBBDB /* XRNTemplate-Bridging-Header.h */,
121
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
122
+ 13B07FB61A68108700A75B9A /* Info.plist */,
123
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
124
+ 13B07FB71A68108700A75B9A /* main.m */,
125
+ );
126
+ name = XRNTemplate;
127
+ sourceTree = "<group>";
128
+ };
129
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
130
+ isa = PBXGroup;
131
+ children = (
132
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
133
+ 5DCACB8F33CDC322A6C60F78 /* libPods-XRNTemplate.a */,
134
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-XRNTemplate-XRNTemplateTests.a */,
135
+ );
136
+ name = Frameworks;
137
+ sourceTree = "<group>";
138
+ };
139
+ 69C704322E13D35200ADBBDB /* bundleController */ = {
140
+ isa = PBXGroup;
141
+ children = (
142
+ 69C7042D2E13D35200ADBBDB /* xtBundles.plist */,
143
+ 69C7042E2E13D35200ADBBDB /* XTBundleViewController.h */,
144
+ 69C7042F2E13D35200ADBBDB /* XTBundleViewController.m */,
145
+ 69C704302E13D35200ADBBDB /* XTMainBundleViewController.h */,
146
+ 69C704312E13D35200ADBBDB /* XTMainBundleViewController.m */,
147
+ );
148
+ path = bundleController;
149
+ sourceTree = "<group>";
150
+ };
151
+ 69C704392E13D35200ADBBDB /* BundleEventCenter */ = {
152
+ isa = PBXGroup;
153
+ children = (
154
+ 69C704322E13D35200ADBBDB /* bundleController */,
155
+ 69E6DB022E4B1E35007F02A4 /* XTBundleProvider.h */,
156
+ 69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */,
157
+ 69C704372E13D35200ADBBDB /* XTBundleViewControllerFactory.h */,
158
+ 69C704382E13D35200ADBBDB /* XTBundleViewControllerFactory.m */,
159
+ );
160
+ path = BundleEventCenter;
161
+ sourceTree = "<group>";
162
+ };
163
+ 69C7043C2E13D35200ADBBDB /* DebugPlugin */ = {
164
+ isa = PBXGroup;
165
+ children = (
166
+ 69C7043A2E13D35200ADBBDB /* XTPluginManage.h */,
167
+ 69C7043B2E13D35200ADBBDB /* XTPluginManage.m */,
168
+ );
169
+ path = DebugPlugin;
170
+ sourceTree = "<group>";
171
+ };
172
+ 69C704412E13D35200ADBBDB /* Views */ = {
173
+ isa = PBXGroup;
174
+ children = (
175
+ 69C7043D2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift */,
176
+ 69C7043E2E13D35200ADBBDB /* XTScanQRPlugin.swift */,
177
+ 69C7043F2E13D35200ADBBDB /* XTSuspendBall.h */,
178
+ 69C704402E13D35200ADBBDB /* XTSuspendBall.m */,
179
+ );
180
+ path = Views;
181
+ sourceTree = "<group>";
182
+ };
183
+ 69C704422E13D35200ADBBDB /* RNDebug */ = {
184
+ isa = PBXGroup;
185
+ children = (
186
+ 69C7043C2E13D35200ADBBDB /* DebugPlugin */,
187
+ 69C704412E13D35200ADBBDB /* Views */,
188
+ );
189
+ path = RNDebug;
190
+ sourceTree = "<group>";
191
+ };
192
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
193
+ isa = PBXGroup;
194
+ children = (
195
+ );
196
+ name = Libraries;
197
+ sourceTree = "<group>";
198
+ };
199
+ 83CBB9F61A601CBA00E9B192 = {
200
+ isa = PBXGroup;
201
+ children = (
202
+ 13B07FAE1A68108700A75B9A /* XRNTemplate */,
203
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
204
+ 00E356EF1AD99517003FC87E /* XRNTemplateTests */,
205
+ 83CBBA001A601CBA00E9B192 /* Products */,
206
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
207
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
208
+ );
209
+ indentWidth = 2;
210
+ sourceTree = "<group>";
211
+ tabWidth = 2;
212
+ usesTabs = 0;
213
+ };
214
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
215
+ isa = PBXGroup;
216
+ children = (
217
+ 13B07F961A680F5B00A75B9A /* XRNTemplate.app */,
218
+ 00E356EE1AD99517003FC87E /* XRNTemplateTests.xctest */,
219
+ );
220
+ name = Products;
221
+ sourceTree = "<group>";
222
+ };
223
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
224
+ isa = PBXGroup;
225
+ children = (
226
+ 3B4392A12AC88292D35C810B /* Pods-XRNTemplate.debug.xcconfig */,
227
+ 5709B34CF0A7D63546082F79 /* Pods-XRNTemplate.release.xcconfig */,
228
+ 5B7EB9410499542E8C5724F5 /* Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig */,
229
+ 89C6BE57DB24E9ADA2F236DE /* Pods-XRNTemplate-XRNTemplateTests.release.xcconfig */,
230
+ AEC8BF6D3233DB54DD408BD1 /* Pods-XRNTemplate.staging.xcconfig */,
231
+ 29593CFF2BA7796694DDE3DC /* Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig */,
232
+ );
233
+ path = Pods;
234
+ sourceTree = "<group>";
235
+ };
236
+ /* End PBXGroup section */
237
+
238
+ /* Begin PBXNativeTarget section */
239
+ 00E356ED1AD99517003FC87E /* XRNTemplateTests */ = {
240
+ isa = PBXNativeTarget;
241
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "XRNTemplateTests" */;
242
+ buildPhases = (
243
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
244
+ 00E356EA1AD99517003FC87E /* Sources */,
245
+ 00E356EB1AD99517003FC87E /* Frameworks */,
246
+ 00E356EC1AD99517003FC87E /* Resources */,
247
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
248
+ A030AE395C175673FF8D4687 /* [CP] Embed Pods Frameworks */,
249
+ );
250
+ buildRules = (
251
+ );
252
+ dependencies = (
253
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
254
+ );
255
+ name = XRNTemplateTests;
256
+ productName = XRNTemplateTests;
257
+ productReference = 00E356EE1AD99517003FC87E /* XRNTemplateTests.xctest */;
258
+ productType = "com.apple.product-type.bundle.unit-test";
259
+ };
260
+ 13B07F861A680F5B00A75B9A /* XRNTemplate */ = {
261
+ isa = PBXNativeTarget;
262
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "XRNTemplate" */;
263
+ buildPhases = (
264
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
265
+ FD10A7F022414F080027D42C /* Start Packager */,
266
+ 13B07F871A680F5B00A75B9A /* Sources */,
267
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
268
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
269
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
270
+ 69C7044D2E13D3B600ADBBDB /* ShellScript */,
271
+ 69C7044E2E13D3E300ADBBDB /* XT Multi Bundle Copy */,
272
+ 9DC9EAF36B1667D793C66E87 /* [CP] Embed Pods Frameworks */,
273
+ );
274
+ buildRules = (
275
+ );
276
+ dependencies = (
277
+ );
278
+ name = XRNTemplate;
279
+ productName = XRNTemplate;
280
+ productReference = 13B07F961A680F5B00A75B9A /* XRNTemplate.app */;
281
+ productType = "com.apple.product-type.application";
282
+ };
283
+ /* End PBXNativeTarget section */
284
+
285
+ /* Begin PBXProject section */
286
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
287
+ isa = PBXProject;
288
+ attributes = {
289
+ LastUpgradeCheck = 1210;
290
+ TargetAttributes = {
291
+ 00E356ED1AD99517003FC87E = {
292
+ CreatedOnToolsVersion = 6.2;
293
+ TestTargetID = 13B07F861A680F5B00A75B9A;
294
+ };
295
+ 13B07F861A680F5B00A75B9A = {
296
+ LastSwiftMigration = 1120;
297
+ };
298
+ };
299
+ };
300
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "XRNTemplate" */;
301
+ compatibilityVersion = "Xcode 12.0";
302
+ developmentRegion = en;
303
+ hasScannedForEncodings = 0;
304
+ knownRegions = (
305
+ en,
306
+ Base,
307
+ );
308
+ mainGroup = 83CBB9F61A601CBA00E9B192;
309
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
310
+ projectDirPath = "";
311
+ projectRoot = "";
312
+ targets = (
313
+ 13B07F861A680F5B00A75B9A /* XRNTemplate */,
314
+ 00E356ED1AD99517003FC87E /* XRNTemplateTests */,
315
+ );
316
+ };
317
+ /* End PBXProject section */
318
+
319
+ /* Begin PBXResourcesBuildPhase section */
320
+ 00E356EC1AD99517003FC87E /* Resources */ = {
321
+ isa = PBXResourcesBuildPhase;
322
+ buildActionMask = 2147483647;
323
+ files = (
324
+ );
325
+ runOnlyForDeploymentPostprocessing = 0;
326
+ };
327
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
328
+ isa = PBXResourcesBuildPhase;
329
+ buildActionMask = 2147483647;
330
+ files = (
331
+ 69C7044C2E13D35200ADBBDB /* xtBundles.plist in Resources */,
332
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
333
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
334
+ );
335
+ runOnlyForDeploymentPostprocessing = 0;
336
+ };
337
+ /* End PBXResourcesBuildPhase section */
338
+
339
+ /* Begin PBXShellScriptBuildPhase section */
340
+ 69C7044D2E13D3B600ADBBDB /* ShellScript */ = {
341
+ isa = PBXShellScriptBuildPhase;
342
+ buildActionMask = 2147483647;
343
+ files = (
344
+ );
345
+ inputFileListPaths = (
346
+ );
347
+ inputPaths = (
348
+ );
349
+ outputFileListPaths = (
350
+ );
351
+ outputPaths = (
352
+ );
353
+ runOnlyForDeploymentPostprocessing = 0;
354
+ shellPath = /bin/sh;
355
+ shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nbuildNumber=$(date +%Y%m%d%H%M%S)\n/usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"$INFOPLIST_FILE\"\n";
356
+ };
357
+ 69C7044E2E13D3E300ADBBDB /* XT Multi Bundle Copy */ = {
358
+ isa = PBXShellScriptBuildPhase;
359
+ buildActionMask = 2147483647;
360
+ files = (
361
+ );
362
+ inputFileListPaths = (
363
+ );
364
+ inputPaths = (
365
+ );
366
+ name = "XT Multi Bundle Copy";
367
+ outputFileListPaths = (
368
+ );
369
+ outputPaths = (
370
+ );
371
+ runOnlyForDeploymentPostprocessing = 0;
372
+ shellPath = /bin/sh;
373
+ shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n../xrn-react-native-xcode.sh\n";
374
+ };
375
+ 9DC9EAF36B1667D793C66E87 /* [CP] Embed Pods Frameworks */ = {
376
+ isa = PBXShellScriptBuildPhase;
377
+ buildActionMask = 2147483647;
378
+ files = (
379
+ );
380
+ inputFileListPaths = (
381
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-frameworks-${CONFIGURATION}-input-files.xcfilelist",
382
+ );
383
+ name = "[CP] Embed Pods Frameworks";
384
+ outputFileListPaths = (
385
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-frameworks-${CONFIGURATION}-output-files.xcfilelist",
386
+ );
387
+ runOnlyForDeploymentPostprocessing = 0;
388
+ shellPath = /bin/sh;
389
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-frameworks.sh\"\n";
390
+ showEnvVarsInLog = 0;
391
+ };
392
+ A030AE395C175673FF8D4687 /* [CP] Embed Pods Frameworks */ = {
393
+ isa = PBXShellScriptBuildPhase;
394
+ buildActionMask = 2147483647;
395
+ files = (
396
+ );
397
+ inputFileListPaths = (
398
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
399
+ );
400
+ name = "[CP] Embed Pods Frameworks";
401
+ outputFileListPaths = (
402
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
403
+ );
404
+ runOnlyForDeploymentPostprocessing = 0;
405
+ shellPath = /bin/sh;
406
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-frameworks.sh\"\n";
407
+ showEnvVarsInLog = 0;
408
+ };
409
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
410
+ isa = PBXShellScriptBuildPhase;
411
+ buildActionMask = 2147483647;
412
+ files = (
413
+ );
414
+ inputFileListPaths = (
415
+ );
416
+ inputPaths = (
417
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
418
+ "${PODS_ROOT}/Manifest.lock",
419
+ );
420
+ name = "[CP] Check Pods Manifest.lock";
421
+ outputFileListPaths = (
422
+ );
423
+ outputPaths = (
424
+ "$(DERIVED_FILE_DIR)/Pods-XRNTemplate-XRNTemplateTests-checkManifestLockResult.txt",
425
+ );
426
+ runOnlyForDeploymentPostprocessing = 0;
427
+ shellPath = /bin/sh;
428
+ 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";
429
+ showEnvVarsInLog = 0;
430
+ };
431
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
432
+ isa = PBXShellScriptBuildPhase;
433
+ buildActionMask = 2147483647;
434
+ files = (
435
+ );
436
+ inputFileListPaths = (
437
+ );
438
+ inputPaths = (
439
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
440
+ "${PODS_ROOT}/Manifest.lock",
441
+ );
442
+ name = "[CP] Check Pods Manifest.lock";
443
+ outputFileListPaths = (
444
+ );
445
+ outputPaths = (
446
+ "$(DERIVED_FILE_DIR)/Pods-XRNTemplate-checkManifestLockResult.txt",
447
+ );
448
+ runOnlyForDeploymentPostprocessing = 0;
449
+ shellPath = /bin/sh;
450
+ 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";
451
+ showEnvVarsInLog = 0;
452
+ };
453
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
454
+ isa = PBXShellScriptBuildPhase;
455
+ buildActionMask = 2147483647;
456
+ files = (
457
+ );
458
+ inputFileListPaths = (
459
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-resources-${CONFIGURATION}-input-files.xcfilelist",
460
+ );
461
+ name = "[CP] Copy Pods Resources";
462
+ outputFileListPaths = (
463
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-resources-${CONFIGURATION}-output-files.xcfilelist",
464
+ );
465
+ runOnlyForDeploymentPostprocessing = 0;
466
+ shellPath = /bin/sh;
467
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate-resources.sh\"\n";
468
+ showEnvVarsInLog = 0;
469
+ };
470
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
471
+ isa = PBXShellScriptBuildPhase;
472
+ buildActionMask = 2147483647;
473
+ files = (
474
+ );
475
+ inputFileListPaths = (
476
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-resources-${CONFIGURATION}-input-files.xcfilelist",
477
+ );
478
+ name = "[CP] Copy Pods Resources";
479
+ outputFileListPaths = (
480
+ "${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-resources-${CONFIGURATION}-output-files.xcfilelist",
481
+ );
482
+ runOnlyForDeploymentPostprocessing = 0;
483
+ shellPath = /bin/sh;
484
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests-resources.sh\"\n";
485
+ showEnvVarsInLog = 0;
486
+ };
487
+ FD10A7F022414F080027D42C /* Start Packager */ = {
488
+ isa = PBXShellScriptBuildPhase;
489
+ buildActionMask = 2147483647;
490
+ files = (
491
+ );
492
+ inputFileListPaths = (
493
+ );
494
+ inputPaths = (
495
+ );
496
+ name = "Start Packager";
497
+ outputFileListPaths = (
498
+ );
499
+ outputPaths = (
500
+ );
501
+ runOnlyForDeploymentPostprocessing = 0;
502
+ shellPath = /bin/sh;
503
+ shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
504
+ showEnvVarsInLog = 0;
505
+ };
506
+ /* End PBXShellScriptBuildPhase section */
507
+
508
+ /* Begin PBXSourcesBuildPhase section */
509
+ 00E356EA1AD99517003FC87E /* Sources */ = {
510
+ isa = PBXSourcesBuildPhase;
511
+ buildActionMask = 2147483647;
512
+ files = (
513
+ 00E356F31AD99517003FC87E /* XRNTemplateTests.m in Sources */,
514
+ );
515
+ runOnlyForDeploymentPostprocessing = 0;
516
+ };
517
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
518
+ isa = PBXSourcesBuildPhase;
519
+ buildActionMask = 2147483647;
520
+ files = (
521
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
522
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
523
+ 69C704442E13D35200ADBBDB /* XTBundleViewController.m in Sources */,
524
+ 69C704452E13D35200ADBBDB /* XTScanQRPlugin.swift in Sources */,
525
+ 69C704462E13D35200ADBBDB /* XTSuspendBall.m in Sources */,
526
+ 69E6DB042E4B1E35007F02A4 /* XTBundleProvider.m in Sources */,
527
+ 69C704482E13D35200ADBBDB /* XTMainBundleViewController.m in Sources */,
528
+ 69C704492E13D35200ADBBDB /* XTPluginManage.m in Sources */,
529
+ 69C7044A2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift in Sources */,
530
+ 69C7044B2E13D35200ADBBDB /* XTBundleViewControllerFactory.m in Sources */,
531
+ );
532
+ runOnlyForDeploymentPostprocessing = 0;
533
+ };
534
+ /* End PBXSourcesBuildPhase section */
535
+
536
+ /* Begin PBXTargetDependency section */
537
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
538
+ isa = PBXTargetDependency;
539
+ target = 13B07F861A680F5B00A75B9A /* XRNTemplate */;
540
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
541
+ };
542
+ /* End PBXTargetDependency section */
543
+
544
+ /* Begin XCBuildConfiguration section */
545
+ 00E356F61AD99517003FC87E /* Debug */ = {
546
+ isa = XCBuildConfiguration;
547
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig */;
548
+ buildSettings = {
549
+ BUNDLE_LOADER = "$(TEST_HOST)";
550
+ GCC_PREPROCESSOR_DEFINITIONS = (
551
+ "DEBUG=1",
552
+ "$(inherited)",
553
+ );
554
+ INFOPLIST_FILE = XRNTemplateTests/Info.plist;
555
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
556
+ LD_RUNPATH_SEARCH_PATHS = (
557
+ "$(inherited)",
558
+ "@executable_path/Frameworks",
559
+ "@loader_path/Frameworks",
560
+ );
561
+ OTHER_LDFLAGS = (
562
+ "-ObjC",
563
+ "-lc++",
564
+ "$(inherited)",
565
+ );
566
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
567
+ PRODUCT_NAME = "$(TARGET_NAME)";
568
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XRNTemplate.app/XRNTemplate";
569
+ };
570
+ name = Debug;
571
+ };
572
+ 00E356F71AD99517003FC87E /* Release */ = {
573
+ isa = XCBuildConfiguration;
574
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-XRNTemplate-XRNTemplateTests.release.xcconfig */;
575
+ buildSettings = {
576
+ BUNDLE_LOADER = "$(TEST_HOST)";
577
+ COPY_PHASE_STRIP = NO;
578
+ INFOPLIST_FILE = XRNTemplateTests/Info.plist;
579
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
580
+ LD_RUNPATH_SEARCH_PATHS = (
581
+ "$(inherited)",
582
+ "@executable_path/Frameworks",
583
+ "@loader_path/Frameworks",
584
+ );
585
+ OTHER_LDFLAGS = (
586
+ "-ObjC",
587
+ "-lc++",
588
+ "$(inherited)",
589
+ );
590
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
591
+ PRODUCT_NAME = "$(TARGET_NAME)";
592
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XRNTemplate.app/XRNTemplate";
593
+ };
594
+ name = Release;
595
+ };
596
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
597
+ isa = XCBuildConfiguration;
598
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-XRNTemplate.debug.xcconfig */;
599
+ buildSettings = {
600
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
601
+ CLANG_ENABLE_MODULES = YES;
602
+ CURRENT_PROJECT_VERSION = 202507161400;
603
+ DEVELOPMENT_TEAM = 227UGFU7Z8;
604
+ DISPLAY_NAME = XRNTemplate;
605
+ ENABLE_BITCODE = NO;
606
+ INFOPLIST_FILE = XRNTemplate/Info.plist;
607
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
608
+ LD_RUNPATH_SEARCH_PATHS = (
609
+ "$(inherited)",
610
+ "@executable_path/Frameworks",
611
+ );
612
+ MAIN_CODEPUSH_KEY = Wa768zPtAS76urjwlXixtMks3OmX4ksvOXqog;
613
+ MARKETING_VERSION = 0.0.1;
614
+ OTHER_LDFLAGS = (
615
+ "$(inherited)",
616
+ "-ObjC",
617
+ "-lc++",
618
+ );
619
+ PRODUCT_BUNDLE_IDENTIFIER = com.xdeal.ai;
620
+ PRODUCT_NAME = XRNTemplate;
621
+ SWIFT_OBJC_BRIDGING_HEADER = "XRNTemplate-Bridging-Header.h";
622
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
623
+ SWIFT_VERSION = 5.0;
624
+ VERSIONING_SYSTEM = "apple-generic";
625
+ };
626
+ name = Debug;
627
+ };
628
+ 13B07F951A680F5B00A75B9A /* Release */ = {
629
+ isa = XCBuildConfiguration;
630
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-XRNTemplate.release.xcconfig */;
631
+ buildSettings = {
632
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
633
+ CLANG_ENABLE_MODULES = YES;
634
+ CURRENT_PROJECT_VERSION = 202507161400;
635
+ DEVELOPMENT_TEAM = 227UGFU7Z8;
636
+ DISPLAY_NAME = XRNTemplate;
637
+ INFOPLIST_FILE = XRNTemplate/Info.plist;
638
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
639
+ LD_RUNPATH_SEARCH_PATHS = (
640
+ "$(inherited)",
641
+ "@executable_path/Frameworks",
642
+ );
643
+ MAIN_CODEPUSH_KEY = qdiApIQbQTev9ZdPAStl5KTAD5Pa4ksvOXqog;
644
+ MARKETING_VERSION = 0.0.1;
645
+ OTHER_LDFLAGS = (
646
+ "$(inherited)",
647
+ "-ObjC",
648
+ "-lc++",
649
+ );
650
+ PRODUCT_BUNDLE_IDENTIFIER = com.xdeal.ai;
651
+ PRODUCT_NAME = XRNTemplate;
652
+ SWIFT_OBJC_BRIDGING_HEADER = "XRNTemplate-Bridging-Header.h";
653
+ SWIFT_VERSION = 5.0;
654
+ VERSIONING_SYSTEM = "apple-generic";
655
+ };
656
+ name = Release;
657
+ };
658
+ 69C7042A2E13D0C900ADBBDB /* Staging */ = {
659
+ isa = XCBuildConfiguration;
660
+ buildSettings = {
661
+ ALWAYS_SEARCH_USER_PATHS = NO;
662
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
663
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
664
+ CLANG_CXX_LIBRARY = "libc++";
665
+ CLANG_ENABLE_MODULES = YES;
666
+ CLANG_ENABLE_OBJC_ARC = YES;
667
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
668
+ CLANG_WARN_BOOL_CONVERSION = YES;
669
+ CLANG_WARN_COMMA = YES;
670
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
671
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
672
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
673
+ CLANG_WARN_EMPTY_BODY = YES;
674
+ CLANG_WARN_ENUM_CONVERSION = YES;
675
+ CLANG_WARN_INFINITE_RECURSION = YES;
676
+ CLANG_WARN_INT_CONVERSION = YES;
677
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
678
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
679
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
680
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
681
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
682
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
683
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
684
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
685
+ CLANG_WARN_UNREACHABLE_CODE = YES;
686
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
687
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
688
+ COPY_PHASE_STRIP = YES;
689
+ ENABLE_NS_ASSERTIONS = NO;
690
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
691
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
692
+ GCC_C_LANGUAGE_STANDARD = gnu99;
693
+ GCC_NO_COMMON_BLOCKS = YES;
694
+ GCC_PREPROCESSOR_DEFINITIONS = (
695
+ "$(inherited)",
696
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
697
+ );
698
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
699
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
700
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
701
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
702
+ GCC_WARN_UNUSED_FUNCTION = YES;
703
+ GCC_WARN_UNUSED_VARIABLE = YES;
704
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
705
+ LD_RUNPATH_SEARCH_PATHS = (
706
+ /usr/lib/swift,
707
+ "$(inherited)",
708
+ );
709
+ LIBRARY_SEARCH_PATHS = (
710
+ "\"$(SDKROOT)/usr/lib/swift\"",
711
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
712
+ "\"$(inherited)\"",
713
+ );
714
+ MTL_ENABLE_DEBUG_INFO = NO;
715
+ OTHER_CFLAGS = "$(inherited)";
716
+ OTHER_CPLUSPLUSFLAGS = (
717
+ "$(OTHER_CFLAGS)",
718
+ "-DFOLLY_NO_CONFIG",
719
+ "-DFOLLY_MOBILE=1",
720
+ "-DFOLLY_USE_LIBCPP=1",
721
+ );
722
+ OTHER_LDFLAGS = (
723
+ "$(inherited)",
724
+ "-Wl",
725
+ "-ld_classic",
726
+ "-Wl",
727
+ "-ld_classic",
728
+ "-Wl",
729
+ "-ld_classic",
730
+ "-Wl",
731
+ "-ld_classic",
732
+ "-Wl",
733
+ "-ld_classic",
734
+ "-Wl",
735
+ "-ld_classic",
736
+ "-Wl",
737
+ "-ld_classic",
738
+ "-Wl",
739
+ "-ld_classic",
740
+ "-Wl -ld_classic ",
741
+ );
742
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
743
+ SDKROOT = iphoneos;
744
+ VALIDATE_PRODUCT = YES;
745
+ };
746
+ name = Staging;
747
+ };
748
+ 69C7042B2E13D0C900ADBBDB /* Staging */ = {
749
+ isa = XCBuildConfiguration;
750
+ baseConfigurationReference = AEC8BF6D3233DB54DD408BD1 /* Pods-XRNTemplate.staging.xcconfig */;
751
+ buildSettings = {
752
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
753
+ CLANG_ENABLE_MODULES = YES;
754
+ CURRENT_PROJECT_VERSION = 202507161400;
755
+ DEVELOPMENT_TEAM = 227UGFU7Z8;
756
+ DISPLAY_NAME = XRNTemplate;
757
+ INFOPLIST_FILE = XRNTemplate/Info.plist;
758
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
759
+ LD_RUNPATH_SEARCH_PATHS = (
760
+ "$(inherited)",
761
+ "@executable_path/Frameworks",
762
+ );
763
+ MAIN_CODEPUSH_KEY = tu2jDrodHqi85PCbuJhBJX1nd3y14ksvOXqog;
764
+ MARKETING_VERSION = 0.0.1;
765
+ OTHER_LDFLAGS = (
766
+ "$(inherited)",
767
+ "-ObjC",
768
+ "-lc++",
769
+ );
770
+ PRODUCT_BUNDLE_IDENTIFIER = com.xdeal.ai;
771
+ PRODUCT_NAME = XRNTemplate;
772
+ SWIFT_OBJC_BRIDGING_HEADER = "XRNTemplate-Bridging-Header.h";
773
+ SWIFT_VERSION = 5.0;
774
+ VERSIONING_SYSTEM = "apple-generic";
775
+ };
776
+ name = Staging;
777
+ };
778
+ 69C7042C2E13D0C900ADBBDB /* Staging */ = {
779
+ isa = XCBuildConfiguration;
780
+ baseConfigurationReference = 29593CFF2BA7796694DDE3DC /* Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig */;
781
+ buildSettings = {
782
+ BUNDLE_LOADER = "$(TEST_HOST)";
783
+ COPY_PHASE_STRIP = NO;
784
+ INFOPLIST_FILE = XRNTemplateTests/Info.plist;
785
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
786
+ LD_RUNPATH_SEARCH_PATHS = (
787
+ "$(inherited)",
788
+ "@executable_path/Frameworks",
789
+ "@loader_path/Frameworks",
790
+ );
791
+ OTHER_LDFLAGS = (
792
+ "-ObjC",
793
+ "-lc++",
794
+ "$(inherited)",
795
+ );
796
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
797
+ PRODUCT_NAME = "$(TARGET_NAME)";
798
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XRNTemplate.app/XRNTemplate";
799
+ };
800
+ name = Staging;
801
+ };
802
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
803
+ isa = XCBuildConfiguration;
804
+ buildSettings = {
805
+ ALWAYS_SEARCH_USER_PATHS = NO;
806
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
807
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
808
+ CLANG_CXX_LIBRARY = "libc++";
809
+ CLANG_ENABLE_MODULES = YES;
810
+ CLANG_ENABLE_OBJC_ARC = YES;
811
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
812
+ CLANG_WARN_BOOL_CONVERSION = YES;
813
+ CLANG_WARN_COMMA = YES;
814
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
815
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
816
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
817
+ CLANG_WARN_EMPTY_BODY = YES;
818
+ CLANG_WARN_ENUM_CONVERSION = YES;
819
+ CLANG_WARN_INFINITE_RECURSION = YES;
820
+ CLANG_WARN_INT_CONVERSION = YES;
821
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
822
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
823
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
824
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
825
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
826
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
827
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
828
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
829
+ CLANG_WARN_UNREACHABLE_CODE = YES;
830
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
831
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
832
+ COPY_PHASE_STRIP = NO;
833
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
834
+ ENABLE_TESTABILITY = YES;
835
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
836
+ GCC_C_LANGUAGE_STANDARD = gnu99;
837
+ GCC_DYNAMIC_NO_PIC = NO;
838
+ GCC_NO_COMMON_BLOCKS = YES;
839
+ GCC_OPTIMIZATION_LEVEL = 0;
840
+ GCC_PREPROCESSOR_DEFINITIONS = (
841
+ "DEBUG=1",
842
+ "$(inherited)",
843
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
844
+ );
845
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
846
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
847
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
848
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
849
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
850
+ GCC_WARN_UNUSED_FUNCTION = YES;
851
+ GCC_WARN_UNUSED_VARIABLE = YES;
852
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
853
+ LD_RUNPATH_SEARCH_PATHS = (
854
+ /usr/lib/swift,
855
+ "$(inherited)",
856
+ );
857
+ LIBRARY_SEARCH_PATHS = (
858
+ "\"$(SDKROOT)/usr/lib/swift\"",
859
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
860
+ "\"$(inherited)\"",
861
+ );
862
+ MTL_ENABLE_DEBUG_INFO = YES;
863
+ ONLY_ACTIVE_ARCH = YES;
864
+ OTHER_CFLAGS = "$(inherited)";
865
+ OTHER_CPLUSPLUSFLAGS = (
866
+ "$(OTHER_CFLAGS)",
867
+ "-DFOLLY_NO_CONFIG",
868
+ "-DFOLLY_MOBILE=1",
869
+ "-DFOLLY_USE_LIBCPP=1",
870
+ );
871
+ OTHER_LDFLAGS = (
872
+ "$(inherited)",
873
+ "-Wl",
874
+ "-ld_classic",
875
+ "-Wl",
876
+ "-ld_classic",
877
+ "-Wl",
878
+ "-ld_classic",
879
+ "-Wl",
880
+ "-ld_classic",
881
+ "-Wl",
882
+ "-ld_classic",
883
+ "-Wl",
884
+ "-ld_classic",
885
+ "-Wl",
886
+ "-ld_classic",
887
+ "-Wl",
888
+ "-ld_classic",
889
+ "-Wl -ld_classic ",
890
+ );
891
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
892
+ SDKROOT = iphoneos;
893
+ };
894
+ name = Debug;
895
+ };
896
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
897
+ isa = XCBuildConfiguration;
898
+ buildSettings = {
899
+ ALWAYS_SEARCH_USER_PATHS = NO;
900
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
901
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
902
+ CLANG_CXX_LIBRARY = "libc++";
903
+ CLANG_ENABLE_MODULES = YES;
904
+ CLANG_ENABLE_OBJC_ARC = YES;
905
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
906
+ CLANG_WARN_BOOL_CONVERSION = YES;
907
+ CLANG_WARN_COMMA = YES;
908
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
909
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
910
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
911
+ CLANG_WARN_EMPTY_BODY = YES;
912
+ CLANG_WARN_ENUM_CONVERSION = YES;
913
+ CLANG_WARN_INFINITE_RECURSION = YES;
914
+ CLANG_WARN_INT_CONVERSION = YES;
915
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
916
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
917
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
918
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
919
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
920
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
921
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
922
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
923
+ CLANG_WARN_UNREACHABLE_CODE = YES;
924
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
925
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
926
+ COPY_PHASE_STRIP = YES;
927
+ ENABLE_NS_ASSERTIONS = NO;
928
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
929
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
930
+ GCC_C_LANGUAGE_STANDARD = gnu99;
931
+ GCC_NO_COMMON_BLOCKS = YES;
932
+ GCC_PREPROCESSOR_DEFINITIONS = (
933
+ "$(inherited)",
934
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
935
+ );
936
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
937
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
938
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
939
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
940
+ GCC_WARN_UNUSED_FUNCTION = YES;
941
+ GCC_WARN_UNUSED_VARIABLE = YES;
942
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
943
+ LD_RUNPATH_SEARCH_PATHS = (
944
+ /usr/lib/swift,
945
+ "$(inherited)",
946
+ );
947
+ LIBRARY_SEARCH_PATHS = (
948
+ "\"$(SDKROOT)/usr/lib/swift\"",
949
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
950
+ "\"$(inherited)\"",
951
+ );
952
+ MTL_ENABLE_DEBUG_INFO = NO;
953
+ OTHER_CFLAGS = "$(inherited)";
954
+ OTHER_CPLUSPLUSFLAGS = (
955
+ "$(OTHER_CFLAGS)",
956
+ "-DFOLLY_NO_CONFIG",
957
+ "-DFOLLY_MOBILE=1",
958
+ "-DFOLLY_USE_LIBCPP=1",
959
+ );
960
+ OTHER_LDFLAGS = (
961
+ "$(inherited)",
962
+ "-Wl",
963
+ "-ld_classic",
964
+ "-Wl",
965
+ "-ld_classic",
966
+ "-Wl",
967
+ "-ld_classic",
968
+ "-Wl",
969
+ "-ld_classic",
970
+ "-Wl",
971
+ "-ld_classic",
972
+ "-Wl",
973
+ "-ld_classic",
974
+ "-Wl",
975
+ "-ld_classic",
976
+ "-Wl",
977
+ "-ld_classic",
978
+ "-Wl -ld_classic ",
979
+ );
980
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
981
+ SDKROOT = iphoneos;
982
+ VALIDATE_PRODUCT = YES;
983
+ };
984
+ name = Release;
985
+ };
986
+ /* End XCBuildConfiguration section */
987
+
988
+ /* Begin XCConfigurationList section */
989
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "XRNTemplateTests" */ = {
990
+ isa = XCConfigurationList;
991
+ buildConfigurations = (
992
+ 00E356F61AD99517003FC87E /* Debug */,
993
+ 00E356F71AD99517003FC87E /* Release */,
994
+ 69C7042C2E13D0C900ADBBDB /* Staging */,
995
+ );
996
+ defaultConfigurationIsVisible = 0;
997
+ defaultConfigurationName = Release;
998
+ };
999
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "XRNTemplate" */ = {
1000
+ isa = XCConfigurationList;
1001
+ buildConfigurations = (
1002
+ 13B07F941A680F5B00A75B9A /* Debug */,
1003
+ 13B07F951A680F5B00A75B9A /* Release */,
1004
+ 69C7042B2E13D0C900ADBBDB /* Staging */,
1005
+ );
1006
+ defaultConfigurationIsVisible = 0;
1007
+ defaultConfigurationName = Release;
1008
+ };
1009
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "XRNTemplate" */ = {
1010
+ isa = XCConfigurationList;
1011
+ buildConfigurations = (
1012
+ 83CBBA201A601CBA00E9B192 /* Debug */,
1013
+ 83CBBA211A601CBA00E9B192 /* Release */,
1014
+ 69C7042A2E13D0C900ADBBDB /* Staging */,
1015
+ );
1016
+ defaultConfigurationIsVisible = 0;
1017
+ defaultConfigurationName = Release;
1018
+ };
1019
+ /* End XCConfigurationList section */
1020
+ };
1021
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1022
+ }