@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.
- package/$package.json +51 -0
- package/.env +6 -0
- package/.env.prod +6 -0
- package/LICENSE +202 -0
- package/android/app/build.gradle +176 -0
- package/android/app/build_defs.bzl +19 -0
- package/android/app/debug.keystore +0 -0
- package/android/app/proguard-rules.pro +10 -0
- package/android/app/src/debug/AndroidManifest.xml +13 -0
- package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +73 -0
- package/android/app/src/main/AndroidManifest.xml +46 -0
- package/android/app/src/main/assets/index.main-bundle.bundle +178940 -0
- package/android/app/src/main/assets/index.sub-bundle.bundle +178928 -0
- package/android/app/src/main/assets/xrn-manifest.json +1 -0
- package/android/app/src/main/java/com/xrn/template/MainActivity.kt +52 -0
- package/android/app/src/main/java/com/xrn/template/MainApplication.kt +91 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XBundleInfoHook.kt +9 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +6 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +81 -0
- package/android/app/src/main/java/com/xrn/template/navigation/MainClazzFactory.kt +14 -0
- package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +56 -0
- package/android/app/src/main/java/com/xrn/template/navigation/XMainActivity.kt +4 -0
- package/android/app/src/main/java/com/xrn/template/utils/DevEntryUtil.kt +29 -0
- package/android/app/src/main/java/com/xrn/template/utils/LifecycleAwareRunnable.kt +37 -0
- package/android/app/src/main/jni/CMakeLists.txt +7 -0
- package/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
- package/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
- package/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
- package/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
- package/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
- package/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
- package/android/app/src/main/jni/OnLoad.cpp +11 -0
- package/android/app/src/main/res/drawable/bg_debug_entry.xml +15 -0
- package/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_alerttriangle.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_chevronleft.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_chevronright.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_close.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_logbox_ui_logboximages_loader.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backiconmask.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_images_fail_icon.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_images_success_icon.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_close.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_filter.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_more.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_search.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_devtools_assets_network_share.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/node_modules_xrn_navigation_assets_backicon.png +0 -0
- package/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_copy_icon.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_app_info.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_app_start_time.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_file.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_fps.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_h5.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_health.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_kadun.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_net.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_qingchu.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_scan.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_self.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_setting.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_view_check.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_view_level.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_doraemon_viewmetrics.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/node_modules_xrn_devtools_assets_images_rebackwhiteicon.png +0 -0
- package/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png +0 -0
- package/android/app/src/main/res/layout/activity_splash.xml +16 -0
- package/android/app/src/main/res/layout/layout_rn_dev_float.xml +18 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/android/app/src/main/res/raw/bundle_config.json +23 -0
- package/android/app/src/main/res/raw/launch_screen.json +1 -0
- package/android/app/src/main/res/values/strings.xml +3 -0
- package/android/app/src/main/res/values/styles.xml +9 -0
- package/android/build.gradle +83 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradle.properties +63 -0
- package/android/gradlew +234 -0
- package/android/gradlew.bat +89 -0
- package/android/settings.gradle +18 -0
- package/harmony/.clang-format +64 -0
- package/harmony/.clang-tidy +1 -0
- package/harmony/.clangd +13 -0
- package/harmony/AppScope/app.json5 +10 -0
- package/harmony/AppScope/resources/base/element/string.json +8 -0
- package/harmony/AppScope/resources/base/media/app_icon.png +0 -0
- package/harmony/XRNTemplate-dev.cer +52 -0
- package/harmony/XRNTemplate-devDebug.p7b +0 -0
- package/harmony/XRNTemplate.p12 +0 -0
- package/harmony/build-profile.json5 +91 -0
- package/harmony/code-linter.json5 +20 -0
- package/harmony/entry/build-profile.json5 +33 -0
- package/harmony/entry/hvigorfile.ts +6 -0
- package/harmony/entry/obfuscation-rules.txt +23 -0
- package/harmony/entry/oh-package-lock.json5 +486 -0
- package/harmony/entry/oh-package.json5 +59 -0
- package/harmony/entry/src/main/cpp/CMakeLists.txt +72 -0
- package/harmony/entry/src/main/cpp/PackageProvider.cpp +51 -0
- package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +25 -0
- package/harmony/entry/src/main/cpp/generated/BundleNavigation.h +21 -0
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +21 -0
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +21 -0
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/ImageResizer.cpp +21 -0
- package/harmony/entry/src/main/cpp/generated/ImageResizer.h +21 -0
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +22 -0
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +21 -0
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +31 -0
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +28 -0
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +26 -0
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNCWebViewComponentDescriptor.h +43 -0
- package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +120 -0
- package/harmony/entry/src/main/cpp/generated/RNCWebViewModule.cpp +22 -0
- package/harmony/entry/src/main/cpp/generated/RNCWebViewModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +137 -0
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +24 -0
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +43 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +38 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +28 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +43 -0
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +31 -0
- package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +31 -0
- package/harmony/entry/src/main/cpp/generated/RNLocalize.h +21 -0
- package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +191 -0
- package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +48 -0
- package/harmony/entry/src/main/cpp/generated/RTNCodePush.h +21 -0
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +51 -0
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNAppUtilsModule.cpp +29 -0
- package/harmony/entry/src/main/cpp/generated/XRNAppUtilsModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +27 -0
- package/harmony/entry/src/main/cpp/generated/XRNBundleModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +32 -0
- package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +22 -0
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNLoadingModule.cpp +25 -0
- package/harmony/entry/src/main/cpp/generated/XRNLoadingModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNMultiBundleModule.cpp +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNMultiBundleModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNNativeStorageModule.cpp +26 -0
- package/harmony/entry/src/main/cpp/generated/XRNNativeStorageModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +23 -0
- package/harmony/entry/src/main/cpp/generated/XRNNavigation.h +21 -0
- package/harmony/entry/src/main/cpp/generated/XRNToastModule.cpp +22 -0
- package/harmony/entry/src/main/cpp/generated/XRNToastModule.h +21 -0
- package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/BaseReactNativeOhTplAsyncStoragePackage.h +68 -0
- package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/turbo_modules/RNCAsyncStorage.cpp +26 -0
- package/harmony/entry/src/main/cpp/generated/_react_native_oh_tpl_async_storage/RNOH/generated/turbo_modules/RNCAsyncStorage.h +21 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/harmony/entry/src/main/ets/BundleHelper.ets +198 -0
- package/harmony/entry/src/main/ets/Constants.ets +2 -0
- package/harmony/entry/src/main/ets/MainAbilityStage.ets +60 -0
- package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +57 -0
- package/harmony/entry/src/main/ets/entrybackupability/EntryBackupAbility.ets +12 -0
- package/harmony/entry/src/main/ets/lottie/launch_screen.json +1 -0
- package/harmony/entry/src/main/ets/module/devtools/components/FloatBall.ets +359 -0
- package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +8 -0
- package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +8 -0
- package/harmony/entry/src/main/ets/navDestination/Splash.ets +79 -0
- package/harmony/entry/src/main/ets/pages/Index.ets +66 -0
- package/harmony/entry/src/main/module.json5 +68 -0
- package/harmony/entry/src/main/resources/base/element/color.json +12 -0
- package/harmony/entry/src/main/resources/base/element/string.json +19 -0
- package/harmony/entry/src/main/resources/base/media/background.png +0 -0
- package/harmony/entry/src/main/resources/base/media/foreground.png +0 -0
- package/harmony/entry/src/main/resources/base/media/ic_back.png +0 -0
- package/harmony/entry/src/main/resources/base/media/layered_image.json +7 -0
- package/harmony/entry/src/main/resources/base/media/startIcon.png +0 -0
- package/harmony/entry/src/main/resources/base/profile/backup_config.json +3 -0
- package/harmony/entry/src/main/resources/base/profile/main_pages.json +5 -0
- package/harmony/entry/src/main/resources/en_US/element/string.json +16 -0
- package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +23 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/AntDesign.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Entypo.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/EvilIcons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Feather.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Brands.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Regular.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome5_Solid.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Brands.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Regular.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/FontAwesome6_Solid.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Fontisto.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Foundation.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Ionicons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/MaterialCommunityIcons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/MaterialIcons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Octicons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/SimpleLineIcons.ttf +0 -0
- package/harmony/entry/src/main/resources/rawfile/fonts/Zocial.ttf +0 -0
- package/harmony/entry/src/main/resources/zh_CN/element/string.json +16 -0
- package/harmony/entry/src/mock/mock-config.json5 +2 -0
- package/harmony/entry/src/ohosTest/ets/test/Ability.test.ets +35 -0
- package/harmony/entry/src/ohosTest/ets/test/List.test.ets +5 -0
- package/harmony/entry/src/ohosTest/module.json5 +13 -0
- package/harmony/entry/src/test/List.test.ets +5 -0
- package/harmony/entry/src/test/LocalUnit.test.ets +33 -0
- package/harmony/hvigor/hvigor-config.json5 +22 -0
- package/harmony/hvigorfile.ts +6 -0
- package/harmony/material/ac/6a282c38039b44b2949441a85986c35d +1 -0
- package/harmony/material/ce/b2a765b7b925475797f45ae55c8d3ad3 +0 -0
- package/harmony/material/fd/0/9cbed212f275489b874de30a02692f59 +1 -0
- package/harmony/material/fd/1/dc8ea45ef44142d09bca7eeacdc5ecac +1 -0
- package/harmony/material/fd/2/d34888210a5846829d745f65295f90b7 +1 -0
- package/harmony/oh-package-lock.json5 +27 -0
- package/harmony/oh-package.json5 +17 -0
- package/ios/.xcode.env +11 -0
- package/ios/BundleEventCenter/XTBundleProvider.h +17 -0
- package/ios/BundleEventCenter/XTBundleProvider.m +129 -0
- package/ios/BundleEventCenter/XTBundleViewControllerFactory.h +18 -0
- package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +39 -0
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.h +16 -0
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +35 -0
- package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.h +16 -0
- package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.m +41 -0
- package/ios/BundleEventCenter/bundleController/xtBundles.plist +14 -0
- package/ios/Podfile +221 -0
- package/ios/Podfile.lock +955 -0
- package/ios/RNDebug/DebugPlugin/XTPluginManage.h +24 -0
- package/ios/RNDebug/DebugPlugin/XTPluginManage.m +93 -0
- package/ios/RNDebug/Views/XTLoadJSErrorTipPanel.swift +231 -0
- package/ios/RNDebug/Views/XTScanQRPlugin.swift +122 -0
- package/ios/RNDebug/Views/XTSuspendBall.h +34 -0
- package/ios/RNDebug/Views/XTSuspendBall.m +357 -0
- package/ios/XRNTemplate/AppDelegate.h +8 -0
- package/ios/XRNTemplate/AppDelegate.mm +168 -0
- package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/Contents.json +55 -0
- package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/icon120_120@2x.png +0 -0
- package/ios/XRNTemplate/Images.xcassets/AppIcon.appiconset/icon180_180@3x.png +0 -0
- package/ios/XRNTemplate/Images.xcassets/Contents.json +6 -0
- package/ios/XRNTemplate/Images.xcassets/launch_icon.imageset/Contents.json +21 -0
- package/ios/XRNTemplate/Images.xcassets/launch_icon.imageset/launch_icon@2x.png +0 -0
- package/ios/XRNTemplate/Info.plist +82 -0
- package/ios/XRNTemplate/LaunchScreen.storyboard +43 -0
- package/ios/XRNTemplate/main.m +10 -0
- package/ios/XRNTemplate-Bridging-Header.h +29 -0
- package/ios/XRNTemplate.xcodeproj/project.pbxproj +1022 -0
- package/ios/XRNTemplate.xcodeproj/xcshareddata/xcschemes/XRNTemplate.xcscheme +88 -0
- package/ios/XRNTemplate.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/XRNTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/XRNTemplateTests/Info.plist +24 -0
- package/ios/XRNTemplateTests/XRNTemplateTests.m +66 -0
- package/main-bundle/App.tsx +29 -0
- package/main-bundle/app.json +15 -0
- package/main-bundle/babel.config.js +4 -0
- package/main-bundle/index.ts +3 -0
- package/main-bundle/metro.config.js +21 -0
- package/main-bundle/package.json +35 -0
- package/main-bundle/router.ts +18 -0
- package/main-bundle/tsconfig.json +26 -0
- package/main-bundle/xrn.config.ts +13 -0
- package/main-bundle/yarn.lock +13622 -0
- package/package.json +16 -0
- package/react-native.config.js +36 -0
- package/sub-bundle/App.tsx +23 -0
- package/sub-bundle/app.json +15 -0
- package/sub-bundle/babel.config.js +4 -0
- package/sub-bundle/index.ts +3 -0
- package/sub-bundle/metro.config.js +21 -0
- package/sub-bundle/package.json +36 -0
- package/sub-bundle/router.ts +18 -0
- package/sub-bundle/tsconfig.json +26 -0
- package/sub-bundle/xrn.config.ts +13 -0
- package/sub-bundle/yarn.lock +13652 -0
- package/xrn-react-native-xcode.sh +172 -0
- package/xrn.config.json +46 -0
package/ios/Podfile.lock
ADDED
|
@@ -0,0 +1,955 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- Adjust (4.38.0):
|
|
3
|
+
- Adjust/Core (= 4.38.0)
|
|
4
|
+
- Adjust/Core (4.38.0)
|
|
5
|
+
- Base64 (1.1.2)
|
|
6
|
+
- boost (1.76.0)
|
|
7
|
+
- CocoaAsyncSocket (7.6.5)
|
|
8
|
+
- CodePush (0.0.1-alpha.1):
|
|
9
|
+
- Base64 (~> 1.1)
|
|
10
|
+
- JWT (= 3.0.0-beta.12)
|
|
11
|
+
- React
|
|
12
|
+
- SSZipArchive (= 2.2.2)
|
|
13
|
+
- DoubleConversion (1.1.6)
|
|
14
|
+
- FBLazyVector (0.72.5)
|
|
15
|
+
- FBReactNativeSpec (0.72.5):
|
|
16
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
17
|
+
- RCTRequired (= 0.72.5)
|
|
18
|
+
- RCTTypeSafety (= 0.72.5)
|
|
19
|
+
- React-Core (= 0.72.5)
|
|
20
|
+
- React-jsi (= 0.72.5)
|
|
21
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
22
|
+
- Flipper (0.182.0):
|
|
23
|
+
- Flipper-Folly (~> 2.6)
|
|
24
|
+
- Flipper-Boost-iOSX (1.76.0.1.11)
|
|
25
|
+
- Flipper-DoubleConversion (3.2.0.1)
|
|
26
|
+
- Flipper-Fmt (7.1.7)
|
|
27
|
+
- Flipper-Folly (2.6.10):
|
|
28
|
+
- Flipper-Boost-iOSX
|
|
29
|
+
- Flipper-DoubleConversion
|
|
30
|
+
- Flipper-Fmt (= 7.1.7)
|
|
31
|
+
- Flipper-Glog
|
|
32
|
+
- libevent (~> 2.1.12)
|
|
33
|
+
- OpenSSL-Universal (= 1.1.1100)
|
|
34
|
+
- Flipper-Glog (0.5.0.5)
|
|
35
|
+
- Flipper-PeerTalk (0.0.4)
|
|
36
|
+
- FlipperKit (0.182.0):
|
|
37
|
+
- FlipperKit/Core (= 0.182.0)
|
|
38
|
+
- FlipperKit/Core (0.182.0):
|
|
39
|
+
- Flipper (~> 0.182.0)
|
|
40
|
+
- FlipperKit/CppBridge
|
|
41
|
+
- FlipperKit/FBCxxFollyDynamicConvert
|
|
42
|
+
- FlipperKit/FBDefines
|
|
43
|
+
- FlipperKit/FKPortForwarding
|
|
44
|
+
- SocketRocket (~> 0.6.0)
|
|
45
|
+
- FlipperKit/CppBridge (0.182.0):
|
|
46
|
+
- Flipper (~> 0.182.0)
|
|
47
|
+
- FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
|
|
48
|
+
- Flipper-Folly (~> 2.6)
|
|
49
|
+
- FlipperKit/FBDefines (0.182.0)
|
|
50
|
+
- FlipperKit/FKPortForwarding (0.182.0):
|
|
51
|
+
- CocoaAsyncSocket (~> 7.6)
|
|
52
|
+
- Flipper-PeerTalk (~> 0.0.4)
|
|
53
|
+
- FlipperKit/FlipperKitHighlightOverlay (0.182.0)
|
|
54
|
+
- FlipperKit/FlipperKitLayoutHelpers (0.182.0):
|
|
55
|
+
- FlipperKit/Core
|
|
56
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
57
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
58
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
|
|
59
|
+
- FlipperKit/Core
|
|
60
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
61
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
62
|
+
- YogaKit (~> 1.18)
|
|
63
|
+
- FlipperKit/FlipperKitLayoutPlugin (0.182.0):
|
|
64
|
+
- FlipperKit/Core
|
|
65
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
66
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
67
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
|
68
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
69
|
+
- YogaKit (~> 1.18)
|
|
70
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
|
|
71
|
+
- FlipperKit/FlipperKitNetworkPlugin (0.182.0):
|
|
72
|
+
- FlipperKit/Core
|
|
73
|
+
- FlipperKit/FlipperKitReactPlugin (0.182.0):
|
|
74
|
+
- FlipperKit/Core
|
|
75
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
|
|
76
|
+
- FlipperKit/Core
|
|
77
|
+
- FlipperKit/SKIOSNetworkPlugin (0.182.0):
|
|
78
|
+
- FlipperKit/Core
|
|
79
|
+
- FlipperKit/FlipperKitNetworkPlugin
|
|
80
|
+
- fmt (6.2.1)
|
|
81
|
+
- glog (0.3.5)
|
|
82
|
+
- JRSwizzle (2.0.0)
|
|
83
|
+
- JWT (3.0.0-beta.12):
|
|
84
|
+
- Base64 (~> 1.1.2)
|
|
85
|
+
- libavif/core (0.11.1)
|
|
86
|
+
- libavif/libdav1d (0.11.1):
|
|
87
|
+
- libavif/core
|
|
88
|
+
- libdav1d (>= 0.6.0)
|
|
89
|
+
- libdav1d (1.2.0)
|
|
90
|
+
- libevent (2.1.12)
|
|
91
|
+
- libwebp (1.5.0):
|
|
92
|
+
- libwebp/demux (= 1.5.0)
|
|
93
|
+
- libwebp/mux (= 1.5.0)
|
|
94
|
+
- libwebp/sharpyuv (= 1.5.0)
|
|
95
|
+
- libwebp/webp (= 1.5.0)
|
|
96
|
+
- libwebp/demux (1.5.0):
|
|
97
|
+
- libwebp/webp
|
|
98
|
+
- libwebp/mux (1.5.0):
|
|
99
|
+
- libwebp/demux
|
|
100
|
+
- libwebp/sharpyuv (1.5.0)
|
|
101
|
+
- libwebp/webp (1.5.0):
|
|
102
|
+
- libwebp/sharpyuv
|
|
103
|
+
- lottie-ios (4.3.4)
|
|
104
|
+
- MBProgressHUD (1.2.0)
|
|
105
|
+
- OpenSSL-Universal (1.1.1100)
|
|
106
|
+
- RCT-Folly (2021.07.22.00):
|
|
107
|
+
- boost
|
|
108
|
+
- DoubleConversion
|
|
109
|
+
- fmt (~> 6.2.1)
|
|
110
|
+
- glog
|
|
111
|
+
- RCT-Folly/Default (= 2021.07.22.00)
|
|
112
|
+
- RCT-Folly/Default (2021.07.22.00):
|
|
113
|
+
- boost
|
|
114
|
+
- DoubleConversion
|
|
115
|
+
- fmt (~> 6.2.1)
|
|
116
|
+
- glog
|
|
117
|
+
- RCTRequired (0.72.5)
|
|
118
|
+
- RCTTypeSafety (0.72.5):
|
|
119
|
+
- FBLazyVector (= 0.72.5)
|
|
120
|
+
- RCTRequired (= 0.72.5)
|
|
121
|
+
- React-Core (= 0.72.5)
|
|
122
|
+
- React (0.72.5):
|
|
123
|
+
- React-Core (= 0.72.5)
|
|
124
|
+
- React-Core/DevSupport (= 0.72.5)
|
|
125
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
126
|
+
- React-RCTActionSheet (= 0.72.5)
|
|
127
|
+
- React-RCTAnimation (= 0.72.5)
|
|
128
|
+
- React-RCTBlob (= 0.72.5)
|
|
129
|
+
- React-RCTImage (= 0.72.5)
|
|
130
|
+
- React-RCTLinking (= 0.72.5)
|
|
131
|
+
- React-RCTNetwork (= 0.72.5)
|
|
132
|
+
- React-RCTSettings (= 0.72.5)
|
|
133
|
+
- React-RCTText (= 0.72.5)
|
|
134
|
+
- React-RCTVibration (= 0.72.5)
|
|
135
|
+
- React-callinvoker (0.72.5)
|
|
136
|
+
- React-Codegen (0.72.5):
|
|
137
|
+
- DoubleConversion
|
|
138
|
+
- FBReactNativeSpec
|
|
139
|
+
- glog
|
|
140
|
+
- RCT-Folly
|
|
141
|
+
- RCTRequired
|
|
142
|
+
- RCTTypeSafety
|
|
143
|
+
- React-Core
|
|
144
|
+
- React-jsc
|
|
145
|
+
- React-jsi
|
|
146
|
+
- React-jsiexecutor
|
|
147
|
+
- React-NativeModulesApple
|
|
148
|
+
- React-rncore
|
|
149
|
+
- ReactCommon/turbomodule/bridging
|
|
150
|
+
- ReactCommon/turbomodule/core
|
|
151
|
+
- React-Core (0.72.5):
|
|
152
|
+
- glog
|
|
153
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
154
|
+
- React-Core/Default (= 0.72.5)
|
|
155
|
+
- React-cxxreact
|
|
156
|
+
- React-jsc
|
|
157
|
+
- React-jsi
|
|
158
|
+
- React-jsiexecutor
|
|
159
|
+
- React-perflogger
|
|
160
|
+
- React-runtimeexecutor
|
|
161
|
+
- React-utils
|
|
162
|
+
- SocketRocket (= 0.6.1)
|
|
163
|
+
- Yoga
|
|
164
|
+
- React-Core/CoreModulesHeaders (0.72.5):
|
|
165
|
+
- glog
|
|
166
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
167
|
+
- React-Core/Default
|
|
168
|
+
- React-cxxreact
|
|
169
|
+
- React-jsc
|
|
170
|
+
- React-jsi
|
|
171
|
+
- React-jsiexecutor
|
|
172
|
+
- React-perflogger
|
|
173
|
+
- React-runtimeexecutor
|
|
174
|
+
- React-utils
|
|
175
|
+
- SocketRocket (= 0.6.1)
|
|
176
|
+
- Yoga
|
|
177
|
+
- React-Core/Default (0.72.5):
|
|
178
|
+
- glog
|
|
179
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
180
|
+
- React-cxxreact
|
|
181
|
+
- React-jsc
|
|
182
|
+
- React-jsi
|
|
183
|
+
- React-jsiexecutor
|
|
184
|
+
- React-perflogger
|
|
185
|
+
- React-runtimeexecutor
|
|
186
|
+
- React-utils
|
|
187
|
+
- SocketRocket (= 0.6.1)
|
|
188
|
+
- Yoga
|
|
189
|
+
- React-Core/DevSupport (0.72.5):
|
|
190
|
+
- glog
|
|
191
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
192
|
+
- React-Core/Default (= 0.72.5)
|
|
193
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
194
|
+
- React-cxxreact
|
|
195
|
+
- React-jsc
|
|
196
|
+
- React-jsi
|
|
197
|
+
- React-jsiexecutor
|
|
198
|
+
- React-jsinspector (= 0.72.5)
|
|
199
|
+
- React-perflogger
|
|
200
|
+
- React-runtimeexecutor
|
|
201
|
+
- React-utils
|
|
202
|
+
- SocketRocket (= 0.6.1)
|
|
203
|
+
- Yoga
|
|
204
|
+
- React-Core/RCTActionSheetHeaders (0.72.5):
|
|
205
|
+
- glog
|
|
206
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
207
|
+
- React-Core/Default
|
|
208
|
+
- React-cxxreact
|
|
209
|
+
- React-jsc
|
|
210
|
+
- React-jsi
|
|
211
|
+
- React-jsiexecutor
|
|
212
|
+
- React-perflogger
|
|
213
|
+
- React-runtimeexecutor
|
|
214
|
+
- React-utils
|
|
215
|
+
- SocketRocket (= 0.6.1)
|
|
216
|
+
- Yoga
|
|
217
|
+
- React-Core/RCTAnimationHeaders (0.72.5):
|
|
218
|
+
- glog
|
|
219
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
220
|
+
- React-Core/Default
|
|
221
|
+
- React-cxxreact
|
|
222
|
+
- React-jsc
|
|
223
|
+
- React-jsi
|
|
224
|
+
- React-jsiexecutor
|
|
225
|
+
- React-perflogger
|
|
226
|
+
- React-runtimeexecutor
|
|
227
|
+
- React-utils
|
|
228
|
+
- SocketRocket (= 0.6.1)
|
|
229
|
+
- Yoga
|
|
230
|
+
- React-Core/RCTBlobHeaders (0.72.5):
|
|
231
|
+
- glog
|
|
232
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
233
|
+
- React-Core/Default
|
|
234
|
+
- React-cxxreact
|
|
235
|
+
- React-jsc
|
|
236
|
+
- React-jsi
|
|
237
|
+
- React-jsiexecutor
|
|
238
|
+
- React-perflogger
|
|
239
|
+
- React-runtimeexecutor
|
|
240
|
+
- React-utils
|
|
241
|
+
- SocketRocket (= 0.6.1)
|
|
242
|
+
- Yoga
|
|
243
|
+
- React-Core/RCTImageHeaders (0.72.5):
|
|
244
|
+
- glog
|
|
245
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
246
|
+
- React-Core/Default
|
|
247
|
+
- React-cxxreact
|
|
248
|
+
- React-jsc
|
|
249
|
+
- React-jsi
|
|
250
|
+
- React-jsiexecutor
|
|
251
|
+
- React-perflogger
|
|
252
|
+
- React-runtimeexecutor
|
|
253
|
+
- React-utils
|
|
254
|
+
- SocketRocket (= 0.6.1)
|
|
255
|
+
- Yoga
|
|
256
|
+
- React-Core/RCTLinkingHeaders (0.72.5):
|
|
257
|
+
- glog
|
|
258
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
259
|
+
- React-Core/Default
|
|
260
|
+
- React-cxxreact
|
|
261
|
+
- React-jsc
|
|
262
|
+
- React-jsi
|
|
263
|
+
- React-jsiexecutor
|
|
264
|
+
- React-perflogger
|
|
265
|
+
- React-runtimeexecutor
|
|
266
|
+
- React-utils
|
|
267
|
+
- SocketRocket (= 0.6.1)
|
|
268
|
+
- Yoga
|
|
269
|
+
- React-Core/RCTNetworkHeaders (0.72.5):
|
|
270
|
+
- glog
|
|
271
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
272
|
+
- React-Core/Default
|
|
273
|
+
- React-cxxreact
|
|
274
|
+
- React-jsc
|
|
275
|
+
- React-jsi
|
|
276
|
+
- React-jsiexecutor
|
|
277
|
+
- React-perflogger
|
|
278
|
+
- React-runtimeexecutor
|
|
279
|
+
- React-utils
|
|
280
|
+
- SocketRocket (= 0.6.1)
|
|
281
|
+
- Yoga
|
|
282
|
+
- React-Core/RCTSettingsHeaders (0.72.5):
|
|
283
|
+
- glog
|
|
284
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
285
|
+
- React-Core/Default
|
|
286
|
+
- React-cxxreact
|
|
287
|
+
- React-jsc
|
|
288
|
+
- React-jsi
|
|
289
|
+
- React-jsiexecutor
|
|
290
|
+
- React-perflogger
|
|
291
|
+
- React-runtimeexecutor
|
|
292
|
+
- React-utils
|
|
293
|
+
- SocketRocket (= 0.6.1)
|
|
294
|
+
- Yoga
|
|
295
|
+
- React-Core/RCTTextHeaders (0.72.5):
|
|
296
|
+
- glog
|
|
297
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
298
|
+
- React-Core/Default
|
|
299
|
+
- React-cxxreact
|
|
300
|
+
- React-jsc
|
|
301
|
+
- React-jsi
|
|
302
|
+
- React-jsiexecutor
|
|
303
|
+
- React-perflogger
|
|
304
|
+
- React-runtimeexecutor
|
|
305
|
+
- React-utils
|
|
306
|
+
- SocketRocket (= 0.6.1)
|
|
307
|
+
- Yoga
|
|
308
|
+
- React-Core/RCTVibrationHeaders (0.72.5):
|
|
309
|
+
- glog
|
|
310
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
311
|
+
- React-Core/Default
|
|
312
|
+
- React-cxxreact
|
|
313
|
+
- React-jsc
|
|
314
|
+
- React-jsi
|
|
315
|
+
- React-jsiexecutor
|
|
316
|
+
- React-perflogger
|
|
317
|
+
- React-runtimeexecutor
|
|
318
|
+
- React-utils
|
|
319
|
+
- SocketRocket (= 0.6.1)
|
|
320
|
+
- Yoga
|
|
321
|
+
- React-Core/RCTWebSocket (0.72.5):
|
|
322
|
+
- glog
|
|
323
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
324
|
+
- React-Core/Default (= 0.72.5)
|
|
325
|
+
- React-cxxreact
|
|
326
|
+
- React-jsc
|
|
327
|
+
- React-jsi
|
|
328
|
+
- React-jsiexecutor
|
|
329
|
+
- React-perflogger
|
|
330
|
+
- React-runtimeexecutor
|
|
331
|
+
- React-utils
|
|
332
|
+
- SocketRocket (= 0.6.1)
|
|
333
|
+
- Yoga
|
|
334
|
+
- React-CoreModules (0.72.5):
|
|
335
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
336
|
+
- RCTTypeSafety (= 0.72.5)
|
|
337
|
+
- React-Codegen (= 0.72.5)
|
|
338
|
+
- React-Core/CoreModulesHeaders (= 0.72.5)
|
|
339
|
+
- React-jsi (= 0.72.5)
|
|
340
|
+
- React-RCTBlob
|
|
341
|
+
- React-RCTImage (= 0.72.5)
|
|
342
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
343
|
+
- SocketRocket (= 0.6.1)
|
|
344
|
+
- React-cxxreact (0.72.5):
|
|
345
|
+
- boost (= 1.76.0)
|
|
346
|
+
- DoubleConversion
|
|
347
|
+
- glog
|
|
348
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
349
|
+
- React-callinvoker (= 0.72.5)
|
|
350
|
+
- React-debug (= 0.72.5)
|
|
351
|
+
- React-jsi (= 0.72.5)
|
|
352
|
+
- React-jsinspector (= 0.72.5)
|
|
353
|
+
- React-logger (= 0.72.5)
|
|
354
|
+
- React-perflogger (= 0.72.5)
|
|
355
|
+
- React-runtimeexecutor (= 0.72.5)
|
|
356
|
+
- React-debug (0.72.5)
|
|
357
|
+
- React-jsc (0.72.5):
|
|
358
|
+
- React-jsc/Fabric (= 0.72.5)
|
|
359
|
+
- React-jsi (= 0.72.5)
|
|
360
|
+
- React-jsc/Fabric (0.72.5):
|
|
361
|
+
- React-jsi (= 0.72.5)
|
|
362
|
+
- React-jsi (0.72.5):
|
|
363
|
+
- boost (= 1.76.0)
|
|
364
|
+
- DoubleConversion
|
|
365
|
+
- glog
|
|
366
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
367
|
+
- React-jsiexecutor (0.72.5):
|
|
368
|
+
- DoubleConversion
|
|
369
|
+
- glog
|
|
370
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
371
|
+
- React-cxxreact (= 0.72.5)
|
|
372
|
+
- React-jsi (= 0.72.5)
|
|
373
|
+
- React-perflogger (= 0.72.5)
|
|
374
|
+
- React-jsinspector (0.72.5)
|
|
375
|
+
- React-logger (0.72.5):
|
|
376
|
+
- glog
|
|
377
|
+
- react-native-adjust (4.38.0):
|
|
378
|
+
- Adjust (= 4.38.0)
|
|
379
|
+
- React-Core
|
|
380
|
+
- react-native-config (1.5.3):
|
|
381
|
+
- react-native-config/App (= 1.5.3)
|
|
382
|
+
- react-native-config/App (1.5.3):
|
|
383
|
+
- React-Core
|
|
384
|
+
- react-native-cookies (6.2.1-0.0.8):
|
|
385
|
+
- React-Core
|
|
386
|
+
- react-native-netinfo (11.3.2):
|
|
387
|
+
- React-Core
|
|
388
|
+
- react-native-safe-area-context (4.7.4):
|
|
389
|
+
- React-Core
|
|
390
|
+
- react-native-xrn-app-utils (0.0.2-beta.5):
|
|
391
|
+
- MBProgressHUD (= 1.2.0)
|
|
392
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
393
|
+
- React-Core
|
|
394
|
+
- react-native-xrn-asset-loader (0.0.2-beta.3):
|
|
395
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
396
|
+
- React-Core
|
|
397
|
+
- react-native-xrn-bundle (0.0.2-beta.16):
|
|
398
|
+
- CodePush
|
|
399
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
400
|
+
- React-Core
|
|
401
|
+
- react-native-config (= 1.5.3)
|
|
402
|
+
- react-native-xrn-multi-bundle
|
|
403
|
+
- react-native-xrn-navigation
|
|
404
|
+
- react-native-xrn-debug-tools (0.0.2-beta.5):
|
|
405
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
406
|
+
- React-Core
|
|
407
|
+
- react-native-xrn-navigation
|
|
408
|
+
- react-native-xrn-image (0.0.2-beta.3):
|
|
409
|
+
- libavif/libdav1d (= 0.11.1)
|
|
410
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
411
|
+
- React-Core
|
|
412
|
+
- SDWebImage (= 5.20.0)
|
|
413
|
+
- SDWebImageAVIFCoder (= 0.11.0)
|
|
414
|
+
- SDWebImageSVGCoder (= 1.7.0)
|
|
415
|
+
- SDWebImageWebPCoder (= 0.8.4)
|
|
416
|
+
- react-native-xrn-loading (0.0.2-beta.2):
|
|
417
|
+
- lottie-ios (~> 4.3.3)
|
|
418
|
+
- MBProgressHUD (= 1.2.0)
|
|
419
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
420
|
+
- React-Core
|
|
421
|
+
- react-native-xrn-modules-core (0.0.2-beta.1):
|
|
422
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
423
|
+
- React-Core
|
|
424
|
+
- react-native-xrn-multi-bundle (0.0.2-beta.7):
|
|
425
|
+
- JRSwizzle
|
|
426
|
+
- React
|
|
427
|
+
- YYCache (= 1.0.4)
|
|
428
|
+
- react-native-xrn-native-storage (0.0.2-beta.2):
|
|
429
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
430
|
+
- React-Core
|
|
431
|
+
- react-native-xrn-navigation (0.0.2-beta.13):
|
|
432
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
433
|
+
- React-Core
|
|
434
|
+
- react-native-xrn-multi-bundle
|
|
435
|
+
- React-NativeModulesApple (0.72.5):
|
|
436
|
+
- React-callinvoker
|
|
437
|
+
- React-Core
|
|
438
|
+
- React-cxxreact
|
|
439
|
+
- React-jsi
|
|
440
|
+
- React-runtimeexecutor
|
|
441
|
+
- ReactCommon/turbomodule/bridging
|
|
442
|
+
- ReactCommon/turbomodule/core
|
|
443
|
+
- React-perflogger (0.72.5)
|
|
444
|
+
- React-RCTActionSheet (0.72.5):
|
|
445
|
+
- React-Core/RCTActionSheetHeaders (= 0.72.5)
|
|
446
|
+
- React-RCTAnimation (0.72.5):
|
|
447
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
448
|
+
- RCTTypeSafety (= 0.72.5)
|
|
449
|
+
- React-Codegen (= 0.72.5)
|
|
450
|
+
- React-Core/RCTAnimationHeaders (= 0.72.5)
|
|
451
|
+
- React-jsi (= 0.72.5)
|
|
452
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
453
|
+
- React-RCTAppDelegate (0.72.5):
|
|
454
|
+
- RCT-Folly
|
|
455
|
+
- RCTRequired
|
|
456
|
+
- RCTTypeSafety
|
|
457
|
+
- React-Core
|
|
458
|
+
- React-CoreModules
|
|
459
|
+
- React-jsc
|
|
460
|
+
- React-NativeModulesApple
|
|
461
|
+
- React-RCTImage
|
|
462
|
+
- React-RCTNetwork
|
|
463
|
+
- React-runtimescheduler
|
|
464
|
+
- ReactCommon/turbomodule/core
|
|
465
|
+
- React-RCTBlob (0.72.5):
|
|
466
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
467
|
+
- React-Codegen (= 0.72.5)
|
|
468
|
+
- React-Core/RCTBlobHeaders (= 0.72.5)
|
|
469
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
470
|
+
- React-jsi (= 0.72.5)
|
|
471
|
+
- React-RCTNetwork (= 0.72.5)
|
|
472
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
473
|
+
- React-RCTImage (0.72.5):
|
|
474
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
475
|
+
- RCTTypeSafety (= 0.72.5)
|
|
476
|
+
- React-Codegen (= 0.72.5)
|
|
477
|
+
- React-Core/RCTImageHeaders (= 0.72.5)
|
|
478
|
+
- React-jsi (= 0.72.5)
|
|
479
|
+
- React-RCTNetwork (= 0.72.5)
|
|
480
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
481
|
+
- React-RCTLinking (0.72.5):
|
|
482
|
+
- React-Codegen (= 0.72.5)
|
|
483
|
+
- React-Core/RCTLinkingHeaders (= 0.72.5)
|
|
484
|
+
- React-jsi (= 0.72.5)
|
|
485
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
486
|
+
- React-RCTNetwork (0.72.5):
|
|
487
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
488
|
+
- RCTTypeSafety (= 0.72.5)
|
|
489
|
+
- React-Codegen (= 0.72.5)
|
|
490
|
+
- React-Core/RCTNetworkHeaders (= 0.72.5)
|
|
491
|
+
- React-jsi (= 0.72.5)
|
|
492
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
493
|
+
- React-RCTSettings (0.72.5):
|
|
494
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
495
|
+
- RCTTypeSafety (= 0.72.5)
|
|
496
|
+
- React-Codegen (= 0.72.5)
|
|
497
|
+
- React-Core/RCTSettingsHeaders (= 0.72.5)
|
|
498
|
+
- React-jsi (= 0.72.5)
|
|
499
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
500
|
+
- React-RCTText (0.72.5):
|
|
501
|
+
- React-Core/RCTTextHeaders (= 0.72.5)
|
|
502
|
+
- React-RCTVibration (0.72.5):
|
|
503
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
504
|
+
- React-Codegen (= 0.72.5)
|
|
505
|
+
- React-Core/RCTVibrationHeaders (= 0.72.5)
|
|
506
|
+
- React-jsi (= 0.72.5)
|
|
507
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
508
|
+
- React-rncore (0.72.5)
|
|
509
|
+
- React-runtimeexecutor (0.72.5):
|
|
510
|
+
- React-jsi (= 0.72.5)
|
|
511
|
+
- React-runtimescheduler (0.72.5):
|
|
512
|
+
- glog
|
|
513
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
514
|
+
- React-callinvoker
|
|
515
|
+
- React-debug
|
|
516
|
+
- React-jsi
|
|
517
|
+
- React-runtimeexecutor
|
|
518
|
+
- React-utils (0.72.5):
|
|
519
|
+
- glog
|
|
520
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
521
|
+
- React-debug
|
|
522
|
+
- ReactCommon/turbomodule/bridging (0.72.5):
|
|
523
|
+
- DoubleConversion
|
|
524
|
+
- glog
|
|
525
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
526
|
+
- React-callinvoker (= 0.72.5)
|
|
527
|
+
- React-cxxreact (= 0.72.5)
|
|
528
|
+
- React-jsi (= 0.72.5)
|
|
529
|
+
- React-logger (= 0.72.5)
|
|
530
|
+
- React-perflogger (= 0.72.5)
|
|
531
|
+
- ReactCommon/turbomodule/core (0.72.5):
|
|
532
|
+
- DoubleConversion
|
|
533
|
+
- glog
|
|
534
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
535
|
+
- React-callinvoker (= 0.72.5)
|
|
536
|
+
- React-cxxreact (= 0.72.5)
|
|
537
|
+
- React-jsi (= 0.72.5)
|
|
538
|
+
- React-logger (= 0.72.5)
|
|
539
|
+
- React-perflogger (= 0.72.5)
|
|
540
|
+
- RNCAsyncStorage (1.21.0):
|
|
541
|
+
- React-Core
|
|
542
|
+
- RNCClipboard (1.13.2):
|
|
543
|
+
- React-Core
|
|
544
|
+
- RNCPicker (2.6.1):
|
|
545
|
+
- React-Core
|
|
546
|
+
- RNDeviceInfo (11.1.0):
|
|
547
|
+
- React-Core
|
|
548
|
+
- RNFS (2.20.0):
|
|
549
|
+
- React-Core
|
|
550
|
+
- RNGestureHandler (2.14.1):
|
|
551
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
552
|
+
- React-Core
|
|
553
|
+
- RNLocalize (3.1.0-0.0.1):
|
|
554
|
+
- React-Core
|
|
555
|
+
- RNPermissions (4.1.2):
|
|
556
|
+
- React-Core
|
|
557
|
+
- RNScreens (3.33.0):
|
|
558
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
559
|
+
- React-Core
|
|
560
|
+
- React-RCTImage
|
|
561
|
+
- RNSVG (15.0.0):
|
|
562
|
+
- React-Core
|
|
563
|
+
- SDWebImage (5.20.0):
|
|
564
|
+
- SDWebImage/Core (= 5.20.0)
|
|
565
|
+
- SDWebImage/Core (5.20.0)
|
|
566
|
+
- SDWebImageAVIFCoder (0.11.0):
|
|
567
|
+
- libavif/core (>= 0.11.0)
|
|
568
|
+
- SDWebImage (~> 5.10)
|
|
569
|
+
- SDWebImageSVGCoder (1.7.0):
|
|
570
|
+
- SDWebImage/Core (~> 5.6)
|
|
571
|
+
- SDWebImageWebPCoder (0.8.4):
|
|
572
|
+
- libwebp (~> 1.0)
|
|
573
|
+
- SDWebImage/Core (~> 5.10)
|
|
574
|
+
- SnapKit (5.7.1)
|
|
575
|
+
- SocketRocket (0.6.1)
|
|
576
|
+
- SSZipArchive (2.2.2)
|
|
577
|
+
- swiftScan (1.2.1)
|
|
578
|
+
- VisionCamera (4.0.1):
|
|
579
|
+
- VisionCamera/Core (= 4.0.1)
|
|
580
|
+
- VisionCamera/React (= 4.0.1)
|
|
581
|
+
- VisionCamera/Core (4.0.1)
|
|
582
|
+
- VisionCamera/React (4.0.1):
|
|
583
|
+
- React-Core
|
|
584
|
+
- Yoga (1.14.0)
|
|
585
|
+
- YogaKit (1.18.1):
|
|
586
|
+
- Yoga (~> 1.14)
|
|
587
|
+
- YYCache (1.0.4)
|
|
588
|
+
|
|
589
|
+
DEPENDENCIES:
|
|
590
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
591
|
+
- "CodePush (from `../node_modules/@xrn/react-native-code-push`)"
|
|
592
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
593
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
594
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
595
|
+
- Flipper (= 0.182.0)
|
|
596
|
+
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
|
597
|
+
- Flipper-DoubleConversion (= 3.2.0.1)
|
|
598
|
+
- Flipper-Fmt (= 7.1.7)
|
|
599
|
+
- Flipper-Folly (= 2.6.10)
|
|
600
|
+
- Flipper-Glog (= 0.5.0.5)
|
|
601
|
+
- Flipper-PeerTalk (= 0.0.4)
|
|
602
|
+
- FlipperKit (= 0.182.0)
|
|
603
|
+
- FlipperKit/Core (= 0.182.0)
|
|
604
|
+
- FlipperKit/CppBridge (= 0.182.0)
|
|
605
|
+
- FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
|
|
606
|
+
- FlipperKit/FBDefines (= 0.182.0)
|
|
607
|
+
- FlipperKit/FKPortForwarding (= 0.182.0)
|
|
608
|
+
- FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
|
|
609
|
+
- FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
|
|
610
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
|
|
611
|
+
- FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
|
|
612
|
+
- FlipperKit/FlipperKitReactPlugin (= 0.182.0)
|
|
613
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
|
|
614
|
+
- FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
|
|
615
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
616
|
+
- JRSwizzle
|
|
617
|
+
- libavif/libdav1d (= 0.11.1)
|
|
618
|
+
- MBProgressHUD (= 1.2.0)
|
|
619
|
+
- OpenSSL-Universal (= 1.1.1100)
|
|
620
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
621
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
622
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
623
|
+
- React (from `../node_modules/react-native/`)
|
|
624
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
625
|
+
- React-Codegen (from `build/generated/ios`)
|
|
626
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
627
|
+
- React-Core/DevSupport (from `../node_modules/react-native/`)
|
|
628
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
629
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
630
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
631
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
632
|
+
- React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
|
|
633
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
634
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
635
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
636
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
637
|
+
- react-native-adjust (from `../node_modules/react-native-adjust`)
|
|
638
|
+
- react-native-config (from `../node_modules/react-native-config`)
|
|
639
|
+
- "react-native-cookies (from `../node_modules/@react-native-oh-tpl/cookies`)"
|
|
640
|
+
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
|
|
641
|
+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
642
|
+
- "react-native-xrn-app-utils (from `../node_modules/@xrn/app-utils`)"
|
|
643
|
+
- "react-native-xrn-asset-loader (from `../node_modules/@xrn/asset-loader`)"
|
|
644
|
+
- "react-native-xrn-bundle (from `../node_modules/@xrn/bundle`)"
|
|
645
|
+
- "react-native-xrn-debug-tools (from `../node_modules/@xrn/debug-tools`)"
|
|
646
|
+
- "react-native-xrn-image (from `../node_modules/@xrn/image`)"
|
|
647
|
+
- "react-native-xrn-loading (from `../node_modules/@xrn/loading`)"
|
|
648
|
+
- "react-native-xrn-modules-core (from `../node_modules/@xrn/modules-core`)"
|
|
649
|
+
- "react-native-xrn-multi-bundle (from `../node_modules/@xrn/multi-bundle`)"
|
|
650
|
+
- "react-native-xrn-native-storage (from `../node_modules/@xrn/native-storage`)"
|
|
651
|
+
- "react-native-xrn-navigation (from `../node_modules/@xrn/navigation`)"
|
|
652
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
653
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
654
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
655
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
656
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
657
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
658
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
659
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
660
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
661
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
662
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
663
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
664
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
665
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
666
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
667
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
668
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
669
|
+
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
|
|
670
|
+
- "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)"
|
|
671
|
+
- "RNCPicker (from `../node_modules/@react-native-picker/picker`)"
|
|
672
|
+
- RNDeviceInfo (from `../node_modules/react-native-device-info`)
|
|
673
|
+
- RNFS (from `../node_modules/react-native-fs`)
|
|
674
|
+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
|
|
675
|
+
- "RNLocalize (from `../node_modules/@react-native-oh-tpl/react-native-localize`)"
|
|
676
|
+
- RNPermissions (from `../node_modules/react-native-permissions`)
|
|
677
|
+
- RNScreens (from `../node_modules/react-native-screens`)
|
|
678
|
+
- RNSVG (from `../node_modules/react-native-svg`)
|
|
679
|
+
- SDWebImage (= 5.20.0)
|
|
680
|
+
- SDWebImageAVIFCoder (= 0.11.0)
|
|
681
|
+
- SDWebImageSVGCoder (= 1.7.0)
|
|
682
|
+
- SDWebImageWebPCoder (= 0.8.4)
|
|
683
|
+
- SnapKit (= 5.7.1)
|
|
684
|
+
- swiftScan (= 1.2.1)
|
|
685
|
+
- VisionCamera (from `../node_modules/react-native-vision-camera`)
|
|
686
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
687
|
+
- YYCache (= 1.0.4)
|
|
688
|
+
|
|
689
|
+
SPEC REPOS:
|
|
690
|
+
trunk:
|
|
691
|
+
- Adjust
|
|
692
|
+
- Base64
|
|
693
|
+
- CocoaAsyncSocket
|
|
694
|
+
- Flipper
|
|
695
|
+
- Flipper-Boost-iOSX
|
|
696
|
+
- Flipper-DoubleConversion
|
|
697
|
+
- Flipper-Fmt
|
|
698
|
+
- Flipper-Folly
|
|
699
|
+
- Flipper-Glog
|
|
700
|
+
- Flipper-PeerTalk
|
|
701
|
+
- FlipperKit
|
|
702
|
+
- fmt
|
|
703
|
+
- JRSwizzle
|
|
704
|
+
- JWT
|
|
705
|
+
- libavif
|
|
706
|
+
- libdav1d
|
|
707
|
+
- libevent
|
|
708
|
+
- libwebp
|
|
709
|
+
- lottie-ios
|
|
710
|
+
- MBProgressHUD
|
|
711
|
+
- OpenSSL-Universal
|
|
712
|
+
- SDWebImage
|
|
713
|
+
- SDWebImageAVIFCoder
|
|
714
|
+
- SDWebImageSVGCoder
|
|
715
|
+
- SDWebImageWebPCoder
|
|
716
|
+
- SnapKit
|
|
717
|
+
- SocketRocket
|
|
718
|
+
- SSZipArchive
|
|
719
|
+
- swiftScan
|
|
720
|
+
- YogaKit
|
|
721
|
+
- YYCache
|
|
722
|
+
|
|
723
|
+
EXTERNAL SOURCES:
|
|
724
|
+
boost:
|
|
725
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
726
|
+
CodePush:
|
|
727
|
+
:path: "../node_modules/@xrn/react-native-code-push"
|
|
728
|
+
DoubleConversion:
|
|
729
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
730
|
+
FBLazyVector:
|
|
731
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
732
|
+
FBReactNativeSpec:
|
|
733
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
734
|
+
glog:
|
|
735
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
736
|
+
RCT-Folly:
|
|
737
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
738
|
+
RCTRequired:
|
|
739
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
740
|
+
RCTTypeSafety:
|
|
741
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
742
|
+
React:
|
|
743
|
+
:path: "../node_modules/react-native/"
|
|
744
|
+
React-callinvoker:
|
|
745
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
746
|
+
React-Codegen:
|
|
747
|
+
:path: build/generated/ios
|
|
748
|
+
React-Core:
|
|
749
|
+
:path: "../node_modules/react-native/"
|
|
750
|
+
React-CoreModules:
|
|
751
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
752
|
+
React-cxxreact:
|
|
753
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
754
|
+
React-debug:
|
|
755
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
756
|
+
React-jsc:
|
|
757
|
+
:path: "../node_modules/react-native/ReactCommon/jsc"
|
|
758
|
+
React-jsi:
|
|
759
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
760
|
+
React-jsiexecutor:
|
|
761
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
762
|
+
React-jsinspector:
|
|
763
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
764
|
+
React-logger:
|
|
765
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
766
|
+
react-native-adjust:
|
|
767
|
+
:path: "../node_modules/react-native-adjust"
|
|
768
|
+
react-native-config:
|
|
769
|
+
:path: "../node_modules/react-native-config"
|
|
770
|
+
react-native-cookies:
|
|
771
|
+
:path: "../node_modules/@react-native-oh-tpl/cookies"
|
|
772
|
+
react-native-netinfo:
|
|
773
|
+
:path: "../node_modules/@react-native-community/netinfo"
|
|
774
|
+
react-native-safe-area-context:
|
|
775
|
+
:path: "../node_modules/react-native-safe-area-context"
|
|
776
|
+
react-native-xrn-app-utils:
|
|
777
|
+
:path: "../node_modules/@xrn/app-utils"
|
|
778
|
+
react-native-xrn-asset-loader:
|
|
779
|
+
:path: "../node_modules/@xrn/asset-loader"
|
|
780
|
+
react-native-xrn-bundle:
|
|
781
|
+
:path: "../node_modules/@xrn/bundle"
|
|
782
|
+
react-native-xrn-debug-tools:
|
|
783
|
+
:path: "../node_modules/@xrn/debug-tools"
|
|
784
|
+
react-native-xrn-image:
|
|
785
|
+
:path: "../node_modules/@xrn/image"
|
|
786
|
+
react-native-xrn-loading:
|
|
787
|
+
:path: "../node_modules/@xrn/loading"
|
|
788
|
+
react-native-xrn-modules-core:
|
|
789
|
+
:path: "../node_modules/@xrn/modules-core"
|
|
790
|
+
react-native-xrn-multi-bundle:
|
|
791
|
+
:path: "../node_modules/@xrn/multi-bundle"
|
|
792
|
+
react-native-xrn-native-storage:
|
|
793
|
+
:path: "../node_modules/@xrn/native-storage"
|
|
794
|
+
react-native-xrn-navigation:
|
|
795
|
+
:path: "../node_modules/@xrn/navigation"
|
|
796
|
+
React-NativeModulesApple:
|
|
797
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
798
|
+
React-perflogger:
|
|
799
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
800
|
+
React-RCTActionSheet:
|
|
801
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
802
|
+
React-RCTAnimation:
|
|
803
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
804
|
+
React-RCTAppDelegate:
|
|
805
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
806
|
+
React-RCTBlob:
|
|
807
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
808
|
+
React-RCTImage:
|
|
809
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
810
|
+
React-RCTLinking:
|
|
811
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
812
|
+
React-RCTNetwork:
|
|
813
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
814
|
+
React-RCTSettings:
|
|
815
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
816
|
+
React-RCTText:
|
|
817
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
818
|
+
React-RCTVibration:
|
|
819
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
820
|
+
React-rncore:
|
|
821
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
822
|
+
React-runtimeexecutor:
|
|
823
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
824
|
+
React-runtimescheduler:
|
|
825
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
826
|
+
React-utils:
|
|
827
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
828
|
+
ReactCommon:
|
|
829
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
830
|
+
RNCAsyncStorage:
|
|
831
|
+
:path: "../node_modules/@react-native-async-storage/async-storage"
|
|
832
|
+
RNCClipboard:
|
|
833
|
+
:path: "../node_modules/@react-native-clipboard/clipboard"
|
|
834
|
+
RNCPicker:
|
|
835
|
+
:path: "../node_modules/@react-native-picker/picker"
|
|
836
|
+
RNDeviceInfo:
|
|
837
|
+
:path: "../node_modules/react-native-device-info"
|
|
838
|
+
RNFS:
|
|
839
|
+
:path: "../node_modules/react-native-fs"
|
|
840
|
+
RNGestureHandler:
|
|
841
|
+
:path: "../node_modules/react-native-gesture-handler"
|
|
842
|
+
RNLocalize:
|
|
843
|
+
:path: "../node_modules/@react-native-oh-tpl/react-native-localize"
|
|
844
|
+
RNPermissions:
|
|
845
|
+
:path: "../node_modules/react-native-permissions"
|
|
846
|
+
RNScreens:
|
|
847
|
+
:path: "../node_modules/react-native-screens"
|
|
848
|
+
RNSVG:
|
|
849
|
+
:path: "../node_modules/react-native-svg"
|
|
850
|
+
VisionCamera:
|
|
851
|
+
:path: "../node_modules/react-native-vision-camera"
|
|
852
|
+
Yoga:
|
|
853
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
854
|
+
|
|
855
|
+
SPEC CHECKSUMS:
|
|
856
|
+
Adjust: c98d85594a746ff9f2bafe424c5beb6db66cd6a8
|
|
857
|
+
Base64: cecfb41a004124895a7bcee567a89bae5a89d49b
|
|
858
|
+
boost: 7dcd2de282d72e344012f7d6564d024930a6a440
|
|
859
|
+
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
|
860
|
+
CodePush: 30155d7da5c4574b8cb39fca19c70841cb7cd35c
|
|
861
|
+
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
|
862
|
+
FBLazyVector: 71803c074f6325f10b5ec891c443b6bbabef0ca7
|
|
863
|
+
FBReactNativeSpec: 448e08a759d29a96e15725ae532445bf4343567c
|
|
864
|
+
Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
|
|
865
|
+
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
|
866
|
+
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
|
|
867
|
+
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
|
868
|
+
Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
|
|
869
|
+
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
|
|
870
|
+
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
|
871
|
+
FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
|
|
872
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
873
|
+
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
|
874
|
+
JRSwizzle: 7a6fdfe05231e2de26eb14835622d4c6c20c0b6c
|
|
875
|
+
JWT: 9b5c05abbcc1a0e69c3c91e1655b3387fc7e581d
|
|
876
|
+
libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
|
|
877
|
+
libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f
|
|
878
|
+
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
879
|
+
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
|
|
880
|
+
lottie-ios: 3d98679b41fa6fd6aff2352b3953dbd3df8a397e
|
|
881
|
+
MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406
|
|
882
|
+
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
|
|
883
|
+
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
|
884
|
+
RCTRequired: df81ab637d35fac9e6eb94611cfd20f0feb05455
|
|
885
|
+
RCTTypeSafety: 4636e4a36c7c2df332bda6d59b19b41c443d4287
|
|
886
|
+
React: e0cc5197a804031a6c53fb38483c3485fcb9d6f3
|
|
887
|
+
React-callinvoker: 1a635856fe0c3d8b13fccd4ed7e76283b99b0868
|
|
888
|
+
React-Codegen: 2c2e23ede5a87859465582502ff61c7f63bc1ed8
|
|
889
|
+
React-Core: 5bb7f0f43a6fae733201a0396521bec7c1b062c0
|
|
890
|
+
React-CoreModules: f8b9e91fac7bd5d18729ce961a4978c70b5031cc
|
|
891
|
+
React-cxxreact: 2fd17904f2d5ab7318e5432cf24de225cbf1768f
|
|
892
|
+
React-debug: ee33d7ba43766d9b10b32561527b57ccfbcb6bd1
|
|
893
|
+
React-jsc: f4a2687433840ec8c1be9d2f557fe71a7b5e66b5
|
|
894
|
+
React-jsi: bd20f0acd279dee534d8b731b31131f443b00868
|
|
895
|
+
React-jsiexecutor: f32f98d8ddbdfd97dea286af90381a731d68c505
|
|
896
|
+
React-jsinspector: aef73cbd43b70675f572214d10fa438c89bf11ba
|
|
897
|
+
React-logger: 2e4aee3e11b3ec4fa6cfd8004610bbb3b8d6cca4
|
|
898
|
+
react-native-adjust: 801fe33f0dc0097b0474f11d08572a89fa6602ce
|
|
899
|
+
react-native-config: 8f7283449bbb048902f4e764affbbf24504454af
|
|
900
|
+
react-native-cookies: 57c3f1ef1e29a45d6a53d43f0138955eb217b2b5
|
|
901
|
+
react-native-netinfo: 076df4f9b07f6670acf4ce9a75aac8d34c2e2ccc
|
|
902
|
+
react-native-safe-area-context: 2cd91d532de12acdb0a9cbc8d43ac72a8e4c897c
|
|
903
|
+
react-native-xrn-app-utils: d11311a90cdd89c542d3751124b25db6b788ef06
|
|
904
|
+
react-native-xrn-asset-loader: 4845e58ba5d89f3ec5b08871dea26d6b00443839
|
|
905
|
+
react-native-xrn-bundle: 95e4e6c9daf40c96cb904e8228454ebc698f4f28
|
|
906
|
+
react-native-xrn-debug-tools: 460f9d8198d1443e45c4b86d4b69db470b4f5888
|
|
907
|
+
react-native-xrn-image: 0b6fb6814d54c929c166657c335f2a7291cdcea5
|
|
908
|
+
react-native-xrn-loading: b363c1a7925ef45f4f1e66cb60abcf06437e252a
|
|
909
|
+
react-native-xrn-modules-core: f2fd62bbb0b1d1fba6a58062af3da7e893c93e0a
|
|
910
|
+
react-native-xrn-multi-bundle: 92e549ce40ea7fbd6edb74e5af070525441de24a
|
|
911
|
+
react-native-xrn-native-storage: 3eb62e5244321fb7c65ebe4d7e1dbf06e0fa908b
|
|
912
|
+
react-native-xrn-navigation: efc6e639a9e5e40c8a4286bf5c72dfc71c32b415
|
|
913
|
+
React-NativeModulesApple: c6529c637f2e886aab44c48d66cabef2d4fd1138
|
|
914
|
+
React-perflogger: cd8886513f68e1c135a1e79d20575c6489641597
|
|
915
|
+
React-RCTActionSheet: 726d2615ca62a77ce3e2c13d87f65379cdc73498
|
|
916
|
+
React-RCTAnimation: 8f2716b881c37c64858e4ecee0f58bfa57ff9afd
|
|
917
|
+
React-RCTAppDelegate: fa1c94d4c789a37c64bf1ba9f7bc0038beb6c2be
|
|
918
|
+
React-RCTBlob: 3e6120f6abbc7b8dc173da0db633d67cec7f66b7
|
|
919
|
+
React-RCTImage: 747e3d7b656a67470f9c234baedb8d41bbc4e745
|
|
920
|
+
React-RCTLinking: 148332b5b0396b280b05534f7d168e560a3bbd5f
|
|
921
|
+
React-RCTNetwork: 1d818121a8e678f064de663a6db7aaefc099e53c
|
|
922
|
+
React-RCTSettings: 4b95d26ebc88bfd3b6535b2d7904914ff88dbfc2
|
|
923
|
+
React-RCTText: ce4499e4f2d8f85dc4b93ff0559313a016c4f3e2
|
|
924
|
+
React-RCTVibration: 45372e61b35e96d16893540958d156675afbeb63
|
|
925
|
+
React-rncore: a79d1cb3d6c01b358a8aa0b31ccc04ab5f0dbebc
|
|
926
|
+
React-runtimeexecutor: 7e31e2bc6d0ecc83d4ba05eadc98401007abc10c
|
|
927
|
+
React-runtimescheduler: 05bede38cb51ae152f31707022e881ee9ae970ab
|
|
928
|
+
React-utils: 7a9918a1ffdd39aba67835d42386f592ea3f8e76
|
|
929
|
+
ReactCommon: a77b3916d0d39113b5f0de714a0acd47c9d17c3a
|
|
930
|
+
RNCAsyncStorage: 618d03a5f52fbccb3d7010076bc54712844c18ef
|
|
931
|
+
RNCClipboard: 60fed4b71560d7bfe40e9d35dea9762b024da86d
|
|
932
|
+
RNCPicker: b18aaf30df596e9b1738e7c1f9ee55402a229dca
|
|
933
|
+
RNDeviceInfo: b899ce37a403a4dea52b7cb85e16e49c04a5b88e
|
|
934
|
+
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
|
|
935
|
+
RNGestureHandler: fe2be3be5598dc74329b211c58c9f2d231461769
|
|
936
|
+
RNLocalize: 2b6883cb015c8e426b57307e426a03254e56f20b
|
|
937
|
+
RNPermissions: c79198295f91efddfaf54f7b714a16bdda60f40f
|
|
938
|
+
RNScreens: 03acbdcf84e1bf6832ba83dbe3601eae20c55de0
|
|
939
|
+
RNSVG: 3f65a03e0c61a8495dee92bf82545ed9041cbf3b
|
|
940
|
+
SDWebImage: 73c6079366fea25fa4bb9640d5fb58f0893facd8
|
|
941
|
+
SDWebImageAVIFCoder: 00310d246aab3232ce77f1d8f0076f8c4b021d90
|
|
942
|
+
SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c
|
|
943
|
+
SDWebImageWebPCoder: f93010f3f6c031e2f8fb3081ca4ee6966c539815
|
|
944
|
+
SnapKit: d612e99e678a2d3b95bf60b0705ed0a35c03484a
|
|
945
|
+
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
946
|
+
SSZipArchive: fa16b8cc4cdeceb698e5e5d9f67e9558532fbf23
|
|
947
|
+
swiftScan: 0849e7d7c1c641384767a573ee8cb90b88d1ddd9
|
|
948
|
+
VisionCamera: 5787602f86d8521f17af0e606259b6d367754e74
|
|
949
|
+
Yoga: 86fed2e4d425ee4c6eab3813ba1791101ee153c6
|
|
950
|
+
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
|
951
|
+
YYCache: 8105b6638f5e849296c71f331ff83891a4942952
|
|
952
|
+
|
|
953
|
+
PODFILE CHECKSUM: 4ae49b60edae599e11114b3fe272b79da565abb9
|
|
954
|
+
|
|
955
|
+
COCOAPODS: 1.16.2
|