iamport-react-native 2.0.12 → 2.0.14
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/.circleci/config.yml +98 -0
- package/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.gitignore +69 -0
- package/.yarnrc +3 -0
- package/.yarnrc.yml +1 -0
- package/README.md +4 -4
- package/android/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.9/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.9/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/babel.config.js +3 -0
- package/example/.gitignore +69 -0
- package/example/README.md +44 -0
- package/example/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
- package/example/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
- package/example/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
- package/example/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/example/android/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
- package/example/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
- package/example/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
- package/example/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
- package/example/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
- package/example/android/.gradle/7.5.1/gc.properties +0 -0
- package/example/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/example/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/example/android/.gradle/vcs-1/gc.properties +0 -0
- package/example/android/app/build.gradle +183 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +8 -0
- package/example/android/app/src/debug/java/com/example/iamportreactnative/ReactNativeFlipper.java +69 -0
- package/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/example/android/app/src/main/java/com/example/iamportreactnative/MainActivity.java +15 -0
- package/example/android/app/src/main/java/com/example/iamportreactnative/MainApplication.java +80 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +9 -0
- package/example/android/build.gradle +21 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/example/android/gradle.properties +44 -0
- package/example/android/gradlew +183 -0
- package/example/android/gradlew.bat +103 -0
- package/example/android/settings.gradle +9 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +11 -0
- package/example/index.js +5 -0
- package/example/ios/File.swift +8 -0
- package/example/ios/Gemfile +7 -0
- package/example/ios/Gemfile.lock +99 -0
- package/example/ios/IamportReactNativeExample/AppDelegate.h +15 -0
- package/example/ios/IamportReactNativeExample/AppDelegate.mm +138 -0
- package/example/ios/IamportReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/example/ios/IamportReactNativeExample/Images.xcassets/Contents.json +6 -0
- package/example/ios/IamportReactNativeExample/Info.plist +121 -0
- package/example/ios/IamportReactNativeExample/LaunchScreen.storyboard +58 -0
- package/example/ios/IamportReactNativeExample/main.m +16 -0
- package/example/ios/IamportReactNativeExample-Bridging-Header.h +3 -0
- package/example/ios/IamportReactNativeExample.xcodeproj/project.pbxproj +969 -0
- package/example/ios/IamportReactNativeExample.xcodeproj/xcshareddata/xcschemes/IamportReactNativeExample.xcscheme +99 -0
- package/example/ios/IamportReactNativeExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/IamportReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/Podfile +57 -0
- package/example/ios/Podfile.lock +756 -0
- package/example/metro.config.js +66 -0
- package/example/package.json +40 -0
- package/example/src/App.tsx +17 -0
- package/example/src/Certification/index.tsx +30 -0
- package/example/src/CertificationResult/index.tsx +79 -0
- package/example/src/CertificationTest/index.tsx +214 -0
- package/example/src/Home/index.tsx +87 -0
- package/example/src/Loading/index.tsx +12 -0
- package/example/src/NavigationService.tsx +127 -0
- package/example/src/Payment/index.tsx +28 -0
- package/example/src/PaymentResult/index.tsx +96 -0
- package/example/src/PaymentTest/index.tsx +383 -0
- package/example/src/Picker/index.tsx +60 -0
- package/example/src/constants.ts +274 -0
- package/example/src/utils.ts +83 -0
- package/example/yarn.lock +7358 -0
- package/exampleForExpo/.buckconfig +6 -0
- package/exampleForExpo/.expo/README.md +8 -0
- package/exampleForExpo/.expo/devices.json +3 -0
- package/exampleForExpo/.gitattributes +1 -0
- package/exampleForExpo/.gitignore +125 -0
- package/exampleForExpo/.idea/.gitignore +3 -0
- package/exampleForExpo/.idea/caches/deviceStreaming.xml +549 -0
- package/exampleForExpo/.idea/exampleForExpo.iml +9 -0
- package/exampleForExpo/.idea/misc.xml +6 -0
- package/exampleForExpo/.idea/modules.xml +8 -0
- package/exampleForExpo/.idea/vcs.xml +6 -0
- package/exampleForExpo/.idea/workspace.xml +53 -0
- package/exampleForExpo/README.md +58 -0
- package/exampleForExpo/__tests__/App.js +10 -0
- package/exampleForExpo/android/.gitignore +21 -0
- package/exampleForExpo/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
- package/exampleForExpo/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
- package/exampleForExpo/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
- package/exampleForExpo/android/.gradle/7.5.1/gc.properties +0 -0
- package/exampleForExpo/android/.gradle/vcs-1/gc.properties +0 -0
- package/exampleForExpo/android/app/BUCK +55 -0
- package/exampleForExpo/android/app/build.gradle +362 -0
- package/exampleForExpo/android/app/build_defs.bzl +19 -0
- package/exampleForExpo/android/app/debug.keystore +0 -0
- package/exampleForExpo/android/app/proguard-rules.pro +14 -0
- package/exampleForExpo/android/app/src/debug/AndroidManifest.xml +7 -0
- package/exampleForExpo/android/app/src/debug/java/kr/iamport/exampleForExpo/ReactNativeFlipper.java +69 -0
- package/exampleForExpo/android/app/src/main/AndroidManifest.xml +34 -0
- package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/MainActivity.java +83 -0
- package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/MainApplication.java +106 -0
- package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/MainApplicationReactNativeHost.java +117 -0
- package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/components/MainComponentsRegistry.java +36 -0
- package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -0
- package/exampleForExpo/android/app/src/main/jni/CMakeLists.txt +7 -0
- package/exampleForExpo/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
- package/exampleForExpo/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
- package/exampleForExpo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
- package/exampleForExpo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
- package/exampleForExpo/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
- package/exampleForExpo/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
- package/exampleForExpo/android/app/src/main/jni/OnLoad.cpp +11 -0
- package/exampleForExpo/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/exampleForExpo/android/app/src/main/res/drawable/splashscreen.xml +4 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/exampleForExpo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/exampleForExpo/android/app/src/main/res/values/colors.xml +4 -0
- package/exampleForExpo/android/app/src/main/res/values/strings.xml +3 -0
- package/exampleForExpo/android/app/src/main/res/values/styles.xml +17 -0
- package/exampleForExpo/android/app/src/main/res/values-night/colors.xml +1 -0
- package/exampleForExpo/android/build.gradle +65 -0
- package/exampleForExpo/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/exampleForExpo/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/exampleForExpo/android/gradle.properties +53 -0
- package/exampleForExpo/android/gradlew +240 -0
- package/exampleForExpo/android/gradlew.bat +91 -0
- package/exampleForExpo/android/settings.gradle +17 -0
- package/exampleForExpo/app.json +16 -0
- package/exampleForExpo/babel.config.js +11 -0
- package/exampleForExpo/index.js +9 -0
- package/exampleForExpo/ios/.gitignore +30 -0
- package/exampleForExpo/ios/.xcode.env +11 -0
- package/exampleForExpo/ios/Podfile +61 -0
- package/exampleForExpo/ios/Podfile.lock +734 -0
- package/exampleForExpo/ios/Podfile.properties.json +3 -0
- package/exampleForExpo/ios/exampleForExpo/AppDelegate.h +9 -0
- package/exampleForExpo/ios/exampleForExpo/AppDelegate.mm +166 -0
- package/exampleForExpo/ios/exampleForExpo/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- package/exampleForExpo/ios/exampleForExpo/Images.xcassets/Contents.json +6 -0
- package/exampleForExpo/ios/exampleForExpo/Images.xcassets/SplashScreenBackground.imageset/Contents.json +21 -0
- package/exampleForExpo/ios/exampleForExpo/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
- package/exampleForExpo/ios/exampleForExpo/Info.plist +118 -0
- package/exampleForExpo/ios/exampleForExpo/SplashScreen.storyboard +43 -0
- package/exampleForExpo/ios/exampleForExpo/Supporting/Expo.plist +16 -0
- package/exampleForExpo/ios/exampleForExpo/exampleForExpo.entitlements +8 -0
- package/exampleForExpo/ios/exampleForExpo/main.m +10 -0
- package/exampleForExpo/ios/exampleForExpo/noop-file.swift +4 -0
- package/exampleForExpo/ios/exampleForExpo.xcodeproj/project.pbxproj +544 -0
- package/exampleForExpo/ios/exampleForExpo.xcodeproj/xcshareddata/xcschemes/exampleForExpo.xcscheme +88 -0
- package/exampleForExpo/ios/exampleForExpo.xcworkspace/contents.xcworkspacedata +10 -0
- package/exampleForExpo/ios/exampleForExpo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/exampleForExpo/metro.config.js +62 -0
- package/exampleForExpo/package.json +40 -0
- package/exampleForExpo/src/App.js +14 -0
- package/exampleForExpo/src/Certification/index.js +25 -0
- package/exampleForExpo/src/CertificationResult/index.js +61 -0
- package/exampleForExpo/src/CertificationTest/index.js +151 -0
- package/exampleForExpo/src/Home/index.js +80 -0
- package/exampleForExpo/src/Loading/index.js +10 -0
- package/exampleForExpo/src/NavigationService.js +102 -0
- package/exampleForExpo/src/Payment/index.js +23 -0
- package/exampleForExpo/src/PaymentResult/index.js +82 -0
- package/exampleForExpo/src/PaymentTest/index.js +313 -0
- package/exampleForExpo/src/Picker/index.js +19 -0
- package/exampleForExpo/src/constants.js +322 -0
- package/exampleForExpo/src/utils.js +116 -0
- package/exampleForExpo/yarn.lock +9498 -0
- package/exampleForManagedExpo/.expo-shared/assets.json +4 -0
- package/exampleForManagedExpo/.gitignore +22 -0
- package/exampleForManagedExpo/App.js +11 -0
- package/exampleForManagedExpo/README.md +33 -0
- package/exampleForManagedExpo/app.json +90 -0
- package/exampleForManagedExpo/assets/adaptive-icon.png +0 -0
- package/exampleForManagedExpo/assets/favicon.png +0 -0
- package/exampleForManagedExpo/assets/icon.png +0 -0
- package/exampleForManagedExpo/assets/splash.png +0 -0
- package/exampleForManagedExpo/babel.config.js +11 -0
- package/exampleForManagedExpo/metro.config.js +62 -0
- package/exampleForManagedExpo/package.json +36 -0
- package/exampleForManagedExpo/src/Certification/index.js +25 -0
- package/exampleForManagedExpo/src/CertificationResult/index.js +61 -0
- package/exampleForManagedExpo/src/CertificationTest/index.js +151 -0
- package/exampleForManagedExpo/src/Home/index.js +80 -0
- package/exampleForManagedExpo/src/Loading/index.js +10 -0
- package/exampleForManagedExpo/src/NavigationService.js +102 -0
- package/exampleForManagedExpo/src/Payment/index.js +23 -0
- package/exampleForManagedExpo/src/PaymentResult/index.js +82 -0
- package/exampleForManagedExpo/src/PaymentTest/index.js +313 -0
- package/exampleForManagedExpo/src/Picker/index.js +19 -0
- package/exampleForManagedExpo/src/constants.js +322 -0
- package/exampleForManagedExpo/src/utils.js +116 -0
- package/exampleForManagedExpo/yarn.lock +9411 -0
- package/exampleForWebView/.buckconfig +6 -0
- package/exampleForWebView/.eslintrc.js +4 -0
- package/exampleForWebView/.gitattributes +3 -0
- package/exampleForWebView/.gitignore +68 -0
- package/exampleForWebView/.prettierrc.js +7 -0
- package/exampleForWebView/.watchmanconfig +1 -0
- package/exampleForWebView/README.md +77 -0
- package/exampleForWebView/__tests__/App-test.tsx +14 -0
- package/exampleForWebView/_editorconfig +3 -0
- package/exampleForWebView/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
- package/exampleForWebView/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
- package/exampleForWebView/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
- package/exampleForWebView/android/.gradle/7.5.1/gc.properties +0 -0
- package/exampleForWebView/android/.gradle/vcs-1/gc.properties +0 -0
- package/exampleForWebView/android/app/BUCK +55 -0
- package/exampleForWebView/android/app/build.gradle +313 -0
- package/exampleForWebView/android/app/build_defs.bzl +19 -0
- package/exampleForWebView/android/app/debug.keystore +0 -0
- package/exampleForWebView/android/app/proguard-rules.pro +10 -0
- package/exampleForWebView/android/app/src/debug/AndroidManifest.xml +13 -0
- package/exampleForWebView/android/app/src/debug/java/com/exampleforwebview/ReactNativeFlipper.java +73 -0
- package/exampleForWebView/android/app/src/main/AndroidManifest.xml +26 -0
- package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/MainActivity.java +48 -0
- package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/MainApplication.java +91 -0
- package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/MainApplicationReactNativeHost.java +116 -0
- package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/components/MainComponentsRegistry.java +36 -0
- package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -0
- package/exampleForWebView/android/app/src/main/jni/CMakeLists.txt +7 -0
- package/exampleForWebView/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
- package/exampleForWebView/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
- package/exampleForWebView/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
- package/exampleForWebView/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
- package/exampleForWebView/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
- package/exampleForWebView/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
- package/exampleForWebView/android/app/src/main/jni/OnLoad.cpp +11 -0
- package/exampleForWebView/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/exampleForWebView/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/exampleForWebView/android/app/src/main/res/values/strings.xml +3 -0
- package/exampleForWebView/android/app/src/main/res/values/styles.xml +9 -0
- package/exampleForWebView/android/build.gradle +51 -0
- package/exampleForWebView/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/exampleForWebView/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/exampleForWebView/android/gradle.properties +40 -0
- package/exampleForWebView/android/gradlew +234 -0
- package/exampleForWebView/android/gradlew.bat +89 -0
- package/exampleForWebView/android/settings.gradle +11 -0
- package/exampleForWebView/app.json +4 -0
- package/exampleForWebView/babel.config.js +11 -0
- package/exampleForWebView/index.js +9 -0
- package/exampleForWebView/ios/.xcode.env +11 -0
- package/exampleForWebView/ios/Podfile +43 -0
- package/exampleForWebView/ios/Podfile.lock +748 -0
- package/exampleForWebView/ios/exampleForWebView/AppDelegate.h +8 -0
- package/exampleForWebView/ios/exampleForWebView/AppDelegate.mm +133 -0
- package/exampleForWebView/ios/exampleForWebView/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/exampleForWebView/ios/exampleForWebView/Images.xcassets/Contents.json +6 -0
- package/exampleForWebView/ios/exampleForWebView/Info.plist +96 -0
- package/exampleForWebView/ios/exampleForWebView/LaunchScreen.storyboard +47 -0
- package/exampleForWebView/ios/exampleForWebView/main.m +10 -0
- package/exampleForWebView/ios/exampleForWebView.xcodeproj/project.pbxproj +723 -0
- package/exampleForWebView/ios/exampleForWebView.xcodeproj/xcshareddata/xcschemes/exampleForWebView.xcscheme +88 -0
- package/exampleForWebView/ios/exampleForWebView.xcworkspace/contents.xcworkspacedata +10 -0
- package/exampleForWebView/ios/exampleForWebView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/exampleForWebView/ios/exampleForWebViewTests/Info.plist +24 -0
- package/exampleForWebView/ios/exampleForWebViewTests/exampleForWebViewTests.m +66 -0
- package/exampleForWebView/manuals/CERTIFICATION.md +223 -0
- package/exampleForWebView/manuals/PAYMENT.md +232 -0
- package/exampleForWebView/metro.config.js +61 -0
- package/exampleForWebView/package.json +54 -0
- package/exampleForWebView/src/App.tsx +50 -0
- package/exampleForWebView/src/Certification.tsx +54 -0
- package/exampleForWebView/src/Home.tsx +49 -0
- package/exampleForWebView/src/Loading.tsx +23 -0
- package/exampleForWebView/src/Payment.tsx +65 -0
- package/exampleForWebView/yarn.lock +7362 -0
- package/lib/commonjs/components/Certification/index.js +10 -13
- package/lib/commonjs/components/Certification/index.js.map +1 -1
- package/lib/commonjs/components/ErrorOnParams/index.js +5 -7
- package/lib/commonjs/components/ErrorOnParams/index.js.map +1 -1
- package/lib/commonjs/components/Loading/index.js +2 -3
- package/lib/commonjs/components/Loading/index.js.map +1 -1
- package/lib/commonjs/components/Payment/index.js +10 -13
- package/lib/commonjs/components/Payment/index.js.map +1 -1
- package/lib/commonjs/constants/index.js +6 -6
- package/lib/commonjs/constants/index.js.map +1 -1
- package/lib/commonjs/index.js +2 -3
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/styles.js +1 -2
- package/lib/commonjs/styles.js.map +1 -1
- package/lib/commonjs/utils/IamportUrl.js +6 -3
- package/lib/commonjs/utils/IamportUrl.js.map +1 -1
- package/lib/commonjs/utils/Validation.js +1 -2
- package/lib/commonjs/utils/Validation.js.map +1 -1
- package/lib/commonjs/utils/ValidationForPayment.js +1 -2
- package/lib/commonjs/utils/ValidationForPayment.js.map +1 -1
- package/lib/module/components/Certification/index.js +7 -8
- package/lib/module/components/Certification/index.js.map +1 -1
- package/lib/module/components/ErrorOnParams/index.js +3 -4
- package/lib/module/components/ErrorOnParams/index.js.map +1 -1
- package/lib/module/components/Loading/index.js.map +1 -1
- package/lib/module/components/Payment/index.js +7 -8
- package/lib/module/components/Payment/index.js.map +1 -1
- package/lib/module/constants/index.js +5 -4
- package/lib/module/constants/index.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/styles.js.map +1 -1
- package/lib/module/utils/IamportUrl.js +4 -0
- package/lib/module/utils/IamportUrl.js.map +1 -1
- package/lib/module/utils/Validation.js.map +1 -1
- package/lib/module/utils/ValidationForPayment.js.map +1 -1
- package/lib/typescript/constants/index.d.ts +3 -1
- package/lib/typescript/constants/index.d.ts.map +1 -1
- package/lib/typescript/utils/IamportUrl.d.ts +1 -1
- package/lib/typescript/utils/IamportUrl.d.ts.map +1 -1
- package/manuals/CALLBACK.md +72 -0
- package/manuals/EXAMPLE.md +168 -0
- package/manuals/EXPO.md +246 -0
- package/manuals/INSTALL.md +31 -0
- package/manuals/SETTING.md +140 -0
- package/manuals/SUPPORT.md +35 -0
- package/manuals/TRANS.md +77 -0
- package/manuals/VERSION.md +184 -0
- package/manuals/assets/after-linking-iamport.png +0 -0
- package/manuals/assets/after-linking-webview.png +0 -0
- package/manuals/assets/allow-arbitrary.gif +0 -0
- package/manuals/assets/android-studio-avd-manager.png +0 -0
- package/manuals/assets/android-studio-build.png +0 -0
- package/manuals/assets/app-scheme-registry.gif +0 -0
- package/manuals/assets/expo-eject.png +0 -0
- package/manuals/assets/ios-emulator-certification.png +0 -0
- package/manuals/assets/ios-emulator-home.png +0 -0
- package/manuals/assets/ios-emulator-payment.png +0 -0
- package/manuals/assets/ios-trans-create-header-file-1.png +0 -0
- package/manuals/assets/ios-trans-create-header-file-2.png +0 -0
- package/manuals/assets/ios-trans-create-objectivec-file-1.png +0 -0
- package/manuals/assets/ios-trans-create-objectivec-file-2.png +0 -0
- package/manuals/assets/ios-trans-result.png +0 -0
- package/manuals/assets/webview-peer-dependency.png +0 -0
- package/package.json +3 -2
- package/scripts/bootstrap.js +24 -0
- package/src/constants/index.ts +10 -0
- package/src/utils/IamportUrl.ts +8 -1
- package/tsconfig.build.json +9 -0
- package/tsconfig.json +26 -0
- package/yarn.lock +6174 -0
|
@@ -0,0 +1,734 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- ASN1Decoder (1.8.0)
|
|
3
|
+
- boost (1.76.0)
|
|
4
|
+
- DoubleConversion (1.1.6)
|
|
5
|
+
- EASClient (0.6.0):
|
|
6
|
+
- ExpoModulesCore
|
|
7
|
+
- EXApplication (5.3.1):
|
|
8
|
+
- ExpoModulesCore
|
|
9
|
+
- EXConstants (14.4.2):
|
|
10
|
+
- ExpoModulesCore
|
|
11
|
+
- EXFileSystem (15.4.4):
|
|
12
|
+
- ExpoModulesCore
|
|
13
|
+
- EXFont (11.4.0):
|
|
14
|
+
- ExpoModulesCore
|
|
15
|
+
- EXJSONUtils (0.7.1)
|
|
16
|
+
- EXManifests (0.7.2):
|
|
17
|
+
- ExpoModulesCore
|
|
18
|
+
- Expo (49.0.13):
|
|
19
|
+
- ExpoModulesCore
|
|
20
|
+
- ExpoKeepAwake (12.3.0):
|
|
21
|
+
- ExpoModulesCore
|
|
22
|
+
- ExpoModulesCore (1.5.11):
|
|
23
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
24
|
+
- React-Core
|
|
25
|
+
- React-NativeModulesApple
|
|
26
|
+
- React-RCTAppDelegate
|
|
27
|
+
- ReactCommon/turbomodule/core
|
|
28
|
+
- EXSplashScreen (0.20.5):
|
|
29
|
+
- ExpoModulesCore
|
|
30
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
31
|
+
- React-Core
|
|
32
|
+
- EXStructuredHeaders (3.3.0)
|
|
33
|
+
- EXUpdates (0.18.16):
|
|
34
|
+
- ASN1Decoder (~> 1.8)
|
|
35
|
+
- EASClient
|
|
36
|
+
- EXManifests
|
|
37
|
+
- ExpoModulesCore
|
|
38
|
+
- EXStructuredHeaders
|
|
39
|
+
- EXUpdatesInterface
|
|
40
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
41
|
+
- ReachabilitySwift
|
|
42
|
+
- React-Core
|
|
43
|
+
- EXUpdatesInterface (0.10.1)
|
|
44
|
+
- FBLazyVector (0.72.5)
|
|
45
|
+
- FBReactNativeSpec (0.72.5):
|
|
46
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
47
|
+
- RCTRequired (= 0.72.5)
|
|
48
|
+
- RCTTypeSafety (= 0.72.5)
|
|
49
|
+
- React-Core (= 0.72.5)
|
|
50
|
+
- React-jsi (= 0.72.5)
|
|
51
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
52
|
+
- fmt (6.2.1)
|
|
53
|
+
- glog (0.3.5)
|
|
54
|
+
- RCT-Folly (2021.07.22.00):
|
|
55
|
+
- boost
|
|
56
|
+
- DoubleConversion
|
|
57
|
+
- fmt (~> 6.2.1)
|
|
58
|
+
- glog
|
|
59
|
+
- RCT-Folly/Default (= 2021.07.22.00)
|
|
60
|
+
- RCT-Folly/Default (2021.07.22.00):
|
|
61
|
+
- boost
|
|
62
|
+
- DoubleConversion
|
|
63
|
+
- fmt (~> 6.2.1)
|
|
64
|
+
- glog
|
|
65
|
+
- RCTRequired (0.72.5)
|
|
66
|
+
- RCTTypeSafety (0.72.5):
|
|
67
|
+
- FBLazyVector (= 0.72.5)
|
|
68
|
+
- RCTRequired (= 0.72.5)
|
|
69
|
+
- React-Core (= 0.72.5)
|
|
70
|
+
- ReachabilitySwift (5.0.0)
|
|
71
|
+
- React (0.72.5):
|
|
72
|
+
- React-Core (= 0.72.5)
|
|
73
|
+
- React-Core/DevSupport (= 0.72.5)
|
|
74
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
75
|
+
- React-RCTActionSheet (= 0.72.5)
|
|
76
|
+
- React-RCTAnimation (= 0.72.5)
|
|
77
|
+
- React-RCTBlob (= 0.72.5)
|
|
78
|
+
- React-RCTImage (= 0.72.5)
|
|
79
|
+
- React-RCTLinking (= 0.72.5)
|
|
80
|
+
- React-RCTNetwork (= 0.72.5)
|
|
81
|
+
- React-RCTSettings (= 0.72.5)
|
|
82
|
+
- React-RCTText (= 0.72.5)
|
|
83
|
+
- React-RCTVibration (= 0.72.5)
|
|
84
|
+
- React-callinvoker (0.72.5)
|
|
85
|
+
- React-Codegen (0.72.5):
|
|
86
|
+
- DoubleConversion
|
|
87
|
+
- FBReactNativeSpec
|
|
88
|
+
- glog
|
|
89
|
+
- RCT-Folly
|
|
90
|
+
- RCTRequired
|
|
91
|
+
- RCTTypeSafety
|
|
92
|
+
- React-Core
|
|
93
|
+
- React-jsc
|
|
94
|
+
- React-jsi
|
|
95
|
+
- React-jsiexecutor
|
|
96
|
+
- React-NativeModulesApple
|
|
97
|
+
- React-rncore
|
|
98
|
+
- ReactCommon/turbomodule/bridging
|
|
99
|
+
- ReactCommon/turbomodule/core
|
|
100
|
+
- React-Core (0.72.5):
|
|
101
|
+
- glog
|
|
102
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
103
|
+
- React-Core/Default (= 0.72.5)
|
|
104
|
+
- React-cxxreact
|
|
105
|
+
- React-jsc
|
|
106
|
+
- React-jsi
|
|
107
|
+
- React-jsiexecutor
|
|
108
|
+
- React-perflogger
|
|
109
|
+
- React-runtimeexecutor
|
|
110
|
+
- React-utils
|
|
111
|
+
- SocketRocket (= 0.6.1)
|
|
112
|
+
- Yoga
|
|
113
|
+
- React-Core/CoreModulesHeaders (0.72.5):
|
|
114
|
+
- glog
|
|
115
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
116
|
+
- React-Core/Default
|
|
117
|
+
- React-cxxreact
|
|
118
|
+
- React-jsc
|
|
119
|
+
- React-jsi
|
|
120
|
+
- React-jsiexecutor
|
|
121
|
+
- React-perflogger
|
|
122
|
+
- React-runtimeexecutor
|
|
123
|
+
- React-utils
|
|
124
|
+
- SocketRocket (= 0.6.1)
|
|
125
|
+
- Yoga
|
|
126
|
+
- React-Core/Default (0.72.5):
|
|
127
|
+
- glog
|
|
128
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
129
|
+
- React-cxxreact
|
|
130
|
+
- React-jsc
|
|
131
|
+
- React-jsi
|
|
132
|
+
- React-jsiexecutor
|
|
133
|
+
- React-perflogger
|
|
134
|
+
- React-runtimeexecutor
|
|
135
|
+
- React-utils
|
|
136
|
+
- SocketRocket (= 0.6.1)
|
|
137
|
+
- Yoga
|
|
138
|
+
- React-Core/DevSupport (0.72.5):
|
|
139
|
+
- glog
|
|
140
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
141
|
+
- React-Core/Default (= 0.72.5)
|
|
142
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
143
|
+
- React-cxxreact
|
|
144
|
+
- React-jsc
|
|
145
|
+
- React-jsi
|
|
146
|
+
- React-jsiexecutor
|
|
147
|
+
- React-jsinspector (= 0.72.5)
|
|
148
|
+
- React-perflogger
|
|
149
|
+
- React-runtimeexecutor
|
|
150
|
+
- React-utils
|
|
151
|
+
- SocketRocket (= 0.6.1)
|
|
152
|
+
- Yoga
|
|
153
|
+
- React-Core/RCTActionSheetHeaders (0.72.5):
|
|
154
|
+
- glog
|
|
155
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
156
|
+
- React-Core/Default
|
|
157
|
+
- React-cxxreact
|
|
158
|
+
- React-jsc
|
|
159
|
+
- React-jsi
|
|
160
|
+
- React-jsiexecutor
|
|
161
|
+
- React-perflogger
|
|
162
|
+
- React-runtimeexecutor
|
|
163
|
+
- React-utils
|
|
164
|
+
- SocketRocket (= 0.6.1)
|
|
165
|
+
- Yoga
|
|
166
|
+
- React-Core/RCTAnimationHeaders (0.72.5):
|
|
167
|
+
- glog
|
|
168
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
169
|
+
- React-Core/Default
|
|
170
|
+
- React-cxxreact
|
|
171
|
+
- React-jsc
|
|
172
|
+
- React-jsi
|
|
173
|
+
- React-jsiexecutor
|
|
174
|
+
- React-perflogger
|
|
175
|
+
- React-runtimeexecutor
|
|
176
|
+
- React-utils
|
|
177
|
+
- SocketRocket (= 0.6.1)
|
|
178
|
+
- Yoga
|
|
179
|
+
- React-Core/RCTBlobHeaders (0.72.5):
|
|
180
|
+
- glog
|
|
181
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
182
|
+
- React-Core/Default
|
|
183
|
+
- React-cxxreact
|
|
184
|
+
- React-jsc
|
|
185
|
+
- React-jsi
|
|
186
|
+
- React-jsiexecutor
|
|
187
|
+
- React-perflogger
|
|
188
|
+
- React-runtimeexecutor
|
|
189
|
+
- React-utils
|
|
190
|
+
- SocketRocket (= 0.6.1)
|
|
191
|
+
- Yoga
|
|
192
|
+
- React-Core/RCTImageHeaders (0.72.5):
|
|
193
|
+
- glog
|
|
194
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
195
|
+
- React-Core/Default
|
|
196
|
+
- React-cxxreact
|
|
197
|
+
- React-jsc
|
|
198
|
+
- React-jsi
|
|
199
|
+
- React-jsiexecutor
|
|
200
|
+
- React-perflogger
|
|
201
|
+
- React-runtimeexecutor
|
|
202
|
+
- React-utils
|
|
203
|
+
- SocketRocket (= 0.6.1)
|
|
204
|
+
- Yoga
|
|
205
|
+
- React-Core/RCTLinkingHeaders (0.72.5):
|
|
206
|
+
- glog
|
|
207
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
208
|
+
- React-Core/Default
|
|
209
|
+
- React-cxxreact
|
|
210
|
+
- React-jsc
|
|
211
|
+
- React-jsi
|
|
212
|
+
- React-jsiexecutor
|
|
213
|
+
- React-perflogger
|
|
214
|
+
- React-runtimeexecutor
|
|
215
|
+
- React-utils
|
|
216
|
+
- SocketRocket (= 0.6.1)
|
|
217
|
+
- Yoga
|
|
218
|
+
- React-Core/RCTNetworkHeaders (0.72.5):
|
|
219
|
+
- glog
|
|
220
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
221
|
+
- React-Core/Default
|
|
222
|
+
- React-cxxreact
|
|
223
|
+
- React-jsc
|
|
224
|
+
- React-jsi
|
|
225
|
+
- React-jsiexecutor
|
|
226
|
+
- React-perflogger
|
|
227
|
+
- React-runtimeexecutor
|
|
228
|
+
- React-utils
|
|
229
|
+
- SocketRocket (= 0.6.1)
|
|
230
|
+
- Yoga
|
|
231
|
+
- React-Core/RCTSettingsHeaders (0.72.5):
|
|
232
|
+
- glog
|
|
233
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
234
|
+
- React-Core/Default
|
|
235
|
+
- React-cxxreact
|
|
236
|
+
- React-jsc
|
|
237
|
+
- React-jsi
|
|
238
|
+
- React-jsiexecutor
|
|
239
|
+
- React-perflogger
|
|
240
|
+
- React-runtimeexecutor
|
|
241
|
+
- React-utils
|
|
242
|
+
- SocketRocket (= 0.6.1)
|
|
243
|
+
- Yoga
|
|
244
|
+
- React-Core/RCTTextHeaders (0.72.5):
|
|
245
|
+
- glog
|
|
246
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
247
|
+
- React-Core/Default
|
|
248
|
+
- React-cxxreact
|
|
249
|
+
- React-jsc
|
|
250
|
+
- React-jsi
|
|
251
|
+
- React-jsiexecutor
|
|
252
|
+
- React-perflogger
|
|
253
|
+
- React-runtimeexecutor
|
|
254
|
+
- React-utils
|
|
255
|
+
- SocketRocket (= 0.6.1)
|
|
256
|
+
- Yoga
|
|
257
|
+
- React-Core/RCTVibrationHeaders (0.72.5):
|
|
258
|
+
- glog
|
|
259
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
260
|
+
- React-Core/Default
|
|
261
|
+
- React-cxxreact
|
|
262
|
+
- React-jsc
|
|
263
|
+
- React-jsi
|
|
264
|
+
- React-jsiexecutor
|
|
265
|
+
- React-perflogger
|
|
266
|
+
- React-runtimeexecutor
|
|
267
|
+
- React-utils
|
|
268
|
+
- SocketRocket (= 0.6.1)
|
|
269
|
+
- Yoga
|
|
270
|
+
- React-Core/RCTWebSocket (0.72.5):
|
|
271
|
+
- glog
|
|
272
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
273
|
+
- React-Core/Default (= 0.72.5)
|
|
274
|
+
- React-cxxreact
|
|
275
|
+
- React-jsc
|
|
276
|
+
- React-jsi
|
|
277
|
+
- React-jsiexecutor
|
|
278
|
+
- React-perflogger
|
|
279
|
+
- React-runtimeexecutor
|
|
280
|
+
- React-utils
|
|
281
|
+
- SocketRocket (= 0.6.1)
|
|
282
|
+
- Yoga
|
|
283
|
+
- React-CoreModules (0.72.5):
|
|
284
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
285
|
+
- RCTTypeSafety (= 0.72.5)
|
|
286
|
+
- React-Codegen (= 0.72.5)
|
|
287
|
+
- React-Core/CoreModulesHeaders (= 0.72.5)
|
|
288
|
+
- React-jsi (= 0.72.5)
|
|
289
|
+
- React-RCTBlob
|
|
290
|
+
- React-RCTImage (= 0.72.5)
|
|
291
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
292
|
+
- SocketRocket (= 0.6.1)
|
|
293
|
+
- React-cxxreact (0.72.5):
|
|
294
|
+
- boost (= 1.76.0)
|
|
295
|
+
- DoubleConversion
|
|
296
|
+
- glog
|
|
297
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
298
|
+
- React-callinvoker (= 0.72.5)
|
|
299
|
+
- React-debug (= 0.72.5)
|
|
300
|
+
- React-jsi (= 0.72.5)
|
|
301
|
+
- React-jsinspector (= 0.72.5)
|
|
302
|
+
- React-logger (= 0.72.5)
|
|
303
|
+
- React-perflogger (= 0.72.5)
|
|
304
|
+
- React-runtimeexecutor (= 0.72.5)
|
|
305
|
+
- React-debug (0.72.5)
|
|
306
|
+
- React-jsc (0.72.5):
|
|
307
|
+
- React-jsc/Fabric (= 0.72.5)
|
|
308
|
+
- React-jsi (= 0.72.5)
|
|
309
|
+
- React-jsc/Fabric (0.72.5):
|
|
310
|
+
- React-jsi (= 0.72.5)
|
|
311
|
+
- React-jsi (0.72.5):
|
|
312
|
+
- boost (= 1.76.0)
|
|
313
|
+
- DoubleConversion
|
|
314
|
+
- glog
|
|
315
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
316
|
+
- React-jsiexecutor (0.72.5):
|
|
317
|
+
- DoubleConversion
|
|
318
|
+
- glog
|
|
319
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
320
|
+
- React-cxxreact (= 0.72.5)
|
|
321
|
+
- React-jsi (= 0.72.5)
|
|
322
|
+
- React-perflogger (= 0.72.5)
|
|
323
|
+
- React-jsinspector (0.72.5)
|
|
324
|
+
- React-logger (0.72.5):
|
|
325
|
+
- glog
|
|
326
|
+
- react-native-safe-area-context (4.6.3):
|
|
327
|
+
- RCT-Folly
|
|
328
|
+
- RCTRequired
|
|
329
|
+
- RCTTypeSafety
|
|
330
|
+
- React-Core
|
|
331
|
+
- ReactCommon/turbomodule/core
|
|
332
|
+
- react-native-webview (13.2.2):
|
|
333
|
+
- React-Core
|
|
334
|
+
- React-NativeModulesApple (0.72.5):
|
|
335
|
+
- React-callinvoker
|
|
336
|
+
- React-Core
|
|
337
|
+
- React-cxxreact
|
|
338
|
+
- React-jsi
|
|
339
|
+
- React-runtimeexecutor
|
|
340
|
+
- ReactCommon/turbomodule/bridging
|
|
341
|
+
- ReactCommon/turbomodule/core
|
|
342
|
+
- React-perflogger (0.72.5)
|
|
343
|
+
- React-RCTActionSheet (0.72.5):
|
|
344
|
+
- React-Core/RCTActionSheetHeaders (= 0.72.5)
|
|
345
|
+
- React-RCTAnimation (0.72.5):
|
|
346
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
347
|
+
- RCTTypeSafety (= 0.72.5)
|
|
348
|
+
- React-Codegen (= 0.72.5)
|
|
349
|
+
- React-Core/RCTAnimationHeaders (= 0.72.5)
|
|
350
|
+
- React-jsi (= 0.72.5)
|
|
351
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
352
|
+
- React-RCTAppDelegate (0.72.5):
|
|
353
|
+
- RCT-Folly
|
|
354
|
+
- RCTRequired
|
|
355
|
+
- RCTTypeSafety
|
|
356
|
+
- React-Core
|
|
357
|
+
- React-CoreModules
|
|
358
|
+
- React-jsc
|
|
359
|
+
- React-NativeModulesApple
|
|
360
|
+
- React-RCTImage
|
|
361
|
+
- React-RCTNetwork
|
|
362
|
+
- React-runtimescheduler
|
|
363
|
+
- ReactCommon/turbomodule/core
|
|
364
|
+
- React-RCTBlob (0.72.5):
|
|
365
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
366
|
+
- React-Codegen (= 0.72.5)
|
|
367
|
+
- React-Core/RCTBlobHeaders (= 0.72.5)
|
|
368
|
+
- React-Core/RCTWebSocket (= 0.72.5)
|
|
369
|
+
- React-jsi (= 0.72.5)
|
|
370
|
+
- React-RCTNetwork (= 0.72.5)
|
|
371
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
372
|
+
- React-RCTImage (0.72.5):
|
|
373
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
374
|
+
- RCTTypeSafety (= 0.72.5)
|
|
375
|
+
- React-Codegen (= 0.72.5)
|
|
376
|
+
- React-Core/RCTImageHeaders (= 0.72.5)
|
|
377
|
+
- React-jsi (= 0.72.5)
|
|
378
|
+
- React-RCTNetwork (= 0.72.5)
|
|
379
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
380
|
+
- React-RCTLinking (0.72.5):
|
|
381
|
+
- React-Codegen (= 0.72.5)
|
|
382
|
+
- React-Core/RCTLinkingHeaders (= 0.72.5)
|
|
383
|
+
- React-jsi (= 0.72.5)
|
|
384
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
385
|
+
- React-RCTNetwork (0.72.5):
|
|
386
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
387
|
+
- RCTTypeSafety (= 0.72.5)
|
|
388
|
+
- React-Codegen (= 0.72.5)
|
|
389
|
+
- React-Core/RCTNetworkHeaders (= 0.72.5)
|
|
390
|
+
- React-jsi (= 0.72.5)
|
|
391
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
392
|
+
- React-RCTSettings (0.72.5):
|
|
393
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
394
|
+
- RCTTypeSafety (= 0.72.5)
|
|
395
|
+
- React-Codegen (= 0.72.5)
|
|
396
|
+
- React-Core/RCTSettingsHeaders (= 0.72.5)
|
|
397
|
+
- React-jsi (= 0.72.5)
|
|
398
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
399
|
+
- React-RCTText (0.72.5):
|
|
400
|
+
- React-Core/RCTTextHeaders (= 0.72.5)
|
|
401
|
+
- React-RCTVibration (0.72.5):
|
|
402
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
403
|
+
- React-Codegen (= 0.72.5)
|
|
404
|
+
- React-Core/RCTVibrationHeaders (= 0.72.5)
|
|
405
|
+
- React-jsi (= 0.72.5)
|
|
406
|
+
- ReactCommon/turbomodule/core (= 0.72.5)
|
|
407
|
+
- React-rncore (0.72.5)
|
|
408
|
+
- React-runtimeexecutor (0.72.5):
|
|
409
|
+
- React-jsi (= 0.72.5)
|
|
410
|
+
- React-runtimescheduler (0.72.5):
|
|
411
|
+
- glog
|
|
412
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
413
|
+
- React-callinvoker
|
|
414
|
+
- React-debug
|
|
415
|
+
- React-jsi
|
|
416
|
+
- React-runtimeexecutor
|
|
417
|
+
- React-utils (0.72.5):
|
|
418
|
+
- glog
|
|
419
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
420
|
+
- React-debug
|
|
421
|
+
- ReactCommon/turbomodule/bridging (0.72.5):
|
|
422
|
+
- DoubleConversion
|
|
423
|
+
- glog
|
|
424
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
425
|
+
- React-callinvoker (= 0.72.5)
|
|
426
|
+
- React-cxxreact (= 0.72.5)
|
|
427
|
+
- React-jsi (= 0.72.5)
|
|
428
|
+
- React-logger (= 0.72.5)
|
|
429
|
+
- React-perflogger (= 0.72.5)
|
|
430
|
+
- ReactCommon/turbomodule/core (0.72.5):
|
|
431
|
+
- DoubleConversion
|
|
432
|
+
- glog
|
|
433
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
434
|
+
- React-callinvoker (= 0.72.5)
|
|
435
|
+
- React-cxxreact (= 0.72.5)
|
|
436
|
+
- React-jsi (= 0.72.5)
|
|
437
|
+
- React-logger (= 0.72.5)
|
|
438
|
+
- React-perflogger (= 0.72.5)
|
|
439
|
+
- RNCMaskedView (0.1.11):
|
|
440
|
+
- React
|
|
441
|
+
- RNGestureHandler (2.12.1):
|
|
442
|
+
- React-Core
|
|
443
|
+
- RNReanimated (3.3.0):
|
|
444
|
+
- DoubleConversion
|
|
445
|
+
- FBLazyVector
|
|
446
|
+
- glog
|
|
447
|
+
- RCT-Folly
|
|
448
|
+
- RCTRequired
|
|
449
|
+
- RCTTypeSafety
|
|
450
|
+
- React-callinvoker
|
|
451
|
+
- React-Core
|
|
452
|
+
- React-Core/DevSupport
|
|
453
|
+
- React-Core/RCTWebSocket
|
|
454
|
+
- React-CoreModules
|
|
455
|
+
- React-cxxreact
|
|
456
|
+
- React-jsi
|
|
457
|
+
- React-jsiexecutor
|
|
458
|
+
- React-jsinspector
|
|
459
|
+
- React-RCTActionSheet
|
|
460
|
+
- React-RCTAnimation
|
|
461
|
+
- React-RCTAppDelegate
|
|
462
|
+
- React-RCTBlob
|
|
463
|
+
- React-RCTImage
|
|
464
|
+
- React-RCTLinking
|
|
465
|
+
- React-RCTNetwork
|
|
466
|
+
- React-RCTSettings
|
|
467
|
+
- React-RCTText
|
|
468
|
+
- ReactCommon/turbomodule/core
|
|
469
|
+
- Yoga
|
|
470
|
+
- RNScreens (3.22.1):
|
|
471
|
+
- React-Core
|
|
472
|
+
- React-RCTImage
|
|
473
|
+
- RNSVG (13.9.0):
|
|
474
|
+
- React-Core
|
|
475
|
+
- SocketRocket (0.6.1)
|
|
476
|
+
- Yoga (1.14.0)
|
|
477
|
+
|
|
478
|
+
DEPENDENCIES:
|
|
479
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
480
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
481
|
+
- EASClient (from `../node_modules/expo-eas-client/ios`)
|
|
482
|
+
- EXApplication (from `../node_modules/expo-application/ios`)
|
|
483
|
+
- EXConstants (from `../node_modules/expo-constants/ios`)
|
|
484
|
+
- EXFileSystem (from `../node_modules/expo-file-system/ios`)
|
|
485
|
+
- EXFont (from `../node_modules/expo-font/ios`)
|
|
486
|
+
- EXJSONUtils (from `../node_modules/expo-json-utils/ios`)
|
|
487
|
+
- EXManifests (from `../node_modules/expo-manifests/ios`)
|
|
488
|
+
- Expo (from `../node_modules/expo`)
|
|
489
|
+
- ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
|
|
490
|
+
- ExpoModulesCore (from `../node_modules/expo-modules-core`)
|
|
491
|
+
- EXSplashScreen (from `../node_modules/expo-splash-screen/ios`)
|
|
492
|
+
- EXStructuredHeaders (from `../node_modules/expo-structured-headers/ios`)
|
|
493
|
+
- EXUpdates (from `../node_modules/expo-updates/ios`)
|
|
494
|
+
- EXUpdatesInterface (from `../node_modules/expo-updates-interface/ios`)
|
|
495
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
496
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
497
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
498
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
499
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
500
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
501
|
+
- React (from `../node_modules/react-native/`)
|
|
502
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
503
|
+
- React-Codegen (from `build/generated/ios`)
|
|
504
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
505
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
506
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
507
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
508
|
+
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
509
|
+
- React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
|
|
510
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
511
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
512
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
513
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
514
|
+
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
515
|
+
- react-native-webview (from `../node_modules/react-native-webview`)
|
|
516
|
+
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
517
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
518
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
519
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
520
|
+
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
521
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
522
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
523
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
524
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
525
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
526
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
527
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
528
|
+
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
529
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
530
|
+
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
531
|
+
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
532
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
533
|
+
- "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)"
|
|
534
|
+
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
|
|
535
|
+
- RNReanimated (from `../node_modules/react-native-reanimated`)
|
|
536
|
+
- RNScreens (from `../node_modules/react-native-screens`)
|
|
537
|
+
- RNSVG (from `../node_modules/react-native-svg`)
|
|
538
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
539
|
+
|
|
540
|
+
SPEC REPOS:
|
|
541
|
+
trunk:
|
|
542
|
+
- ASN1Decoder
|
|
543
|
+
- fmt
|
|
544
|
+
- ReachabilitySwift
|
|
545
|
+
- SocketRocket
|
|
546
|
+
|
|
547
|
+
EXTERNAL SOURCES:
|
|
548
|
+
boost:
|
|
549
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
550
|
+
DoubleConversion:
|
|
551
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
552
|
+
EASClient:
|
|
553
|
+
:path: "../node_modules/expo-eas-client/ios"
|
|
554
|
+
EXApplication:
|
|
555
|
+
:path: "../node_modules/expo-application/ios"
|
|
556
|
+
EXConstants:
|
|
557
|
+
:path: "../node_modules/expo-constants/ios"
|
|
558
|
+
EXFileSystem:
|
|
559
|
+
:path: "../node_modules/expo-file-system/ios"
|
|
560
|
+
EXFont:
|
|
561
|
+
:path: "../node_modules/expo-font/ios"
|
|
562
|
+
EXJSONUtils:
|
|
563
|
+
:path: "../node_modules/expo-json-utils/ios"
|
|
564
|
+
EXManifests:
|
|
565
|
+
:path: "../node_modules/expo-manifests/ios"
|
|
566
|
+
Expo:
|
|
567
|
+
:path: "../node_modules/expo"
|
|
568
|
+
ExpoKeepAwake:
|
|
569
|
+
:path: "../node_modules/expo-keep-awake/ios"
|
|
570
|
+
ExpoModulesCore:
|
|
571
|
+
:path: "../node_modules/expo-modules-core"
|
|
572
|
+
EXSplashScreen:
|
|
573
|
+
:path: "../node_modules/expo-splash-screen/ios"
|
|
574
|
+
EXStructuredHeaders:
|
|
575
|
+
:path: "../node_modules/expo-structured-headers/ios"
|
|
576
|
+
EXUpdates:
|
|
577
|
+
:path: "../node_modules/expo-updates/ios"
|
|
578
|
+
EXUpdatesInterface:
|
|
579
|
+
:path: "../node_modules/expo-updates-interface/ios"
|
|
580
|
+
FBLazyVector:
|
|
581
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
582
|
+
FBReactNativeSpec:
|
|
583
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
584
|
+
glog:
|
|
585
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
586
|
+
RCT-Folly:
|
|
587
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
588
|
+
RCTRequired:
|
|
589
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
590
|
+
RCTTypeSafety:
|
|
591
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
592
|
+
React:
|
|
593
|
+
:path: "../node_modules/react-native/"
|
|
594
|
+
React-callinvoker:
|
|
595
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
596
|
+
React-Codegen:
|
|
597
|
+
:path: build/generated/ios
|
|
598
|
+
React-Core:
|
|
599
|
+
:path: "../node_modules/react-native/"
|
|
600
|
+
React-CoreModules:
|
|
601
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
602
|
+
React-cxxreact:
|
|
603
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
604
|
+
React-debug:
|
|
605
|
+
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
606
|
+
React-jsc:
|
|
607
|
+
:path: "../node_modules/react-native/ReactCommon/jsc"
|
|
608
|
+
React-jsi:
|
|
609
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
610
|
+
React-jsiexecutor:
|
|
611
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
612
|
+
React-jsinspector:
|
|
613
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
614
|
+
React-logger:
|
|
615
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
616
|
+
react-native-safe-area-context:
|
|
617
|
+
:path: "../node_modules/react-native-safe-area-context"
|
|
618
|
+
react-native-webview:
|
|
619
|
+
:path: "../node_modules/react-native-webview"
|
|
620
|
+
React-NativeModulesApple:
|
|
621
|
+
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
622
|
+
React-perflogger:
|
|
623
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
624
|
+
React-RCTActionSheet:
|
|
625
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
626
|
+
React-RCTAnimation:
|
|
627
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
628
|
+
React-RCTAppDelegate:
|
|
629
|
+
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
630
|
+
React-RCTBlob:
|
|
631
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
632
|
+
React-RCTImage:
|
|
633
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
634
|
+
React-RCTLinking:
|
|
635
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
636
|
+
React-RCTNetwork:
|
|
637
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
638
|
+
React-RCTSettings:
|
|
639
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
640
|
+
React-RCTText:
|
|
641
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
642
|
+
React-RCTVibration:
|
|
643
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
644
|
+
React-rncore:
|
|
645
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
646
|
+
React-runtimeexecutor:
|
|
647
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
648
|
+
React-runtimescheduler:
|
|
649
|
+
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
650
|
+
React-utils:
|
|
651
|
+
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
652
|
+
ReactCommon:
|
|
653
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
654
|
+
RNCMaskedView:
|
|
655
|
+
:path: "../node_modules/@react-native-community/masked-view"
|
|
656
|
+
RNGestureHandler:
|
|
657
|
+
:path: "../node_modules/react-native-gesture-handler"
|
|
658
|
+
RNReanimated:
|
|
659
|
+
:path: "../node_modules/react-native-reanimated"
|
|
660
|
+
RNScreens:
|
|
661
|
+
:path: "../node_modules/react-native-screens"
|
|
662
|
+
RNSVG:
|
|
663
|
+
:path: "../node_modules/react-native-svg"
|
|
664
|
+
Yoga:
|
|
665
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
666
|
+
|
|
667
|
+
SPEC CHECKSUMS:
|
|
668
|
+
ASN1Decoder: 6110fdeacfdb41559b1481457a1645be716610aa
|
|
669
|
+
boost: 57d2868c099736d80fcd648bf211b4431e51a558
|
|
670
|
+
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
|
671
|
+
EASClient: 49f8ea858204eb4844d9fb386e5fb7920aee2e30
|
|
672
|
+
EXApplication: 042aa2e3f05258a16962ea1a9914bf288db9c9a1
|
|
673
|
+
EXConstants: ce5bbea779da8031ac818c36bea41b10e14d04e1
|
|
674
|
+
EXFileSystem: 2b826a3bf1071a4b80a8457e97124783d1ac860e
|
|
675
|
+
EXFont: 738c44c390953ebcbab075a4848bfbef025fd9ee
|
|
676
|
+
EXJSONUtils: 6802be4282d42b97c51682468ddc1026a06f8276
|
|
677
|
+
EXManifests: cf66451b11b2c2f6464917528d792759f7fd6ce0
|
|
678
|
+
Expo: e7d2116b947e2e6fdeb09ee4f2754f819426d1b6
|
|
679
|
+
ExpoKeepAwake: be4cbd52d9b177cde0fd66daa1913afa3161fc1d
|
|
680
|
+
ExpoModulesCore: 51cb2e7ab4c8da14be3f40b66d54c1781002e99d
|
|
681
|
+
EXSplashScreen: c0e7f2d4a640f3b875808ed0b88575538daf6d82
|
|
682
|
+
EXStructuredHeaders: 324cc3130571d2696357fafd8be7fd9a0b5fdf6e
|
|
683
|
+
EXUpdates: f4cb5c6782ad1635fa853cb5251677040a9ed584
|
|
684
|
+
EXUpdatesInterface: 82ed48d417cdcd376c12ca1c2ce390d35500bed6
|
|
685
|
+
FBLazyVector: 71803c074f6325f10b5ec891c443b6bbabef0ca7
|
|
686
|
+
FBReactNativeSpec: 448e08a759d29a96e15725ae532445bf4343567c
|
|
687
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
688
|
+
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
|
689
|
+
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
|
690
|
+
RCTRequired: df81ab637d35fac9e6eb94611cfd20f0feb05455
|
|
691
|
+
RCTTypeSafety: 4636e4a36c7c2df332bda6d59b19b41c443d4287
|
|
692
|
+
ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825
|
|
693
|
+
React: e0cc5197a804031a6c53fb38483c3485fcb9d6f3
|
|
694
|
+
React-callinvoker: 1a635856fe0c3d8b13fccd4ed7e76283b99b0868
|
|
695
|
+
React-Codegen: 2c2e23ede5a87859465582502ff61c7f63bc1ed8
|
|
696
|
+
React-Core: 5bb7f0f43a6fae733201a0396521bec7c1b062c0
|
|
697
|
+
React-CoreModules: f8b9e91fac7bd5d18729ce961a4978c70b5031cc
|
|
698
|
+
React-cxxreact: 2fd17904f2d5ab7318e5432cf24de225cbf1768f
|
|
699
|
+
React-debug: ee33d7ba43766d9b10b32561527b57ccfbcb6bd1
|
|
700
|
+
React-jsc: f4a2687433840ec8c1be9d2f557fe71a7b5e66b5
|
|
701
|
+
React-jsi: bd20f0acd279dee534d8b731b31131f443b00868
|
|
702
|
+
React-jsiexecutor: f32f98d8ddbdfd97dea286af90381a731d68c505
|
|
703
|
+
React-jsinspector: aef73cbd43b70675f572214d10fa438c89bf11ba
|
|
704
|
+
React-logger: 2e4aee3e11b3ec4fa6cfd8004610bbb3b8d6cca4
|
|
705
|
+
react-native-safe-area-context: 36cc67648134e89465663b8172336a19eeda493d
|
|
706
|
+
react-native-webview: b8ec89966713985111a14d6e4bf98d8b54bced0d
|
|
707
|
+
React-NativeModulesApple: c6529c637f2e886aab44c48d66cabef2d4fd1138
|
|
708
|
+
React-perflogger: cd8886513f68e1c135a1e79d20575c6489641597
|
|
709
|
+
React-RCTActionSheet: 726d2615ca62a77ce3e2c13d87f65379cdc73498
|
|
710
|
+
React-RCTAnimation: 8f2716b881c37c64858e4ecee0f58bfa57ff9afd
|
|
711
|
+
React-RCTAppDelegate: fa1c94d4c789a37c64bf1ba9f7bc0038beb6c2be
|
|
712
|
+
React-RCTBlob: 3e6120f6abbc7b8dc173da0db633d67cec7f66b7
|
|
713
|
+
React-RCTImage: 747e3d7b656a67470f9c234baedb8d41bbc4e745
|
|
714
|
+
React-RCTLinking: 148332b5b0396b280b05534f7d168e560a3bbd5f
|
|
715
|
+
React-RCTNetwork: 1d818121a8e678f064de663a6db7aaefc099e53c
|
|
716
|
+
React-RCTSettings: 4b95d26ebc88bfd3b6535b2d7904914ff88dbfc2
|
|
717
|
+
React-RCTText: ce4499e4f2d8f85dc4b93ff0559313a016c4f3e2
|
|
718
|
+
React-RCTVibration: 45372e61b35e96d16893540958d156675afbeb63
|
|
719
|
+
React-rncore: a79d1cb3d6c01b358a8aa0b31ccc04ab5f0dbebc
|
|
720
|
+
React-runtimeexecutor: 7e31e2bc6d0ecc83d4ba05eadc98401007abc10c
|
|
721
|
+
React-runtimescheduler: 05bede38cb51ae152f31707022e881ee9ae970ab
|
|
722
|
+
React-utils: 7a9918a1ffdd39aba67835d42386f592ea3f8e76
|
|
723
|
+
ReactCommon: a77b3916d0d39113b5f0de714a0acd47c9d17c3a
|
|
724
|
+
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
|
|
725
|
+
RNGestureHandler: c0d04458598fcb26052494ae23dda8f8f5162b13
|
|
726
|
+
RNReanimated: 3ffa3d63576ecd26a4f8772d03029cccaf41b5d7
|
|
727
|
+
RNScreens: 50ffe2fa2342eabb2d0afbe19f7c1af286bc7fb3
|
|
728
|
+
RNSVG: 53c661b76829783cdaf9b7a57258f3d3b4c28315
|
|
729
|
+
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
730
|
+
Yoga: 86fed2e4d425ee4c6eab3813ba1791101ee153c6
|
|
731
|
+
|
|
732
|
+
PODFILE CHECKSUM: 7098268e1130b3198ddfb8a0106ecaca080445b8
|
|
733
|
+
|
|
734
|
+
COCOAPODS: 1.13.0
|