@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
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"stableOrder": true
|
|
4
|
+
},
|
|
5
|
+
"lockfileVersion": 3,
|
|
6
|
+
"ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.",
|
|
7
|
+
"specifiers": {
|
|
8
|
+
"@jxt/xt_hud@3.3.0": "@jxt/xt_hud@3.3.0",
|
|
9
|
+
"@ohos/lottie@2.0.15": "@ohos/lottie@2.0.22",
|
|
10
|
+
"@ohos/lottie@2.0.16-rc.1": "@ohos/lottie@2.0.22",
|
|
11
|
+
"@ohos/lottie@^2.0.15": "@ohos/lottie@2.0.22",
|
|
12
|
+
"@pura/harmony-utils@1.2.6": "@pura/harmony-utils@1.2.6",
|
|
13
|
+
"@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har": "@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har",
|
|
14
|
+
"@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har": "@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har",
|
|
15
|
+
"@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har": "@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har",
|
|
16
|
+
"@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har": "@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har",
|
|
17
|
+
"@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har": "@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har",
|
|
18
|
+
"@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har": "@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har",
|
|
19
|
+
"@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har": "@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har",
|
|
20
|
+
"@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config": "@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config",
|
|
21
|
+
"@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info": "@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info",
|
|
22
|
+
"@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har": "@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har",
|
|
23
|
+
"@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har": "@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har",
|
|
24
|
+
"@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har": "@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har",
|
|
25
|
+
"@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har": "@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har",
|
|
26
|
+
"@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har": "@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har",
|
|
27
|
+
"@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har": "@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har",
|
|
28
|
+
"@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har": "@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har",
|
|
29
|
+
"@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har": "@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har",
|
|
30
|
+
"@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har": "@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har",
|
|
31
|
+
"@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har": "@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har",
|
|
32
|
+
"@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har": "@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har",
|
|
33
|
+
"@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har": "@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har",
|
|
34
|
+
"@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": "@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
|
|
35
|
+
"@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har": "@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har",
|
|
36
|
+
"@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har": "@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har",
|
|
37
|
+
"@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har": "@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har",
|
|
38
|
+
"@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har": "@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har",
|
|
39
|
+
"@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har": "@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har",
|
|
40
|
+
"@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har": "@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har",
|
|
41
|
+
"@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har": "@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har",
|
|
42
|
+
"@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har": "@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har",
|
|
43
|
+
"@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har": "@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
44
|
+
"@umeng/analytics@^1.2.4": "@umeng/analytics@1.2.4",
|
|
45
|
+
"@umeng/apm@^1.1.1": "@umeng/apm@1.1.1",
|
|
46
|
+
"@umeng/common@^1.1.3": "@umeng/common@1.1.3",
|
|
47
|
+
"@wolfx/json5@^2.2.3-rc.1": "@wolfx/json5@2.2.3-rc.1",
|
|
48
|
+
"libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon": "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
|
|
49
|
+
"mime@^3.0.0": "mime@3.0.0",
|
|
50
|
+
"xrn-app-utils@../../node_modules/@xrn/app-utils/harmony/xrn_app_utils": "xrn-app-utils@../../node_modules/@xrn/app-utils/harmony/xrn_app_utils",
|
|
51
|
+
"xrn-bundle@../../node_modules/@xrn/bundle/harmony/xrn_bundle": "xrn-bundle@../../node_modules/@xrn/bundle/harmony/xrn_bundle",
|
|
52
|
+
"xrn-code-push@../../node_modules/@xrn/react-native-code-push/harmony/codePush": "xrn-code-push@../../node_modules/@xrn/react-native-code-push/harmony/codePush",
|
|
53
|
+
"xrn-debug-tools@../../node_modules/@xrn/debug-tools/harmony/xrn_debug_tools": "xrn-debug-tools@../../node_modules/@xrn/debug-tools/harmony/xrn_debug_tools",
|
|
54
|
+
"xrn-loading@../../node_modules/@xrn/loading/harmony/xrn_loading": "xrn-loading@../../node_modules/@xrn/loading/harmony/xrn_loading",
|
|
55
|
+
"xrn-multi-bundle@../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle": "xrn-multi-bundle@../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle",
|
|
56
|
+
"xrn-native-storage@../../node_modules/@xrn/native-storage/harmony/xrn_native_storage": "xrn-native-storage@../../node_modules/@xrn/native-storage/harmony/xrn_native_storage",
|
|
57
|
+
"xrn-navigation@../../node_modules/@xrn/navigation/harmony/xrn_navigation": "xrn-navigation@../../node_modules/@xrn/navigation/harmony/xrn_navigation"
|
|
58
|
+
},
|
|
59
|
+
"packages": {
|
|
60
|
+
"@jxt/xt_hud@3.3.0": {
|
|
61
|
+
"name": "@jxt/xt_hud",
|
|
62
|
+
"version": "3.3.0",
|
|
63
|
+
"integrity": "sha512-pTNDlLm/FvQfFDYAdMhqoxTBjzQq2WNj48/6rLr1sbhB8W0c42LSDM5iifeA6WpAUoKrLFgLSblnf7HxdYHh1g==",
|
|
64
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@jxt/xt_hud/-/xt_hud-3.3.0.har",
|
|
65
|
+
"registryType": "ohpm"
|
|
66
|
+
},
|
|
67
|
+
"@ohos/lottie@2.0.22": {
|
|
68
|
+
"name": "@ohos/lottie",
|
|
69
|
+
"version": "2.0.22",
|
|
70
|
+
"integrity": "sha512-2f/ZnlYsjZfFftq6ukwZaI8XOuFyHWLqDtBcanuGMcX8jBN68iLBLDddkxeSbPZT4mNyOdfvMJHhF482RgKitw==",
|
|
71
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/lottie/-/lottie-2.0.22.har",
|
|
72
|
+
"registryType": "ohpm"
|
|
73
|
+
},
|
|
74
|
+
"@pura/harmony-utils@1.2.6": {
|
|
75
|
+
"name": "@pura/harmony-utils",
|
|
76
|
+
"version": "1.2.6",
|
|
77
|
+
"integrity": "sha512-0Ob6WPKu79272iNzpUfvJqjSHvWbMWKNVyR73WR+EV0/N+jHnyibPc3kuhfWD1jupYqSNyh+8nmuK+fbtHpCtg==",
|
|
78
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@pura/harmony-utils/-/harmony-utils-1.2.6.har",
|
|
79
|
+
"registryType": "ohpm"
|
|
80
|
+
},
|
|
81
|
+
"@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har": {
|
|
82
|
+
"name": "@react-native-oh-tpl/async-storage",
|
|
83
|
+
"version": "1.21.0-0.2.2",
|
|
84
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har",
|
|
85
|
+
"registryType": "local",
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har": {
|
|
91
|
+
"name": "@react-native-oh-tpl/camera-roll",
|
|
92
|
+
"version": "7.8.3-0.1.3",
|
|
93
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har",
|
|
94
|
+
"registryType": "local",
|
|
95
|
+
"dependencies": {
|
|
96
|
+
"@rnoh/react-native-openharmony": "file:../libs/react_native_openharmony-5.0.0.500.har"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har": {
|
|
100
|
+
"name": "@react-native-oh-tpl/clipboard",
|
|
101
|
+
"version": "1.13.2-0.0.9",
|
|
102
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har",
|
|
103
|
+
"registryType": "local",
|
|
104
|
+
"dependencies": {
|
|
105
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har": {
|
|
109
|
+
"name": "@react-native-oh-tpl/cookies",
|
|
110
|
+
"version": "6.2.1-0.0.8",
|
|
111
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har",
|
|
112
|
+
"registryType": "local",
|
|
113
|
+
"dependencies": {
|
|
114
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har": {
|
|
118
|
+
"name": "@react-native-oh-tpl/lottie-react-native",
|
|
119
|
+
"version": "6.4.1-0.1.15",
|
|
120
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har",
|
|
121
|
+
"registryType": "local",
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"@rnoh/react-native-openharmony": "^0.72.38",
|
|
124
|
+
"@ohos/lottie": "2.0.16-rc.1"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har": {
|
|
128
|
+
"name": "@react-native-oh-tpl/netinfo",
|
|
129
|
+
"version": "11.1.0-0.0.8",
|
|
130
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har",
|
|
131
|
+
"registryType": "local",
|
|
132
|
+
"dependencies": {
|
|
133
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har": {
|
|
137
|
+
"name": "@react-native-oh-tpl/react-native-blob-util",
|
|
138
|
+
"version": "0.19.6-0.0.15",
|
|
139
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har",
|
|
140
|
+
"registryType": "local",
|
|
141
|
+
"dependencies": {
|
|
142
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config": {
|
|
146
|
+
"name": "@react-native-oh-tpl/react-native-config",
|
|
147
|
+
"version": "1.5.3-0.0.2",
|
|
148
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config",
|
|
149
|
+
"registryType": "local",
|
|
150
|
+
"dependencies": {
|
|
151
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info": {
|
|
155
|
+
"name": "@react-native-oh-tpl/react-native-device-info",
|
|
156
|
+
"version": "11.1.0-0.0.5",
|
|
157
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info",
|
|
158
|
+
"registryType": "local",
|
|
159
|
+
"dependencies": {
|
|
160
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har": {
|
|
164
|
+
"name": "@react-native-oh-tpl/react-native-document-picker",
|
|
165
|
+
"version": "9.2.0-0.0.2",
|
|
166
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har",
|
|
167
|
+
"registryType": "local",
|
|
168
|
+
"dependencies": {
|
|
169
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony",
|
|
170
|
+
"mime": "^3.0.0"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har": {
|
|
174
|
+
"name": "@react-native-oh-tpl/react-native-fast-image",
|
|
175
|
+
"version": "8.6.3-0.4.16",
|
|
176
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har",
|
|
177
|
+
"registryType": "local",
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har": {
|
|
183
|
+
"name": "@react-native-oh-tpl/react-native-gesture-handler",
|
|
184
|
+
"version": "2.14.16",
|
|
185
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har",
|
|
186
|
+
"registryType": "local",
|
|
187
|
+
"dependencies": {
|
|
188
|
+
"@rnoh/react-native-openharmony": "^0.72.32"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har": {
|
|
192
|
+
"name": "@react-native-oh-tpl/react-native-get-random-values",
|
|
193
|
+
"version": "1.11.0-0.0.1",
|
|
194
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har",
|
|
195
|
+
"registryType": "local",
|
|
196
|
+
"dependencies": {
|
|
197
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har": {
|
|
201
|
+
"name": "@react-native-oh-tpl/react-native-image-picker",
|
|
202
|
+
"version": "7.0.3-0.1.6",
|
|
203
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har",
|
|
204
|
+
"registryType": "local",
|
|
205
|
+
"dependencies": {
|
|
206
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har": {
|
|
210
|
+
"name": "@react-native-oh-tpl/react-native-image-resizer",
|
|
211
|
+
"version": "3.0.9-0.0.3",
|
|
212
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har",
|
|
213
|
+
"registryType": "local",
|
|
214
|
+
"dependencies": {
|
|
215
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
"@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har": {
|
|
219
|
+
"name": "@react-native-oh-tpl/react-native-localize",
|
|
220
|
+
"version": "3.1.0-0.0.1",
|
|
221
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har",
|
|
222
|
+
"registryType": "local",
|
|
223
|
+
"dependencies": {
|
|
224
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har": {
|
|
228
|
+
"name": "@react-native-oh-tpl/react-native-orientation-locker",
|
|
229
|
+
"version": "1.7.0-0.0.4",
|
|
230
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har",
|
|
231
|
+
"registryType": "local",
|
|
232
|
+
"dependencies": {
|
|
233
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har": {
|
|
237
|
+
"name": "@react-native-oh-tpl/react-native-pdf",
|
|
238
|
+
"version": "6.7.4-0.3.2",
|
|
239
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har",
|
|
240
|
+
"registryType": "local",
|
|
241
|
+
"dependencies": {
|
|
242
|
+
"@rnoh/react-native-openharmony": "file:../../../libs/react_native_openharmony-5.0.0.802.har"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har": {
|
|
246
|
+
"name": "@react-native-oh-tpl/react-native-permissions",
|
|
247
|
+
"version": "4.1.2-0.1.6",
|
|
248
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har",
|
|
249
|
+
"registryType": "local",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har": {
|
|
255
|
+
"name": "@react-native-oh-tpl/react-native-reanimated",
|
|
256
|
+
"version": "3.6.2",
|
|
257
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har",
|
|
258
|
+
"registryType": "local",
|
|
259
|
+
"dependencies": {
|
|
260
|
+
"@rnoh/react-native-openharmony": "file:../../node_modules/react-native-harmony/harmony/react_native_openharmony.har"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har": {
|
|
264
|
+
"name": "@react-native-oh-tpl/react-native-safe-area-context",
|
|
265
|
+
"version": "4.7.4-0.2.0",
|
|
266
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har",
|
|
267
|
+
"registryType": "local",
|
|
268
|
+
"dependencies": {
|
|
269
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": {
|
|
273
|
+
"name": "@react-native-oh-tpl/react-native-smartrefreshlayout",
|
|
274
|
+
"version": "0.6.7-0.2.15",
|
|
275
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
|
|
276
|
+
"registryType": "local",
|
|
277
|
+
"dependencies": {
|
|
278
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har": {
|
|
282
|
+
"name": "@react-native-oh-tpl/react-native-svg",
|
|
283
|
+
"version": "15.0.0-0.7.1",
|
|
284
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har",
|
|
285
|
+
"registryType": "local",
|
|
286
|
+
"dependencies": {
|
|
287
|
+
"@rnoh/react-native-openharmony": "^0.72.32"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har": {
|
|
291
|
+
"name": "@react-native-oh-tpl/react-native-touch-id",
|
|
292
|
+
"version": "4.4.1-0.0.3",
|
|
293
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har",
|
|
294
|
+
"registryType": "local",
|
|
295
|
+
"dependencies": {
|
|
296
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har": {
|
|
300
|
+
"name": "@react-native-oh-tpl/react-native-video",
|
|
301
|
+
"version": "5.2.1-0.2.36",
|
|
302
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har",
|
|
303
|
+
"registryType": "local",
|
|
304
|
+
"dependencies": {
|
|
305
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har": {
|
|
309
|
+
"name": "@react-native-oh-tpl/react-native-vision-camera",
|
|
310
|
+
"version": "4.0.1-0.0.20",
|
|
311
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har",
|
|
312
|
+
"registryType": "local",
|
|
313
|
+
"dependencies": {
|
|
314
|
+
"@rnoh/react-native-openharmony": "0.72.38"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har": {
|
|
318
|
+
"name": "@react-native-oh-tpl/react-native-webview",
|
|
319
|
+
"version": "13.10.2-0.2.36",
|
|
320
|
+
"resolved": "../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har",
|
|
321
|
+
"registryType": "local",
|
|
322
|
+
"dependencies": {
|
|
323
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
"@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har": {
|
|
327
|
+
"name": "@react-native-ohos/push-notification-ios",
|
|
328
|
+
"version": "1.11.1-rc.1",
|
|
329
|
+
"resolved": "../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har",
|
|
330
|
+
"registryType": "local",
|
|
331
|
+
"dependencies": {
|
|
332
|
+
"@rnoh/react-native-openharmony": "^0.72.38"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har": {
|
|
336
|
+
"name": "@react-native-ohos/react-native-fs",
|
|
337
|
+
"version": "2.20.1-rc.2",
|
|
338
|
+
"resolved": "../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har",
|
|
339
|
+
"registryType": "local",
|
|
340
|
+
"dependencies": {
|
|
341
|
+
"@rnoh/react-native-openharmony": "0.72.38"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har": {
|
|
345
|
+
"name": "@react-native-ohos/react-native-linear-gradient",
|
|
346
|
+
"version": "3.0.1-rc.1",
|
|
347
|
+
"resolved": "../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har",
|
|
348
|
+
"registryType": "local"
|
|
349
|
+
},
|
|
350
|
+
"@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har": {
|
|
351
|
+
"name": "@rnoh/react-native-openharmony",
|
|
352
|
+
"version": "0.72.38",
|
|
353
|
+
"resolved": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
354
|
+
"registryType": "local"
|
|
355
|
+
},
|
|
356
|
+
"@umeng/analytics@1.2.4": {
|
|
357
|
+
"name": "@umeng/analytics",
|
|
358
|
+
"version": "1.2.4",
|
|
359
|
+
"integrity": "sha512-qth9hSUkHtgL9NBSZYHznmZpgU9uFK6LDKyRvqjih6+HRtOi7lXl6PblN8993x5i+hfBgSWMdDxqD0wgl7tWdQ==",
|
|
360
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/analytics/-/analytics-1.2.4.har",
|
|
361
|
+
"registryType": "ohpm"
|
|
362
|
+
},
|
|
363
|
+
"@umeng/apm@1.1.1": {
|
|
364
|
+
"name": "@umeng/apm",
|
|
365
|
+
"version": "1.1.1",
|
|
366
|
+
"integrity": "sha512-VJ2/os2lUVEqlNg4aErsv1bItZxwemqJJS5JgMU4AtaVaBrKSy78Exf1nnQEqRUeZxd2AHnnRpc3V7UzE1g3Gg==",
|
|
367
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/apm/-/apm-1.1.1.har",
|
|
368
|
+
"registryType": "ohpm"
|
|
369
|
+
},
|
|
370
|
+
"@umeng/common@1.1.3": {
|
|
371
|
+
"name": "@umeng/common",
|
|
372
|
+
"version": "1.1.3",
|
|
373
|
+
"integrity": "sha512-0pYi/JuQzZ8Gsy97Bw5lqCwkTUIK+vImQC+4mgWYbZKH+OxKu4HOoKds0bz+9xbVIyfx88dR7lEdcGeQfR6eug==",
|
|
374
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/common/-/common-1.1.3.har",
|
|
375
|
+
"registryType": "ohpm",
|
|
376
|
+
"dependencies": {
|
|
377
|
+
"libcommon.so": "./src/main/cpp/types/libcommon"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"@wolfx/json5@2.2.3-rc.1": {
|
|
381
|
+
"name": "@wolfx/json5",
|
|
382
|
+
"version": "2.2.3-rc.1",
|
|
383
|
+
"integrity": "sha512-houuTk5a1RO2jD1T4L+0YvELBAggwMHDcIsaVDOLT2edcIwCc5ndoH8TrnxnwMuzE6MSuOMkVtB8bXui2z5LCA==",
|
|
384
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/@wolfx/json5/-/json5-2.2.3-rc.1.har",
|
|
385
|
+
"registryType": "ohpm"
|
|
386
|
+
},
|
|
387
|
+
"libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon": {
|
|
388
|
+
"name": "libcommon.so",
|
|
389
|
+
"version": "1.0.0",
|
|
390
|
+
"resolved": "../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
|
|
391
|
+
"registryType": "local"
|
|
392
|
+
},
|
|
393
|
+
"mime@3.0.0": {
|
|
394
|
+
"name": "mime",
|
|
395
|
+
"version": "3.0.0",
|
|
396
|
+
"integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
|
|
397
|
+
"resolved": "https://ohpm.openharmony.cn/ohpm/mime/-/mime-3.0.0.tgz",
|
|
398
|
+
"shasum": "b374550dca3a0c18443b0c950a6a58f1931cf7a7",
|
|
399
|
+
"registryType": "ohpm"
|
|
400
|
+
},
|
|
401
|
+
"xrn-app-utils@../../node_modules/@xrn/app-utils/harmony/xrn_app_utils": {
|
|
402
|
+
"name": "xrn-app-utils",
|
|
403
|
+
"version": "1.0.0",
|
|
404
|
+
"resolved": "../../node_modules/@xrn/app-utils/harmony/xrn_app_utils",
|
|
405
|
+
"registryType": "local",
|
|
406
|
+
"dependencies": {
|
|
407
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
408
|
+
"@pura/harmony-utils": "1.2.6"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"xrn-bundle@../../node_modules/@xrn/bundle/harmony/xrn_bundle": {
|
|
412
|
+
"name": "xrn-bundle",
|
|
413
|
+
"version": "1.0.0",
|
|
414
|
+
"resolved": "../../node_modules/@xrn/bundle/harmony/xrn_bundle",
|
|
415
|
+
"registryType": "local",
|
|
416
|
+
"dependencies": {
|
|
417
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
418
|
+
"xrn-multi-bundle": "../../../../packages/@xrn/multi-bundle/harmony/xrn_multi_bundle",
|
|
419
|
+
"xrn-code-push": "../../../../node_modules/@xrn/react-native-code-push/harmony/codePush"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"xrn-code-push@../../node_modules/@xrn/react-native-code-push/harmony/codePush": {
|
|
423
|
+
"name": "xrn-code-push",
|
|
424
|
+
"version": "8.2.2-0.0.10",
|
|
425
|
+
"resolved": "../../node_modules/@xrn/react-native-code-push/harmony/codePush",
|
|
426
|
+
"registryType": "local",
|
|
427
|
+
"dependencies": {
|
|
428
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony",
|
|
429
|
+
"xrn-multi-bundle": "file:../xrn_multi_bundle"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"xrn-debug-tools@../../node_modules/@xrn/debug-tools/harmony/xrn_debug_tools": {
|
|
433
|
+
"name": "xrn-debug-tools",
|
|
434
|
+
"version": "1.0.0",
|
|
435
|
+
"resolved": "../../node_modules/@xrn/debug-tools/harmony/xrn_debug_tools",
|
|
436
|
+
"registryType": "local",
|
|
437
|
+
"dependencies": {
|
|
438
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
439
|
+
"xrn-multi-bundle": "../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle",
|
|
440
|
+
"xrn-navigation": "../../node_modules/@xrn/navigation/harmony/xrn_navigation"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"xrn-loading@../../node_modules/@xrn/loading/harmony/xrn_loading": {
|
|
444
|
+
"name": "xrn-loading",
|
|
445
|
+
"version": "1.0.0",
|
|
446
|
+
"resolved": "../../node_modules/@xrn/loading/harmony/xrn_loading",
|
|
447
|
+
"registryType": "local",
|
|
448
|
+
"dependencies": {
|
|
449
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
450
|
+
"@ohos/lottie": "2.0.15",
|
|
451
|
+
"@jxt/xt_hud": "3.3.0"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
"xrn-multi-bundle@../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle": {
|
|
455
|
+
"name": "xrn-multi-bundle",
|
|
456
|
+
"version": "1.0.0",
|
|
457
|
+
"resolved": "../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle",
|
|
458
|
+
"registryType": "local",
|
|
459
|
+
"dependencies": {
|
|
460
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
461
|
+
"@wolfx/json5": "^2.2.3-rc.1",
|
|
462
|
+
"@pura/harmony-utils": "1.2.6"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"xrn-native-storage@../../node_modules/@xrn/native-storage/harmony/xrn_native_storage": {
|
|
466
|
+
"name": "xrn-native-storage",
|
|
467
|
+
"version": "1.0.0",
|
|
468
|
+
"resolved": "../../node_modules/@xrn/native-storage/harmony/xrn_native_storage",
|
|
469
|
+
"registryType": "local",
|
|
470
|
+
"dependencies": {
|
|
471
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"xrn-navigation@../../node_modules/@xrn/navigation/harmony/xrn_navigation": {
|
|
475
|
+
"name": "xrn-navigation",
|
|
476
|
+
"version": "1.0.0",
|
|
477
|
+
"resolved": "../../node_modules/@xrn/navigation/harmony/xrn_navigation",
|
|
478
|
+
"registryType": "local",
|
|
479
|
+
"dependencies": {
|
|
480
|
+
"@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
|
|
481
|
+
"@pura/harmony-utils": "1.2.6",
|
|
482
|
+
"xrn-multi-bundle": "../../node_modules/xrn-multi-bundle/harmony/xrn_multi_bundle.har"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
name: 'entry',
|
|
3
|
+
version: '1.0.0',
|
|
4
|
+
description: 'Please describe the basic information.',
|
|
5
|
+
main: '',
|
|
6
|
+
author: '',
|
|
7
|
+
license: '',
|
|
8
|
+
dependencies: {
|
|
9
|
+
'@rnoh/react-native-openharmony': '../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har',
|
|
10
|
+
'@react-native-oh-tpl/react-native-blob-util': '../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har',
|
|
11
|
+
'@react-native-oh-tpl/react-native-video': '../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har',
|
|
12
|
+
'@react-native-oh-tpl/react-native-vision-camera': '../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har',
|
|
13
|
+
'@react-native-ohos/push-notification-ios': '../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har',
|
|
14
|
+
'@react-native-oh-tpl/react-native-image-picker': '../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har',
|
|
15
|
+
'@react-native-oh-tpl/async-storage': '../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har',
|
|
16
|
+
'@react-native-oh-tpl/clipboard': '../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har',
|
|
17
|
+
'@react-native-oh-tpl/netinfo': '../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har',
|
|
18
|
+
'@react-native-oh-tpl/cookies': '../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har',
|
|
19
|
+
// '@react-native-oh-tpl/picker': '../../node_modules/@react-native-oh-tpl/picker/harmony/picker.har',
|
|
20
|
+
'@react-native-oh-tpl/lottie-react-native': '../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har',
|
|
21
|
+
'@react-native-oh-tpl/react-native-config': '../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config',
|
|
22
|
+
'@react-native-oh-tpl/react-native-device-info': 'file:../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info',
|
|
23
|
+
'@react-native-oh-tpl/react-native-fast-image': '../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har',
|
|
24
|
+
'@react-native-ohos/react-native-fs': '../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har',
|
|
25
|
+
'@react-native-oh-tpl/react-native-gesture-handler': '../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har',
|
|
26
|
+
'@react-native-oh-tpl/react-native-get-random-values': '../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har',
|
|
27
|
+
'@react-native-ohos/react-native-linear-gradient': '../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har',
|
|
28
|
+
'@react-native-oh-tpl/react-native-localize': '../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har',
|
|
29
|
+
'@react-native-oh-tpl/react-native-orientation-locker': '../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har',
|
|
30
|
+
'@react-native-oh-tpl/react-native-permissions': '../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har',
|
|
31
|
+
'@react-native-oh-tpl/react-native-reanimated': '../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har',
|
|
32
|
+
'@react-native-oh-tpl/react-native-safe-area-context': '../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har',
|
|
33
|
+
'@react-native-oh-tpl/react-native-svg': '../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har',
|
|
34
|
+
'@react-native-oh-tpl/react-native-touch-id': '../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har',
|
|
35
|
+
'@react-native-oh-tpl/react-native-smartrefreshlayout': '../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har',
|
|
36
|
+
'@react-native-oh-tpl/camera-roll': '../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har',
|
|
37
|
+
'@react-native-oh-tpl/react-native-pdf': '../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har',
|
|
38
|
+
'@react-native-oh-tpl/react-native-webview': '../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har',
|
|
39
|
+
// '@react-native-oh-tpl/react-native-background-timer': '../../node_modules/@react-native-oh-tpl/react-native-background-timer/harmony/background_timer.har',
|
|
40
|
+
'@react-native-oh-tpl/react-native-document-picker': '../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har',
|
|
41
|
+
'@react-native-oh-tpl/react-native-image-resizer': '../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har',
|
|
42
|
+
'@ohos/lottie': '^2.0.15',
|
|
43
|
+
//以下是源码依赖Demo
|
|
44
|
+
// 'xrn-loading': '../../../../packages/@xrn/loading/harmony/xrn_loading',
|
|
45
|
+
'xrn-loading': '../../node_modules/@xrn/loading/harmony/xrn_loading',
|
|
46
|
+
'xrn-native-storage': '../../node_modules/@xrn/native-storage/harmony/xrn_native_storage',
|
|
47
|
+
'xrn-navigation': '../../node_modules/@xrn/navigation/harmony/xrn_navigation',
|
|
48
|
+
'xrn-code-push': '../../node_modules/@xrn/react-native-code-push/harmony/codePush',
|
|
49
|
+
'xrn-multi-bundle': '../../node_modules/@xrn/multi-bundle/harmony/xrn_multi_bundle',
|
|
50
|
+
'xrn-bundle': '../../node_modules/@xrn/bundle/harmony/xrn_bundle',
|
|
51
|
+
'xrn-app-utils': '../../node_modules/@xrn/app-utils/harmony/xrn_app_utils',
|
|
52
|
+
'xrn-debug-tools': '../../node_modules/@xrn/debug-tools/harmony/xrn_debug_tools',
|
|
53
|
+
'@umeng/common': '^1.1.3',
|
|
54
|
+
'@umeng/analytics': '^1.2.4',
|
|
55
|
+
'@umeng/apm': '^1.1.1',
|
|
56
|
+
},
|
|
57
|
+
devDependencies: {},
|
|
58
|
+
dynamicDependencies: {},
|
|
59
|
+
}
|