iamport-react-native 2.0.13 → 2.0.15
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 +1 -1
- 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 +2 -4
- 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 +2 -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 +1 -2
- 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.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 +1 -1
- package/lib/typescript/constants/index.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 +187 -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 +4 -3
- package/scripts/bootstrap.js +24 -0
- package/src/constants/index.ts +8 -0
- package/tsconfig.build.json +9 -0
- package/tsconfig.json +26 -0
- package/yarn.lock +6174 -0
|
@@ -0,0 +1,969 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
00E356F31AD99517003FC87E /* IamportReactNativeExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* IamportReactNativeExampleTests.m */; };
|
|
11
|
+
12F325F026808889007DF856 /* File.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12F325EF26808889007DF856 /* File.swift */; };
|
|
12
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
15
|
+
2D02E4BC1E0B4A80006451C7 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
16
|
+
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
17
|
+
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
18
|
+
2DCD954D1E0B4F2C00145EB5 /* IamportReactNativeExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* IamportReactNativeExampleTests.m */; };
|
|
19
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
20
|
+
D730D4289FCB4CBA9A917376 /* libPods-IamportReactNativeExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 39EE5BF369D5C9094417D02E /* libPods-IamportReactNativeExample.a */; };
|
|
21
|
+
/* End PBXBuildFile section */
|
|
22
|
+
|
|
23
|
+
/* Begin PBXContainerItemProxy section */
|
|
24
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
25
|
+
isa = PBXContainerItemProxy;
|
|
26
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
27
|
+
proxyType = 1;
|
|
28
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
29
|
+
remoteInfo = IamportReactNativeExample;
|
|
30
|
+
};
|
|
31
|
+
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
|
|
32
|
+
isa = PBXContainerItemProxy;
|
|
33
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
34
|
+
proxyType = 1;
|
|
35
|
+
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
|
|
36
|
+
remoteInfo = "IamportReactNativeExample-tvOS";
|
|
37
|
+
};
|
|
38
|
+
/* End PBXContainerItemProxy section */
|
|
39
|
+
|
|
40
|
+
/* Begin PBXFileReference section */
|
|
41
|
+
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
|
42
|
+
00E356EE1AD99517003FC87E /* IamportReactNativeExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IamportReactNativeExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
43
|
+
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
44
|
+
00E356F21AD99517003FC87E /* IamportReactNativeExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = IamportReactNativeExampleTests.m; sourceTree = "<group>"; };
|
|
45
|
+
12F325EE26808889007DF856 /* IamportReactNativeExample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "IamportReactNativeExample-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
46
|
+
12F325EF26808889007DF856 /* File.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = File.swift; sourceTree = "<group>"; };
|
|
47
|
+
13B07F961A680F5B00A75B9A /* IamportReactNativeExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IamportReactNativeExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
48
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = IamportReactNativeExample/AppDelegate.h; sourceTree = "<group>"; };
|
|
49
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.mm; path = IamportReactNativeExample/AppDelegate.mm; sourceTree = "<group>"; };
|
|
50
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = IamportReactNativeExample/Images.xcassets; sourceTree = "<group>"; };
|
|
51
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = IamportReactNativeExample/Info.plist; sourceTree = "<group>"; };
|
|
52
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = IamportReactNativeExample/main.m; sourceTree = "<group>"; };
|
|
53
|
+
2D02E47B1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "IamportReactNativeExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
54
|
+
2D02E4901E0B4A5D006451C7 /* IamportReactNativeExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "IamportReactNativeExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
55
|
+
39EE5BF369D5C9094417D02E /* libPods-IamportReactNativeExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-IamportReactNativeExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
56
|
+
47F7ED3B7971BE374F7B8635 /* Pods-IamportReactNativeExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IamportReactNativeExample.debug.xcconfig"; path = "Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample.debug.xcconfig"; sourceTree = "<group>"; };
|
|
57
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = IamportReactNativeExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
58
|
+
E00ACF0FDA8BF921659E2F9A /* Pods-IamportReactNativeExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-IamportReactNativeExample.release.xcconfig"; path = "Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample.release.xcconfig"; sourceTree = "<group>"; };
|
|
59
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
60
|
+
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
|
61
|
+
/* End PBXFileReference section */
|
|
62
|
+
|
|
63
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
64
|
+
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
65
|
+
isa = PBXFrameworksBuildPhase;
|
|
66
|
+
buildActionMask = 2147483647;
|
|
67
|
+
files = (
|
|
68
|
+
);
|
|
69
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
70
|
+
};
|
|
71
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
72
|
+
isa = PBXFrameworksBuildPhase;
|
|
73
|
+
buildActionMask = 2147483647;
|
|
74
|
+
files = (
|
|
75
|
+
D730D4289FCB4CBA9A917376 /* libPods-IamportReactNativeExample.a in Frameworks */,
|
|
76
|
+
);
|
|
77
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
78
|
+
};
|
|
79
|
+
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
|
|
80
|
+
isa = PBXFrameworksBuildPhase;
|
|
81
|
+
buildActionMask = 2147483647;
|
|
82
|
+
files = (
|
|
83
|
+
);
|
|
84
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
85
|
+
};
|
|
86
|
+
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
|
|
87
|
+
isa = PBXFrameworksBuildPhase;
|
|
88
|
+
buildActionMask = 2147483647;
|
|
89
|
+
files = (
|
|
90
|
+
);
|
|
91
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
92
|
+
};
|
|
93
|
+
/* End PBXFrameworksBuildPhase section */
|
|
94
|
+
|
|
95
|
+
/* Begin PBXGroup section */
|
|
96
|
+
00E356EF1AD99517003FC87E /* IamportReactNativeExampleTests */ = {
|
|
97
|
+
isa = PBXGroup;
|
|
98
|
+
children = (
|
|
99
|
+
00E356F21AD99517003FC87E /* IamportReactNativeExampleTests.m */,
|
|
100
|
+
00E356F01AD99517003FC87E /* Supporting Files */,
|
|
101
|
+
);
|
|
102
|
+
path = IamportReactNativeExampleTests;
|
|
103
|
+
sourceTree = "<group>";
|
|
104
|
+
};
|
|
105
|
+
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
106
|
+
isa = PBXGroup;
|
|
107
|
+
children = (
|
|
108
|
+
00E356F11AD99517003FC87E /* Info.plist */,
|
|
109
|
+
);
|
|
110
|
+
name = "Supporting Files";
|
|
111
|
+
sourceTree = "<group>";
|
|
112
|
+
};
|
|
113
|
+
13B07FAE1A68108700A75B9A /* IamportReactNativeExample */ = {
|
|
114
|
+
isa = PBXGroup;
|
|
115
|
+
children = (
|
|
116
|
+
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
|
117
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
118
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
119
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
120
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
121
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
122
|
+
13B07FB71A68108700A75B9A /* main.m */,
|
|
123
|
+
);
|
|
124
|
+
name = IamportReactNativeExample;
|
|
125
|
+
sourceTree = "<group>";
|
|
126
|
+
};
|
|
127
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
128
|
+
isa = PBXGroup;
|
|
129
|
+
children = (
|
|
130
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
131
|
+
ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
|
|
132
|
+
39EE5BF369D5C9094417D02E /* libPods-IamportReactNativeExample.a */,
|
|
133
|
+
);
|
|
134
|
+
name = Frameworks;
|
|
135
|
+
sourceTree = "<group>";
|
|
136
|
+
};
|
|
137
|
+
6B9684456A2045ADE5A6E47E /* Pods */ = {
|
|
138
|
+
isa = PBXGroup;
|
|
139
|
+
children = (
|
|
140
|
+
47F7ED3B7971BE374F7B8635 /* Pods-IamportReactNativeExample.debug.xcconfig */,
|
|
141
|
+
E00ACF0FDA8BF921659E2F9A /* Pods-IamportReactNativeExample.release.xcconfig */,
|
|
142
|
+
);
|
|
143
|
+
path = Pods;
|
|
144
|
+
sourceTree = "<group>";
|
|
145
|
+
};
|
|
146
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
147
|
+
isa = PBXGroup;
|
|
148
|
+
children = (
|
|
149
|
+
);
|
|
150
|
+
name = Libraries;
|
|
151
|
+
sourceTree = "<group>";
|
|
152
|
+
};
|
|
153
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
154
|
+
isa = PBXGroup;
|
|
155
|
+
children = (
|
|
156
|
+
12F325EF26808889007DF856 /* File.swift */,
|
|
157
|
+
13B07FAE1A68108700A75B9A /* IamportReactNativeExample */,
|
|
158
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
159
|
+
00E356EF1AD99517003FC87E /* IamportReactNativeExampleTests */,
|
|
160
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
161
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
162
|
+
6B9684456A2045ADE5A6E47E /* Pods */,
|
|
163
|
+
12F325EE26808889007DF856 /* IamportReactNativeExample-Bridging-Header.h */,
|
|
164
|
+
ED787A424A1642AFA4F86897 /* Resources */,
|
|
165
|
+
);
|
|
166
|
+
indentWidth = 2;
|
|
167
|
+
sourceTree = "<group>";
|
|
168
|
+
tabWidth = 2;
|
|
169
|
+
usesTabs = 0;
|
|
170
|
+
};
|
|
171
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
172
|
+
isa = PBXGroup;
|
|
173
|
+
children = (
|
|
174
|
+
13B07F961A680F5B00A75B9A /* IamportReactNativeExample.app */,
|
|
175
|
+
00E356EE1AD99517003FC87E /* IamportReactNativeExampleTests.xctest */,
|
|
176
|
+
2D02E47B1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS.app */,
|
|
177
|
+
2D02E4901E0B4A5D006451C7 /* IamportReactNativeExample-tvOSTests.xctest */,
|
|
178
|
+
);
|
|
179
|
+
name = Products;
|
|
180
|
+
sourceTree = "<group>";
|
|
181
|
+
};
|
|
182
|
+
ED787A424A1642AFA4F86897 /* Resources */ = {
|
|
183
|
+
isa = PBXGroup;
|
|
184
|
+
children = (
|
|
185
|
+
);
|
|
186
|
+
name = Resources;
|
|
187
|
+
sourceTree = "<group>";
|
|
188
|
+
};
|
|
189
|
+
/* End PBXGroup section */
|
|
190
|
+
|
|
191
|
+
/* Begin PBXNativeTarget section */
|
|
192
|
+
00E356ED1AD99517003FC87E /* IamportReactNativeExampleTests */ = {
|
|
193
|
+
isa = PBXNativeTarget;
|
|
194
|
+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "IamportReactNativeExampleTests" */;
|
|
195
|
+
buildPhases = (
|
|
196
|
+
00E356EA1AD99517003FC87E /* Sources */,
|
|
197
|
+
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
198
|
+
00E356EC1AD99517003FC87E /* Resources */,
|
|
199
|
+
);
|
|
200
|
+
buildRules = (
|
|
201
|
+
);
|
|
202
|
+
dependencies = (
|
|
203
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
204
|
+
);
|
|
205
|
+
name = IamportReactNativeExampleTests;
|
|
206
|
+
productName = IamportReactNativeExampleTests;
|
|
207
|
+
productReference = 00E356EE1AD99517003FC87E /* IamportReactNativeExampleTests.xctest */;
|
|
208
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
209
|
+
};
|
|
210
|
+
13B07F861A680F5B00A75B9A /* IamportReactNativeExample */ = {
|
|
211
|
+
isa = PBXNativeTarget;
|
|
212
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "IamportReactNativeExample" */;
|
|
213
|
+
buildPhases = (
|
|
214
|
+
4F0A6FC082772762E3E4C96C /* [CP] Check Pods Manifest.lock */,
|
|
215
|
+
FD10A7F022414F080027D42C /* Start Packager */,
|
|
216
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
217
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
218
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
219
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
220
|
+
C1D60D28B925C94BD88E79D7 /* [CP] Copy Pods Resources */,
|
|
221
|
+
1786057F13B3201F89C1D602 /* [CP] Embed Pods Frameworks */,
|
|
222
|
+
);
|
|
223
|
+
buildRules = (
|
|
224
|
+
);
|
|
225
|
+
dependencies = (
|
|
226
|
+
);
|
|
227
|
+
name = IamportReactNativeExample;
|
|
228
|
+
productName = IamportReactNativeExample;
|
|
229
|
+
productReference = 13B07F961A680F5B00A75B9A /* IamportReactNativeExample.app */;
|
|
230
|
+
productType = "com.apple.product-type.application";
|
|
231
|
+
};
|
|
232
|
+
2D02E47A1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS */ = {
|
|
233
|
+
isa = PBXNativeTarget;
|
|
234
|
+
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "IamportReactNativeExample-tvOS" */;
|
|
235
|
+
buildPhases = (
|
|
236
|
+
FD10A7F122414F3F0027D42C /* Start Packager */,
|
|
237
|
+
2D02E4771E0B4A5D006451C7 /* Sources */,
|
|
238
|
+
2D02E4781E0B4A5D006451C7 /* Frameworks */,
|
|
239
|
+
2D02E4791E0B4A5D006451C7 /* Resources */,
|
|
240
|
+
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
|
|
241
|
+
);
|
|
242
|
+
buildRules = (
|
|
243
|
+
);
|
|
244
|
+
dependencies = (
|
|
245
|
+
);
|
|
246
|
+
name = "IamportReactNativeExample-tvOS";
|
|
247
|
+
productName = "IamportReactNativeExample-tvOS";
|
|
248
|
+
productReference = 2D02E47B1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS.app */;
|
|
249
|
+
productType = "com.apple.product-type.application";
|
|
250
|
+
};
|
|
251
|
+
2D02E48F1E0B4A5D006451C7 /* IamportReactNativeExample-tvOSTests */ = {
|
|
252
|
+
isa = PBXNativeTarget;
|
|
253
|
+
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "IamportReactNativeExample-tvOSTests" */;
|
|
254
|
+
buildPhases = (
|
|
255
|
+
2D02E48C1E0B4A5D006451C7 /* Sources */,
|
|
256
|
+
2D02E48D1E0B4A5D006451C7 /* Frameworks */,
|
|
257
|
+
2D02E48E1E0B4A5D006451C7 /* Resources */,
|
|
258
|
+
);
|
|
259
|
+
buildRules = (
|
|
260
|
+
);
|
|
261
|
+
dependencies = (
|
|
262
|
+
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
|
|
263
|
+
);
|
|
264
|
+
name = "IamportReactNativeExample-tvOSTests";
|
|
265
|
+
productName = "IamportReactNativeExample-tvOSTests";
|
|
266
|
+
productReference = 2D02E4901E0B4A5D006451C7 /* IamportReactNativeExample-tvOSTests.xctest */;
|
|
267
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
268
|
+
};
|
|
269
|
+
/* End PBXNativeTarget section */
|
|
270
|
+
|
|
271
|
+
/* Begin PBXProject section */
|
|
272
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
273
|
+
isa = PBXProject;
|
|
274
|
+
attributes = {
|
|
275
|
+
LastUpgradeCheck = 1130;
|
|
276
|
+
TargetAttributes = {
|
|
277
|
+
00E356ED1AD99517003FC87E = {
|
|
278
|
+
CreatedOnToolsVersion = 6.2;
|
|
279
|
+
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
280
|
+
};
|
|
281
|
+
13B07F861A680F5B00A75B9A = {
|
|
282
|
+
LastSwiftMigration = 1250;
|
|
283
|
+
};
|
|
284
|
+
2D02E47A1E0B4A5D006451C7 = {
|
|
285
|
+
CreatedOnToolsVersion = 8.2.1;
|
|
286
|
+
ProvisioningStyle = Automatic;
|
|
287
|
+
};
|
|
288
|
+
2D02E48F1E0B4A5D006451C7 = {
|
|
289
|
+
CreatedOnToolsVersion = 8.2.1;
|
|
290
|
+
ProvisioningStyle = Automatic;
|
|
291
|
+
TestTargetID = 2D02E47A1E0B4A5D006451C7;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "IamportReactNativeExample" */;
|
|
296
|
+
compatibilityVersion = "Xcode 3.2";
|
|
297
|
+
developmentRegion = en;
|
|
298
|
+
hasScannedForEncodings = 0;
|
|
299
|
+
knownRegions = (
|
|
300
|
+
en,
|
|
301
|
+
Base,
|
|
302
|
+
);
|
|
303
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
304
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
305
|
+
projectDirPath = "";
|
|
306
|
+
projectRoot = "";
|
|
307
|
+
targets = (
|
|
308
|
+
13B07F861A680F5B00A75B9A /* IamportReactNativeExample */,
|
|
309
|
+
00E356ED1AD99517003FC87E /* IamportReactNativeExampleTests */,
|
|
310
|
+
2D02E47A1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS */,
|
|
311
|
+
2D02E48F1E0B4A5D006451C7 /* IamportReactNativeExample-tvOSTests */,
|
|
312
|
+
);
|
|
313
|
+
};
|
|
314
|
+
/* End PBXProject section */
|
|
315
|
+
|
|
316
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
317
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
318
|
+
isa = PBXResourcesBuildPhase;
|
|
319
|
+
buildActionMask = 2147483647;
|
|
320
|
+
files = (
|
|
321
|
+
);
|
|
322
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
323
|
+
};
|
|
324
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
325
|
+
isa = PBXResourcesBuildPhase;
|
|
326
|
+
buildActionMask = 2147483647;
|
|
327
|
+
files = (
|
|
328
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
329
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
330
|
+
);
|
|
331
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
332
|
+
};
|
|
333
|
+
2D02E4791E0B4A5D006451C7 /* Resources */ = {
|
|
334
|
+
isa = PBXResourcesBuildPhase;
|
|
335
|
+
buildActionMask = 2147483647;
|
|
336
|
+
files = (
|
|
337
|
+
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
|
|
338
|
+
);
|
|
339
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
340
|
+
};
|
|
341
|
+
2D02E48E1E0B4A5D006451C7 /* Resources */ = {
|
|
342
|
+
isa = PBXResourcesBuildPhase;
|
|
343
|
+
buildActionMask = 2147483647;
|
|
344
|
+
files = (
|
|
345
|
+
);
|
|
346
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
347
|
+
};
|
|
348
|
+
/* End PBXResourcesBuildPhase section */
|
|
349
|
+
|
|
350
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
351
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
352
|
+
isa = PBXShellScriptBuildPhase;
|
|
353
|
+
buildActionMask = 2147483647;
|
|
354
|
+
files = (
|
|
355
|
+
);
|
|
356
|
+
inputPaths = (
|
|
357
|
+
);
|
|
358
|
+
name = "Bundle React Native code and images";
|
|
359
|
+
outputPaths = (
|
|
360
|
+
);
|
|
361
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
362
|
+
shellPath = /bin/sh;
|
|
363
|
+
shellScript = "export NODE_BINARY=/opt/homebrew/bin/node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
|
|
364
|
+
};
|
|
365
|
+
1786057F13B3201F89C1D602 /* [CP] Embed Pods Frameworks */ = {
|
|
366
|
+
isa = PBXShellScriptBuildPhase;
|
|
367
|
+
buildActionMask = 2147483647;
|
|
368
|
+
files = (
|
|
369
|
+
);
|
|
370
|
+
inputPaths = (
|
|
371
|
+
"${PODS_ROOT}/Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample-frameworks.sh",
|
|
372
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion",
|
|
373
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog",
|
|
374
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
|
|
375
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
|
376
|
+
);
|
|
377
|
+
name = "[CP] Embed Pods Frameworks";
|
|
378
|
+
outputPaths = (
|
|
379
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework",
|
|
380
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/glog.framework",
|
|
381
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
|
|
382
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
|
|
383
|
+
);
|
|
384
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
385
|
+
shellPath = /bin/sh;
|
|
386
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample-frameworks.sh\"\n";
|
|
387
|
+
showEnvVarsInLog = 0;
|
|
388
|
+
};
|
|
389
|
+
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
|
|
390
|
+
isa = PBXShellScriptBuildPhase;
|
|
391
|
+
buildActionMask = 2147483647;
|
|
392
|
+
files = (
|
|
393
|
+
);
|
|
394
|
+
inputPaths = (
|
|
395
|
+
);
|
|
396
|
+
name = "Bundle React Native Code And Images";
|
|
397
|
+
outputPaths = (
|
|
398
|
+
);
|
|
399
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
400
|
+
shellPath = /bin/sh;
|
|
401
|
+
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
|
|
402
|
+
};
|
|
403
|
+
4F0A6FC082772762E3E4C96C /* [CP] Check Pods Manifest.lock */ = {
|
|
404
|
+
isa = PBXShellScriptBuildPhase;
|
|
405
|
+
buildActionMask = 2147483647;
|
|
406
|
+
files = (
|
|
407
|
+
);
|
|
408
|
+
inputFileListPaths = (
|
|
409
|
+
);
|
|
410
|
+
inputPaths = (
|
|
411
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
412
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
413
|
+
);
|
|
414
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
415
|
+
outputFileListPaths = (
|
|
416
|
+
);
|
|
417
|
+
outputPaths = (
|
|
418
|
+
"$(DERIVED_FILE_DIR)/Pods-IamportReactNativeExample-checkManifestLockResult.txt",
|
|
419
|
+
);
|
|
420
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
421
|
+
shellPath = /bin/sh;
|
|
422
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
423
|
+
showEnvVarsInLog = 0;
|
|
424
|
+
};
|
|
425
|
+
C1D60D28B925C94BD88E79D7 /* [CP] Copy Pods Resources */ = {
|
|
426
|
+
isa = PBXShellScriptBuildPhase;
|
|
427
|
+
buildActionMask = 2147483647;
|
|
428
|
+
files = (
|
|
429
|
+
);
|
|
430
|
+
inputPaths = (
|
|
431
|
+
"${PODS_ROOT}/Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample-resources.sh",
|
|
432
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
|
|
433
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
|
|
434
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
|
|
435
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
|
|
436
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
|
|
437
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
|
|
438
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
|
|
439
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
|
|
440
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
|
|
441
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
|
|
442
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
|
|
443
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
|
|
444
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
|
|
445
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
|
|
446
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
|
|
447
|
+
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
|
|
448
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
449
|
+
);
|
|
450
|
+
name = "[CP] Copy Pods Resources";
|
|
451
|
+
outputPaths = (
|
|
452
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
|
|
453
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
|
|
454
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
|
|
455
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
|
|
456
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
|
|
457
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
|
|
458
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
|
|
459
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
|
|
460
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
|
|
461
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
|
|
462
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
|
|
463
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
|
|
464
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
|
|
465
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
|
|
466
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
|
|
467
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
|
|
468
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
469
|
+
);
|
|
470
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
471
|
+
shellPath = /bin/sh;
|
|
472
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-IamportReactNativeExample/Pods-IamportReactNativeExample-resources.sh\"\n";
|
|
473
|
+
showEnvVarsInLog = 0;
|
|
474
|
+
};
|
|
475
|
+
FD10A7F022414F080027D42C /* Start Packager */ = {
|
|
476
|
+
isa = PBXShellScriptBuildPhase;
|
|
477
|
+
buildActionMask = 2147483647;
|
|
478
|
+
files = (
|
|
479
|
+
);
|
|
480
|
+
inputFileListPaths = (
|
|
481
|
+
);
|
|
482
|
+
inputPaths = (
|
|
483
|
+
);
|
|
484
|
+
name = "Start Packager";
|
|
485
|
+
outputFileListPaths = (
|
|
486
|
+
);
|
|
487
|
+
outputPaths = (
|
|
488
|
+
);
|
|
489
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
490
|
+
shellPath = /bin/sh;
|
|
491
|
+
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
|
|
492
|
+
showEnvVarsInLog = 0;
|
|
493
|
+
};
|
|
494
|
+
FD10A7F122414F3F0027D42C /* Start Packager */ = {
|
|
495
|
+
isa = PBXShellScriptBuildPhase;
|
|
496
|
+
buildActionMask = 2147483647;
|
|
497
|
+
files = (
|
|
498
|
+
);
|
|
499
|
+
inputFileListPaths = (
|
|
500
|
+
);
|
|
501
|
+
inputPaths = (
|
|
502
|
+
);
|
|
503
|
+
name = "Start Packager";
|
|
504
|
+
outputFileListPaths = (
|
|
505
|
+
);
|
|
506
|
+
outputPaths = (
|
|
507
|
+
);
|
|
508
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
509
|
+
shellPath = /bin/sh;
|
|
510
|
+
shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
|
|
511
|
+
showEnvVarsInLog = 0;
|
|
512
|
+
};
|
|
513
|
+
/* End PBXShellScriptBuildPhase section */
|
|
514
|
+
|
|
515
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
516
|
+
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
517
|
+
isa = PBXSourcesBuildPhase;
|
|
518
|
+
buildActionMask = 2147483647;
|
|
519
|
+
files = (
|
|
520
|
+
00E356F31AD99517003FC87E /* IamportReactNativeExampleTests.m in Sources */,
|
|
521
|
+
);
|
|
522
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
523
|
+
};
|
|
524
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
525
|
+
isa = PBXSourcesBuildPhase;
|
|
526
|
+
buildActionMask = 2147483647;
|
|
527
|
+
files = (
|
|
528
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
|
529
|
+
12F325F026808889007DF856 /* File.swift in Sources */,
|
|
530
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
531
|
+
);
|
|
532
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
533
|
+
};
|
|
534
|
+
2D02E4771E0B4A5D006451C7 /* Sources */ = {
|
|
535
|
+
isa = PBXSourcesBuildPhase;
|
|
536
|
+
buildActionMask = 2147483647;
|
|
537
|
+
files = (
|
|
538
|
+
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
|
|
539
|
+
2D02E4BC1E0B4A80006451C7 /* AppDelegate.mm in Sources */,
|
|
540
|
+
);
|
|
541
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
542
|
+
};
|
|
543
|
+
2D02E48C1E0B4A5D006451C7 /* Sources */ = {
|
|
544
|
+
isa = PBXSourcesBuildPhase;
|
|
545
|
+
buildActionMask = 2147483647;
|
|
546
|
+
files = (
|
|
547
|
+
2DCD954D1E0B4F2C00145EB5 /* IamportReactNativeExampleTests.m in Sources */,
|
|
548
|
+
);
|
|
549
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
550
|
+
};
|
|
551
|
+
/* End PBXSourcesBuildPhase section */
|
|
552
|
+
|
|
553
|
+
/* Begin PBXTargetDependency section */
|
|
554
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
555
|
+
isa = PBXTargetDependency;
|
|
556
|
+
target = 13B07F861A680F5B00A75B9A /* IamportReactNativeExample */;
|
|
557
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
558
|
+
};
|
|
559
|
+
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
|
|
560
|
+
isa = PBXTargetDependency;
|
|
561
|
+
target = 2D02E47A1E0B4A5D006451C7 /* IamportReactNativeExample-tvOS */;
|
|
562
|
+
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
|
|
563
|
+
};
|
|
564
|
+
/* End PBXTargetDependency section */
|
|
565
|
+
|
|
566
|
+
/* Begin XCBuildConfiguration section */
|
|
567
|
+
00E356F61AD99517003FC87E /* Debug */ = {
|
|
568
|
+
isa = XCBuildConfiguration;
|
|
569
|
+
buildSettings = {
|
|
570
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
571
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
572
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
573
|
+
"DEBUG=1",
|
|
574
|
+
"$(inherited)",
|
|
575
|
+
);
|
|
576
|
+
INFOPLIST_FILE = IamportReactNativeExampleTests/Info.plist;
|
|
577
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
|
578
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
579
|
+
OTHER_LDFLAGS = (
|
|
580
|
+
"-ObjC",
|
|
581
|
+
"-lc++",
|
|
582
|
+
"$(inherited)",
|
|
583
|
+
);
|
|
584
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.iamportreactnative;
|
|
585
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
586
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IamportReactNativeExample.app/IamportReactNativeExample";
|
|
587
|
+
};
|
|
588
|
+
name = Debug;
|
|
589
|
+
};
|
|
590
|
+
00E356F71AD99517003FC87E /* Release */ = {
|
|
591
|
+
isa = XCBuildConfiguration;
|
|
592
|
+
buildSettings = {
|
|
593
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
594
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
595
|
+
COPY_PHASE_STRIP = NO;
|
|
596
|
+
INFOPLIST_FILE = IamportReactNativeExampleTests/Info.plist;
|
|
597
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
|
598
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
599
|
+
OTHER_LDFLAGS = (
|
|
600
|
+
"-ObjC",
|
|
601
|
+
"-lc++",
|
|
602
|
+
"$(inherited)",
|
|
603
|
+
);
|
|
604
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.iamportreactnative;
|
|
605
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
606
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IamportReactNativeExample.app/IamportReactNativeExample";
|
|
607
|
+
};
|
|
608
|
+
name = Release;
|
|
609
|
+
};
|
|
610
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
611
|
+
isa = XCBuildConfiguration;
|
|
612
|
+
baseConfigurationReference = 47F7ED3B7971BE374F7B8635 /* Pods-IamportReactNativeExample.debug.xcconfig */;
|
|
613
|
+
buildSettings = {
|
|
614
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
615
|
+
CLANG_ENABLE_MODULES = YES;
|
|
616
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
617
|
+
DEVELOPMENT_TEAM = NLA2N3C754;
|
|
618
|
+
ENABLE_BITCODE = NO;
|
|
619
|
+
INFOPLIST_FILE = IamportReactNativeExample/Info.plist;
|
|
620
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
621
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
622
|
+
OTHER_LDFLAGS = (
|
|
623
|
+
"$(inherited)",
|
|
624
|
+
"-ObjC",
|
|
625
|
+
"-lc++",
|
|
626
|
+
);
|
|
627
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.iamportreactnative;
|
|
628
|
+
PRODUCT_NAME = IamportReactNativeExample;
|
|
629
|
+
SWIFT_OBJC_BRIDGING_HEADER = "IamportReactNativeExample-Bridging-Header.h";
|
|
630
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
631
|
+
SWIFT_VERSION = 5.0;
|
|
632
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
633
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
634
|
+
};
|
|
635
|
+
name = Debug;
|
|
636
|
+
};
|
|
637
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
638
|
+
isa = XCBuildConfiguration;
|
|
639
|
+
baseConfigurationReference = E00ACF0FDA8BF921659E2F9A /* Pods-IamportReactNativeExample.release.xcconfig */;
|
|
640
|
+
buildSettings = {
|
|
641
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
642
|
+
CLANG_ENABLE_MODULES = YES;
|
|
643
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
644
|
+
DEVELOPMENT_TEAM = NLA2N3C754;
|
|
645
|
+
INFOPLIST_FILE = IamportReactNativeExample/Info.plist;
|
|
646
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
647
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
648
|
+
OTHER_LDFLAGS = (
|
|
649
|
+
"$(inherited)",
|
|
650
|
+
"-ObjC",
|
|
651
|
+
"-lc++",
|
|
652
|
+
);
|
|
653
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.iamportreactnative;
|
|
654
|
+
PRODUCT_NAME = IamportReactNativeExample;
|
|
655
|
+
SWIFT_OBJC_BRIDGING_HEADER = "IamportReactNativeExample-Bridging-Header.h";
|
|
656
|
+
SWIFT_VERSION = 5.0;
|
|
657
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
658
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
659
|
+
};
|
|
660
|
+
name = Release;
|
|
661
|
+
};
|
|
662
|
+
2D02E4971E0B4A5E006451C7 /* Debug */ = {
|
|
663
|
+
isa = XCBuildConfiguration;
|
|
664
|
+
buildSettings = {
|
|
665
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
|
666
|
+
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
|
667
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
668
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
669
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
670
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
671
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
672
|
+
ENABLE_TESTABILITY = YES;
|
|
673
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
674
|
+
INFOPLIST_FILE = "IamportReactNativeExample-tvOS/Info.plist";
|
|
675
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
676
|
+
OTHER_LDFLAGS = (
|
|
677
|
+
"$(inherited)",
|
|
678
|
+
"-ObjC",
|
|
679
|
+
"-lc++",
|
|
680
|
+
);
|
|
681
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.IamportReactNativeExample-tvOS";
|
|
682
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
683
|
+
SDKROOT = appletvos;
|
|
684
|
+
TARGETED_DEVICE_FAMILY = 3;
|
|
685
|
+
TVOS_DEPLOYMENT_TARGET = 10.0;
|
|
686
|
+
};
|
|
687
|
+
name = Debug;
|
|
688
|
+
};
|
|
689
|
+
2D02E4981E0B4A5E006451C7 /* Release */ = {
|
|
690
|
+
isa = XCBuildConfiguration;
|
|
691
|
+
buildSettings = {
|
|
692
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
|
693
|
+
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
|
694
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
695
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
696
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
697
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
698
|
+
COPY_PHASE_STRIP = NO;
|
|
699
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
700
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
701
|
+
INFOPLIST_FILE = "IamportReactNativeExample-tvOS/Info.plist";
|
|
702
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
703
|
+
OTHER_LDFLAGS = (
|
|
704
|
+
"$(inherited)",
|
|
705
|
+
"-ObjC",
|
|
706
|
+
"-lc++",
|
|
707
|
+
);
|
|
708
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.IamportReactNativeExample-tvOS";
|
|
709
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
710
|
+
SDKROOT = appletvos;
|
|
711
|
+
TARGETED_DEVICE_FAMILY = 3;
|
|
712
|
+
TVOS_DEPLOYMENT_TARGET = 10.0;
|
|
713
|
+
};
|
|
714
|
+
name = Release;
|
|
715
|
+
};
|
|
716
|
+
2D02E4991E0B4A5E006451C7 /* Debug */ = {
|
|
717
|
+
isa = XCBuildConfiguration;
|
|
718
|
+
buildSettings = {
|
|
719
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
720
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
721
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
722
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
723
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
724
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
725
|
+
ENABLE_TESTABILITY = YES;
|
|
726
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
727
|
+
INFOPLIST_FILE = "IamportReactNativeExample-tvOSTests/Info.plist";
|
|
728
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
729
|
+
OTHER_LDFLAGS = (
|
|
730
|
+
"$(inherited)",
|
|
731
|
+
"-ObjC",
|
|
732
|
+
"-lc++",
|
|
733
|
+
);
|
|
734
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.IamportReactNativeExample-tvOSTests";
|
|
735
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
736
|
+
SDKROOT = appletvos;
|
|
737
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IamportReactNativeExample-tvOS.app/IamportReactNativeExample-tvOS";
|
|
738
|
+
TVOS_DEPLOYMENT_TARGET = 10.1;
|
|
739
|
+
};
|
|
740
|
+
name = Debug;
|
|
741
|
+
};
|
|
742
|
+
2D02E49A1E0B4A5E006451C7 /* Release */ = {
|
|
743
|
+
isa = XCBuildConfiguration;
|
|
744
|
+
buildSettings = {
|
|
745
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
746
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
747
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
748
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
749
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
750
|
+
COPY_PHASE_STRIP = NO;
|
|
751
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
752
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
753
|
+
INFOPLIST_FILE = "IamportReactNativeExample-tvOSTests/Info.plist";
|
|
754
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
755
|
+
OTHER_LDFLAGS = (
|
|
756
|
+
"$(inherited)",
|
|
757
|
+
"-ObjC",
|
|
758
|
+
"-lc++",
|
|
759
|
+
);
|
|
760
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.IamportReactNativeExample-tvOSTests";
|
|
761
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
762
|
+
SDKROOT = appletvos;
|
|
763
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/IamportReactNativeExample-tvOS.app/IamportReactNativeExample-tvOS";
|
|
764
|
+
TVOS_DEPLOYMENT_TARGET = 10.1;
|
|
765
|
+
};
|
|
766
|
+
name = Release;
|
|
767
|
+
};
|
|
768
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
769
|
+
isa = XCBuildConfiguration;
|
|
770
|
+
buildSettings = {
|
|
771
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
772
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
773
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
774
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
|
775
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
776
|
+
CLANG_ENABLE_MODULES = YES;
|
|
777
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
778
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
779
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
780
|
+
CLANG_WARN_COMMA = YES;
|
|
781
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
782
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
783
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
784
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
785
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
786
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
787
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
788
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
789
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
790
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
791
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
792
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
793
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
794
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
795
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
796
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
797
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
798
|
+
COPY_PHASE_STRIP = NO;
|
|
799
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
800
|
+
ENABLE_TESTABILITY = YES;
|
|
801
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
802
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
803
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
804
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
805
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
806
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
807
|
+
"DEBUG=1",
|
|
808
|
+
"$(inherited)",
|
|
809
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
|
810
|
+
);
|
|
811
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
812
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
813
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
814
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
815
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
816
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
817
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
818
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
819
|
+
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
820
|
+
LIBRARY_SEARCH_PATHS = (
|
|
821
|
+
"$(SDKROOT)/usr/lib/swift",
|
|
822
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
823
|
+
"\"$(inherited)\"",
|
|
824
|
+
);
|
|
825
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
826
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
827
|
+
OTHER_CFLAGS = (
|
|
828
|
+
"$(inherited)",
|
|
829
|
+
" ",
|
|
830
|
+
);
|
|
831
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
832
|
+
"$(inherited)",
|
|
833
|
+
" ",
|
|
834
|
+
);
|
|
835
|
+
OTHER_LDFLAGS = (
|
|
836
|
+
"$(inherited)",
|
|
837
|
+
"-Wl",
|
|
838
|
+
"-ld_classic",
|
|
839
|
+
);
|
|
840
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
841
|
+
SDKROOT = iphoneos;
|
|
842
|
+
};
|
|
843
|
+
name = Debug;
|
|
844
|
+
};
|
|
845
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
846
|
+
isa = XCBuildConfiguration;
|
|
847
|
+
buildSettings = {
|
|
848
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
849
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
850
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
851
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
|
852
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
853
|
+
CLANG_ENABLE_MODULES = YES;
|
|
854
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
855
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
856
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
857
|
+
CLANG_WARN_COMMA = YES;
|
|
858
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
859
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
860
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
861
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
862
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
863
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
864
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
865
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
866
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
867
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
868
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
869
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
870
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
871
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
872
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
873
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
874
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
875
|
+
COPY_PHASE_STRIP = YES;
|
|
876
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
877
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
878
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
879
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
880
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
881
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
882
|
+
"$(inherited)",
|
|
883
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
|
884
|
+
);
|
|
885
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
886
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
887
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
888
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
889
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
890
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
891
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
|
|
892
|
+
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
|
|
893
|
+
LIBRARY_SEARCH_PATHS = (
|
|
894
|
+
"$(SDKROOT)/usr/lib/swift",
|
|
895
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
896
|
+
"\"$(inherited)\"",
|
|
897
|
+
);
|
|
898
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
899
|
+
OTHER_CFLAGS = (
|
|
900
|
+
"$(inherited)",
|
|
901
|
+
" ",
|
|
902
|
+
);
|
|
903
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
904
|
+
"$(inherited)",
|
|
905
|
+
" ",
|
|
906
|
+
);
|
|
907
|
+
OTHER_LDFLAGS = (
|
|
908
|
+
"$(inherited)",
|
|
909
|
+
"-Wl",
|
|
910
|
+
"-ld_classic",
|
|
911
|
+
);
|
|
912
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
913
|
+
SDKROOT = iphoneos;
|
|
914
|
+
VALIDATE_PRODUCT = YES;
|
|
915
|
+
};
|
|
916
|
+
name = Release;
|
|
917
|
+
};
|
|
918
|
+
/* End XCBuildConfiguration section */
|
|
919
|
+
|
|
920
|
+
/* Begin XCConfigurationList section */
|
|
921
|
+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "IamportReactNativeExampleTests" */ = {
|
|
922
|
+
isa = XCConfigurationList;
|
|
923
|
+
buildConfigurations = (
|
|
924
|
+
00E356F61AD99517003FC87E /* Debug */,
|
|
925
|
+
00E356F71AD99517003FC87E /* Release */,
|
|
926
|
+
);
|
|
927
|
+
defaultConfigurationIsVisible = 0;
|
|
928
|
+
defaultConfigurationName = Release;
|
|
929
|
+
};
|
|
930
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "IamportReactNativeExample" */ = {
|
|
931
|
+
isa = XCConfigurationList;
|
|
932
|
+
buildConfigurations = (
|
|
933
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
934
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
935
|
+
);
|
|
936
|
+
defaultConfigurationIsVisible = 0;
|
|
937
|
+
defaultConfigurationName = Release;
|
|
938
|
+
};
|
|
939
|
+
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "IamportReactNativeExample-tvOS" */ = {
|
|
940
|
+
isa = XCConfigurationList;
|
|
941
|
+
buildConfigurations = (
|
|
942
|
+
2D02E4971E0B4A5E006451C7 /* Debug */,
|
|
943
|
+
2D02E4981E0B4A5E006451C7 /* Release */,
|
|
944
|
+
);
|
|
945
|
+
defaultConfigurationIsVisible = 0;
|
|
946
|
+
defaultConfigurationName = Release;
|
|
947
|
+
};
|
|
948
|
+
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "IamportReactNativeExample-tvOSTests" */ = {
|
|
949
|
+
isa = XCConfigurationList;
|
|
950
|
+
buildConfigurations = (
|
|
951
|
+
2D02E4991E0B4A5E006451C7 /* Debug */,
|
|
952
|
+
2D02E49A1E0B4A5E006451C7 /* Release */,
|
|
953
|
+
);
|
|
954
|
+
defaultConfigurationIsVisible = 0;
|
|
955
|
+
defaultConfigurationName = Release;
|
|
956
|
+
};
|
|
957
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "IamportReactNativeExample" */ = {
|
|
958
|
+
isa = XCConfigurationList;
|
|
959
|
+
buildConfigurations = (
|
|
960
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
961
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
962
|
+
);
|
|
963
|
+
defaultConfigurationIsVisible = 0;
|
|
964
|
+
defaultConfigurationName = Release;
|
|
965
|
+
};
|
|
966
|
+
/* End XCConfigurationList section */
|
|
967
|
+
};
|
|
968
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
969
|
+
}
|