iamport-react-native 2.0.13 → 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.
Files changed (376) hide show
  1. package/.circleci/config.yml +98 -0
  2. package/.editorconfig +15 -0
  3. package/.gitattributes +3 -0
  4. package/.gitignore +69 -0
  5. package/.yarnrc +3 -0
  6. package/.yarnrc.yml +1 -0
  7. package/README.md +1 -1
  8. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  9. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  10. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  11. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  12. package/android/.gradle/8.9/executionHistory/executionHistory.lock +0 -0
  13. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  14. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  15. package/android/.gradle/8.9/gc.properties +0 -0
  16. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  17. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  18. package/android/.gradle/vcs-1/gc.properties +0 -0
  19. package/babel.config.js +3 -0
  20. package/example/.gitignore +69 -0
  21. package/example/README.md +44 -0
  22. package/example/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  23. package/example/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
  24. package/example/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
  25. package/example/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  26. package/example/android/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
  27. package/example/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
  28. package/example/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  29. package/example/android/.gradle/7.5.1/fileHashes/fileHashes.bin +0 -0
  30. package/example/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  31. package/example/android/.gradle/7.5.1/gc.properties +0 -0
  32. package/example/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  33. package/example/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  34. package/example/android/.gradle/vcs-1/gc.properties +0 -0
  35. package/example/android/app/build.gradle +183 -0
  36. package/example/android/app/debug.keystore +0 -0
  37. package/example/android/app/proguard-rules.pro +10 -0
  38. package/example/android/app/src/debug/AndroidManifest.xml +8 -0
  39. package/example/android/app/src/debug/java/com/example/iamportreactnative/ReactNativeFlipper.java +69 -0
  40. package/example/android/app/src/main/AndroidManifest.xml +34 -0
  41. package/example/android/app/src/main/java/com/example/iamportreactnative/MainActivity.java +15 -0
  42. package/example/android/app/src/main/java/com/example/iamportreactnative/MainApplication.java +80 -0
  43. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  44. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  45. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  46. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  47. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  48. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  49. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  50. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  51. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  52. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  53. package/example/android/app/src/main/res/values/strings.xml +3 -0
  54. package/example/android/app/src/main/res/values/styles.xml +9 -0
  55. package/example/android/build.gradle +21 -0
  56. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  57. package/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  58. package/example/android/gradle.properties +44 -0
  59. package/example/android/gradlew +183 -0
  60. package/example/android/gradlew.bat +103 -0
  61. package/example/android/settings.gradle +9 -0
  62. package/example/app.json +4 -0
  63. package/example/babel.config.js +11 -0
  64. package/example/index.js +5 -0
  65. package/example/ios/File.swift +8 -0
  66. package/example/ios/Gemfile +7 -0
  67. package/example/ios/Gemfile.lock +99 -0
  68. package/example/ios/IamportReactNativeExample/AppDelegate.h +15 -0
  69. package/example/ios/IamportReactNativeExample/AppDelegate.mm +138 -0
  70. package/example/ios/IamportReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  71. package/example/ios/IamportReactNativeExample/Images.xcassets/Contents.json +6 -0
  72. package/example/ios/IamportReactNativeExample/Info.plist +121 -0
  73. package/example/ios/IamportReactNativeExample/LaunchScreen.storyboard +58 -0
  74. package/example/ios/IamportReactNativeExample/main.m +16 -0
  75. package/example/ios/IamportReactNativeExample-Bridging-Header.h +3 -0
  76. package/example/ios/IamportReactNativeExample.xcodeproj/project.pbxproj +969 -0
  77. package/example/ios/IamportReactNativeExample.xcodeproj/xcshareddata/xcschemes/IamportReactNativeExample.xcscheme +99 -0
  78. package/example/ios/IamportReactNativeExample.xcworkspace/contents.xcworkspacedata +10 -0
  79. package/example/ios/IamportReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  80. package/example/ios/Podfile +57 -0
  81. package/example/ios/Podfile.lock +756 -0
  82. package/example/metro.config.js +66 -0
  83. package/example/package.json +40 -0
  84. package/example/src/App.tsx +17 -0
  85. package/example/src/Certification/index.tsx +30 -0
  86. package/example/src/CertificationResult/index.tsx +79 -0
  87. package/example/src/CertificationTest/index.tsx +214 -0
  88. package/example/src/Home/index.tsx +87 -0
  89. package/example/src/Loading/index.tsx +12 -0
  90. package/example/src/NavigationService.tsx +127 -0
  91. package/example/src/Payment/index.tsx +28 -0
  92. package/example/src/PaymentResult/index.tsx +96 -0
  93. package/example/src/PaymentTest/index.tsx +383 -0
  94. package/example/src/Picker/index.tsx +60 -0
  95. package/example/src/constants.ts +274 -0
  96. package/example/src/utils.ts +83 -0
  97. package/example/yarn.lock +7358 -0
  98. package/exampleForExpo/.buckconfig +6 -0
  99. package/exampleForExpo/.expo/README.md +8 -0
  100. package/exampleForExpo/.expo/devices.json +3 -0
  101. package/exampleForExpo/.gitattributes +1 -0
  102. package/exampleForExpo/.gitignore +125 -0
  103. package/exampleForExpo/.idea/.gitignore +3 -0
  104. package/exampleForExpo/.idea/caches/deviceStreaming.xml +549 -0
  105. package/exampleForExpo/.idea/exampleForExpo.iml +9 -0
  106. package/exampleForExpo/.idea/misc.xml +6 -0
  107. package/exampleForExpo/.idea/modules.xml +8 -0
  108. package/exampleForExpo/.idea/vcs.xml +6 -0
  109. package/exampleForExpo/.idea/workspace.xml +53 -0
  110. package/exampleForExpo/README.md +58 -0
  111. package/exampleForExpo/__tests__/App.js +10 -0
  112. package/exampleForExpo/android/.gitignore +21 -0
  113. package/exampleForExpo/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  114. package/exampleForExpo/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  115. package/exampleForExpo/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  116. package/exampleForExpo/android/.gradle/7.5.1/gc.properties +0 -0
  117. package/exampleForExpo/android/.gradle/vcs-1/gc.properties +0 -0
  118. package/exampleForExpo/android/app/BUCK +55 -0
  119. package/exampleForExpo/android/app/build.gradle +362 -0
  120. package/exampleForExpo/android/app/build_defs.bzl +19 -0
  121. package/exampleForExpo/android/app/debug.keystore +0 -0
  122. package/exampleForExpo/android/app/proguard-rules.pro +14 -0
  123. package/exampleForExpo/android/app/src/debug/AndroidManifest.xml +7 -0
  124. package/exampleForExpo/android/app/src/debug/java/kr/iamport/exampleForExpo/ReactNativeFlipper.java +69 -0
  125. package/exampleForExpo/android/app/src/main/AndroidManifest.xml +34 -0
  126. package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/MainActivity.java +83 -0
  127. package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/MainApplication.java +106 -0
  128. package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/MainApplicationReactNativeHost.java +117 -0
  129. package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/components/MainComponentsRegistry.java +36 -0
  130. package/exampleForExpo/android/app/src/main/java/kr/iamport/exampleForExpo/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -0
  131. package/exampleForExpo/android/app/src/main/jni/CMakeLists.txt +7 -0
  132. package/exampleForExpo/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
  133. package/exampleForExpo/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
  134. package/exampleForExpo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
  135. package/exampleForExpo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
  136. package/exampleForExpo/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
  137. package/exampleForExpo/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
  138. package/exampleForExpo/android/app/src/main/jni/OnLoad.cpp +11 -0
  139. package/exampleForExpo/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  140. package/exampleForExpo/android/app/src/main/res/drawable/splashscreen.xml +4 -0
  141. package/exampleForExpo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  142. package/exampleForExpo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  143. package/exampleForExpo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  144. package/exampleForExpo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  145. package/exampleForExpo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  146. package/exampleForExpo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  147. package/exampleForExpo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  148. package/exampleForExpo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  149. package/exampleForExpo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  150. package/exampleForExpo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  151. package/exampleForExpo/android/app/src/main/res/values/colors.xml +4 -0
  152. package/exampleForExpo/android/app/src/main/res/values/strings.xml +3 -0
  153. package/exampleForExpo/android/app/src/main/res/values/styles.xml +17 -0
  154. package/exampleForExpo/android/app/src/main/res/values-night/colors.xml +1 -0
  155. package/exampleForExpo/android/build.gradle +65 -0
  156. package/exampleForExpo/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  157. package/exampleForExpo/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  158. package/exampleForExpo/android/gradle.properties +53 -0
  159. package/exampleForExpo/android/gradlew +240 -0
  160. package/exampleForExpo/android/gradlew.bat +91 -0
  161. package/exampleForExpo/android/settings.gradle +17 -0
  162. package/exampleForExpo/app.json +16 -0
  163. package/exampleForExpo/babel.config.js +11 -0
  164. package/exampleForExpo/index.js +9 -0
  165. package/exampleForExpo/ios/.gitignore +30 -0
  166. package/exampleForExpo/ios/.xcode.env +11 -0
  167. package/exampleForExpo/ios/Podfile +61 -0
  168. package/exampleForExpo/ios/Podfile.lock +734 -0
  169. package/exampleForExpo/ios/Podfile.properties.json +3 -0
  170. package/exampleForExpo/ios/exampleForExpo/AppDelegate.h +9 -0
  171. package/exampleForExpo/ios/exampleForExpo/AppDelegate.mm +166 -0
  172. package/exampleForExpo/ios/exampleForExpo/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  173. package/exampleForExpo/ios/exampleForExpo/Images.xcassets/Contents.json +6 -0
  174. package/exampleForExpo/ios/exampleForExpo/Images.xcassets/SplashScreenBackground.imageset/Contents.json +21 -0
  175. package/exampleForExpo/ios/exampleForExpo/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
  176. package/exampleForExpo/ios/exampleForExpo/Info.plist +118 -0
  177. package/exampleForExpo/ios/exampleForExpo/SplashScreen.storyboard +43 -0
  178. package/exampleForExpo/ios/exampleForExpo/Supporting/Expo.plist +16 -0
  179. package/exampleForExpo/ios/exampleForExpo/exampleForExpo.entitlements +8 -0
  180. package/exampleForExpo/ios/exampleForExpo/main.m +10 -0
  181. package/exampleForExpo/ios/exampleForExpo/noop-file.swift +4 -0
  182. package/exampleForExpo/ios/exampleForExpo.xcodeproj/project.pbxproj +544 -0
  183. package/exampleForExpo/ios/exampleForExpo.xcodeproj/xcshareddata/xcschemes/exampleForExpo.xcscheme +88 -0
  184. package/exampleForExpo/ios/exampleForExpo.xcworkspace/contents.xcworkspacedata +10 -0
  185. package/exampleForExpo/ios/exampleForExpo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  186. package/exampleForExpo/metro.config.js +62 -0
  187. package/exampleForExpo/package.json +40 -0
  188. package/exampleForExpo/src/App.js +14 -0
  189. package/exampleForExpo/src/Certification/index.js +25 -0
  190. package/exampleForExpo/src/CertificationResult/index.js +61 -0
  191. package/exampleForExpo/src/CertificationTest/index.js +151 -0
  192. package/exampleForExpo/src/Home/index.js +80 -0
  193. package/exampleForExpo/src/Loading/index.js +10 -0
  194. package/exampleForExpo/src/NavigationService.js +102 -0
  195. package/exampleForExpo/src/Payment/index.js +23 -0
  196. package/exampleForExpo/src/PaymentResult/index.js +82 -0
  197. package/exampleForExpo/src/PaymentTest/index.js +313 -0
  198. package/exampleForExpo/src/Picker/index.js +19 -0
  199. package/exampleForExpo/src/constants.js +322 -0
  200. package/exampleForExpo/src/utils.js +116 -0
  201. package/exampleForExpo/yarn.lock +9498 -0
  202. package/exampleForManagedExpo/.expo-shared/assets.json +4 -0
  203. package/exampleForManagedExpo/.gitignore +22 -0
  204. package/exampleForManagedExpo/App.js +11 -0
  205. package/exampleForManagedExpo/README.md +33 -0
  206. package/exampleForManagedExpo/app.json +90 -0
  207. package/exampleForManagedExpo/assets/adaptive-icon.png +0 -0
  208. package/exampleForManagedExpo/assets/favicon.png +0 -0
  209. package/exampleForManagedExpo/assets/icon.png +0 -0
  210. package/exampleForManagedExpo/assets/splash.png +0 -0
  211. package/exampleForManagedExpo/babel.config.js +11 -0
  212. package/exampleForManagedExpo/metro.config.js +62 -0
  213. package/exampleForManagedExpo/package.json +36 -0
  214. package/exampleForManagedExpo/src/Certification/index.js +25 -0
  215. package/exampleForManagedExpo/src/CertificationResult/index.js +61 -0
  216. package/exampleForManagedExpo/src/CertificationTest/index.js +151 -0
  217. package/exampleForManagedExpo/src/Home/index.js +80 -0
  218. package/exampleForManagedExpo/src/Loading/index.js +10 -0
  219. package/exampleForManagedExpo/src/NavigationService.js +102 -0
  220. package/exampleForManagedExpo/src/Payment/index.js +23 -0
  221. package/exampleForManagedExpo/src/PaymentResult/index.js +82 -0
  222. package/exampleForManagedExpo/src/PaymentTest/index.js +313 -0
  223. package/exampleForManagedExpo/src/Picker/index.js +19 -0
  224. package/exampleForManagedExpo/src/constants.js +322 -0
  225. package/exampleForManagedExpo/src/utils.js +116 -0
  226. package/exampleForManagedExpo/yarn.lock +9411 -0
  227. package/exampleForWebView/.buckconfig +6 -0
  228. package/exampleForWebView/.eslintrc.js +4 -0
  229. package/exampleForWebView/.gitattributes +3 -0
  230. package/exampleForWebView/.gitignore +68 -0
  231. package/exampleForWebView/.prettierrc.js +7 -0
  232. package/exampleForWebView/.watchmanconfig +1 -0
  233. package/exampleForWebView/README.md +77 -0
  234. package/exampleForWebView/__tests__/App-test.tsx +14 -0
  235. package/exampleForWebView/_editorconfig +3 -0
  236. package/exampleForWebView/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
  237. package/exampleForWebView/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
  238. package/exampleForWebView/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
  239. package/exampleForWebView/android/.gradle/7.5.1/gc.properties +0 -0
  240. package/exampleForWebView/android/.gradle/vcs-1/gc.properties +0 -0
  241. package/exampleForWebView/android/app/BUCK +55 -0
  242. package/exampleForWebView/android/app/build.gradle +313 -0
  243. package/exampleForWebView/android/app/build_defs.bzl +19 -0
  244. package/exampleForWebView/android/app/debug.keystore +0 -0
  245. package/exampleForWebView/android/app/proguard-rules.pro +10 -0
  246. package/exampleForWebView/android/app/src/debug/AndroidManifest.xml +13 -0
  247. package/exampleForWebView/android/app/src/debug/java/com/exampleforwebview/ReactNativeFlipper.java +73 -0
  248. package/exampleForWebView/android/app/src/main/AndroidManifest.xml +26 -0
  249. package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/MainActivity.java +48 -0
  250. package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/MainApplication.java +91 -0
  251. package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/MainApplicationReactNativeHost.java +116 -0
  252. package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/components/MainComponentsRegistry.java +36 -0
  253. package/exampleForWebView/android/app/src/main/java/com/exampleforwebview/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -0
  254. package/exampleForWebView/android/app/src/main/jni/CMakeLists.txt +7 -0
  255. package/exampleForWebView/android/app/src/main/jni/MainApplicationModuleProvider.cpp +32 -0
  256. package/exampleForWebView/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -0
  257. package/exampleForWebView/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -0
  258. package/exampleForWebView/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -0
  259. package/exampleForWebView/android/app/src/main/jni/MainComponentsRegistry.cpp +65 -0
  260. package/exampleForWebView/android/app/src/main/jni/MainComponentsRegistry.h +32 -0
  261. package/exampleForWebView/android/app/src/main/jni/OnLoad.cpp +11 -0
  262. package/exampleForWebView/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  263. package/exampleForWebView/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  264. package/exampleForWebView/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  265. package/exampleForWebView/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  266. package/exampleForWebView/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  267. package/exampleForWebView/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  268. package/exampleForWebView/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  269. package/exampleForWebView/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  270. package/exampleForWebView/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  271. package/exampleForWebView/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  272. package/exampleForWebView/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  273. package/exampleForWebView/android/app/src/main/res/values/strings.xml +3 -0
  274. package/exampleForWebView/android/app/src/main/res/values/styles.xml +9 -0
  275. package/exampleForWebView/android/build.gradle +51 -0
  276. package/exampleForWebView/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  277. package/exampleForWebView/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  278. package/exampleForWebView/android/gradle.properties +40 -0
  279. package/exampleForWebView/android/gradlew +234 -0
  280. package/exampleForWebView/android/gradlew.bat +89 -0
  281. package/exampleForWebView/android/settings.gradle +11 -0
  282. package/exampleForWebView/app.json +4 -0
  283. package/exampleForWebView/babel.config.js +11 -0
  284. package/exampleForWebView/index.js +9 -0
  285. package/exampleForWebView/ios/.xcode.env +11 -0
  286. package/exampleForWebView/ios/Podfile +43 -0
  287. package/exampleForWebView/ios/Podfile.lock +748 -0
  288. package/exampleForWebView/ios/exampleForWebView/AppDelegate.h +8 -0
  289. package/exampleForWebView/ios/exampleForWebView/AppDelegate.mm +133 -0
  290. package/exampleForWebView/ios/exampleForWebView/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  291. package/exampleForWebView/ios/exampleForWebView/Images.xcassets/Contents.json +6 -0
  292. package/exampleForWebView/ios/exampleForWebView/Info.plist +96 -0
  293. package/exampleForWebView/ios/exampleForWebView/LaunchScreen.storyboard +47 -0
  294. package/exampleForWebView/ios/exampleForWebView/main.m +10 -0
  295. package/exampleForWebView/ios/exampleForWebView.xcodeproj/project.pbxproj +723 -0
  296. package/exampleForWebView/ios/exampleForWebView.xcodeproj/xcshareddata/xcschemes/exampleForWebView.xcscheme +88 -0
  297. package/exampleForWebView/ios/exampleForWebView.xcworkspace/contents.xcworkspacedata +10 -0
  298. package/exampleForWebView/ios/exampleForWebView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  299. package/exampleForWebView/ios/exampleForWebViewTests/Info.plist +24 -0
  300. package/exampleForWebView/ios/exampleForWebViewTests/exampleForWebViewTests.m +66 -0
  301. package/exampleForWebView/manuals/CERTIFICATION.md +223 -0
  302. package/exampleForWebView/manuals/PAYMENT.md +232 -0
  303. package/exampleForWebView/metro.config.js +61 -0
  304. package/exampleForWebView/package.json +54 -0
  305. package/exampleForWebView/src/App.tsx +50 -0
  306. package/exampleForWebView/src/Certification.tsx +54 -0
  307. package/exampleForWebView/src/Home.tsx +49 -0
  308. package/exampleForWebView/src/Loading.tsx +23 -0
  309. package/exampleForWebView/src/Payment.tsx +65 -0
  310. package/exampleForWebView/yarn.lock +7362 -0
  311. package/lib/commonjs/components/Certification/index.js +10 -13
  312. package/lib/commonjs/components/Certification/index.js.map +1 -1
  313. package/lib/commonjs/components/ErrorOnParams/index.js +5 -7
  314. package/lib/commonjs/components/ErrorOnParams/index.js.map +1 -1
  315. package/lib/commonjs/components/Loading/index.js +2 -3
  316. package/lib/commonjs/components/Loading/index.js.map +1 -1
  317. package/lib/commonjs/components/Payment/index.js +10 -13
  318. package/lib/commonjs/components/Payment/index.js.map +1 -1
  319. package/lib/commonjs/constants/index.js +2 -4
  320. package/lib/commonjs/constants/index.js.map +1 -1
  321. package/lib/commonjs/index.js +2 -3
  322. package/lib/commonjs/index.js.map +1 -1
  323. package/lib/commonjs/styles.js +1 -2
  324. package/lib/commonjs/styles.js.map +1 -1
  325. package/lib/commonjs/utils/IamportUrl.js +2 -3
  326. package/lib/commonjs/utils/IamportUrl.js.map +1 -1
  327. package/lib/commonjs/utils/Validation.js +1 -2
  328. package/lib/commonjs/utils/Validation.js.map +1 -1
  329. package/lib/commonjs/utils/ValidationForPayment.js +1 -2
  330. package/lib/commonjs/utils/ValidationForPayment.js.map +1 -1
  331. package/lib/module/components/Certification/index.js +7 -8
  332. package/lib/module/components/Certification/index.js.map +1 -1
  333. package/lib/module/components/ErrorOnParams/index.js +3 -4
  334. package/lib/module/components/ErrorOnParams/index.js.map +1 -1
  335. package/lib/module/components/Loading/index.js.map +1 -1
  336. package/lib/module/components/Payment/index.js +7 -8
  337. package/lib/module/components/Payment/index.js.map +1 -1
  338. package/lib/module/constants/index.js +1 -2
  339. package/lib/module/constants/index.js.map +1 -1
  340. package/lib/module/index.js.map +1 -1
  341. package/lib/module/styles.js.map +1 -1
  342. package/lib/module/utils/IamportUrl.js.map +1 -1
  343. package/lib/module/utils/Validation.js.map +1 -1
  344. package/lib/module/utils/ValidationForPayment.js.map +1 -1
  345. package/lib/typescript/constants/index.d.ts +1 -1
  346. package/lib/typescript/constants/index.d.ts.map +1 -1
  347. package/manuals/CALLBACK.md +72 -0
  348. package/manuals/EXAMPLE.md +168 -0
  349. package/manuals/EXPO.md +246 -0
  350. package/manuals/INSTALL.md +31 -0
  351. package/manuals/SETTING.md +140 -0
  352. package/manuals/SUPPORT.md +35 -0
  353. package/manuals/TRANS.md +77 -0
  354. package/manuals/VERSION.md +184 -0
  355. package/manuals/assets/after-linking-iamport.png +0 -0
  356. package/manuals/assets/after-linking-webview.png +0 -0
  357. package/manuals/assets/allow-arbitrary.gif +0 -0
  358. package/manuals/assets/android-studio-avd-manager.png +0 -0
  359. package/manuals/assets/android-studio-build.png +0 -0
  360. package/manuals/assets/app-scheme-registry.gif +0 -0
  361. package/manuals/assets/expo-eject.png +0 -0
  362. package/manuals/assets/ios-emulator-certification.png +0 -0
  363. package/manuals/assets/ios-emulator-home.png +0 -0
  364. package/manuals/assets/ios-emulator-payment.png +0 -0
  365. package/manuals/assets/ios-trans-create-header-file-1.png +0 -0
  366. package/manuals/assets/ios-trans-create-header-file-2.png +0 -0
  367. package/manuals/assets/ios-trans-create-objectivec-file-1.png +0 -0
  368. package/manuals/assets/ios-trans-create-objectivec-file-2.png +0 -0
  369. package/manuals/assets/ios-trans-result.png +0 -0
  370. package/manuals/assets/webview-peer-dependency.png +0 -0
  371. package/package.json +3 -2
  372. package/scripts/bootstrap.js +24 -0
  373. package/src/constants/index.ts +8 -0
  374. package/tsconfig.build.json +9 -0
  375. package/tsconfig.json +26 -0
  376. package/yarn.lock +6174 -0
@@ -0,0 +1,723 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* exampleForWebViewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleForWebViewTests.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-exampleForWebView.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-exampleForWebView.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 7699B88040F8A987B510C191 /* libPods-exampleForWebView-exampleForWebViewTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-exampleForWebView-exampleForWebViewTests.a */; };
16
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25
+ remoteInfo = exampleForWebView;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXFileReference section */
30
+ 00E356EE1AD99517003FC87E /* exampleForWebViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleForWebViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32
+ 00E356F21AD99517003FC87E /* exampleForWebViewTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleForWebViewTests.m; sourceTree = "<group>"; };
33
+ 13B07F961A680F5B00A75B9A /* exampleForWebView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = exampleForWebView.app; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = exampleForWebView/AppDelegate.h; sourceTree = "<group>"; };
35
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = exampleForWebView/AppDelegate.mm; sourceTree = "<group>"; };
36
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = exampleForWebView/Images.xcassets; sourceTree = "<group>"; };
37
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = exampleForWebView/Info.plist; sourceTree = "<group>"; };
38
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = exampleForWebView/main.m; sourceTree = "<group>"; };
39
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-exampleForWebView-exampleForWebViewTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-exampleForWebView-exampleForWebViewTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 3B4392A12AC88292D35C810B /* Pods-exampleForWebView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForWebView.debug.xcconfig"; path = "Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView.debug.xcconfig"; sourceTree = "<group>"; };
41
+ 5709B34CF0A7D63546082F79 /* Pods-exampleForWebView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForWebView.release.xcconfig"; path = "Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView.release.xcconfig"; sourceTree = "<group>"; };
42
+ 5B7EB9410499542E8C5724F5 /* Pods-exampleForWebView-exampleForWebViewTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForWebView-exampleForWebViewTests.debug.xcconfig"; path = "Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests.debug.xcconfig"; sourceTree = "<group>"; };
43
+ 5DCACB8F33CDC322A6C60F78 /* libPods-exampleForWebView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-exampleForWebView.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = exampleForWebView/LaunchScreen.storyboard; sourceTree = "<group>"; };
45
+ 89C6BE57DB24E9ADA2F236DE /* Pods-exampleForWebView-exampleForWebViewTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForWebView-exampleForWebViewTests.release.xcconfig"; path = "Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests.release.xcconfig"; sourceTree = "<group>"; };
46
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
47
+ /* End PBXFileReference section */
48
+
49
+ /* Begin PBXFrameworksBuildPhase section */
50
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
51
+ isa = PBXFrameworksBuildPhase;
52
+ buildActionMask = 2147483647;
53
+ files = (
54
+ 7699B88040F8A987B510C191 /* libPods-exampleForWebView-exampleForWebViewTests.a in Frameworks */,
55
+ );
56
+ runOnlyForDeploymentPostprocessing = 0;
57
+ };
58
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
59
+ isa = PBXFrameworksBuildPhase;
60
+ buildActionMask = 2147483647;
61
+ files = (
62
+ 0C80B921A6F3F58F76C31292 /* libPods-exampleForWebView.a in Frameworks */,
63
+ );
64
+ runOnlyForDeploymentPostprocessing = 0;
65
+ };
66
+ /* End PBXFrameworksBuildPhase section */
67
+
68
+ /* Begin PBXGroup section */
69
+ 00E356EF1AD99517003FC87E /* exampleForWebViewTests */ = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ 00E356F21AD99517003FC87E /* exampleForWebViewTests.m */,
73
+ 00E356F01AD99517003FC87E /* Supporting Files */,
74
+ );
75
+ path = exampleForWebViewTests;
76
+ sourceTree = "<group>";
77
+ };
78
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ 00E356F11AD99517003FC87E /* Info.plist */,
82
+ );
83
+ name = "Supporting Files";
84
+ sourceTree = "<group>";
85
+ };
86
+ 13B07FAE1A68108700A75B9A /* exampleForWebView */ = {
87
+ isa = PBXGroup;
88
+ children = (
89
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
90
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
91
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
92
+ 13B07FB61A68108700A75B9A /* Info.plist */,
93
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
94
+ 13B07FB71A68108700A75B9A /* main.m */,
95
+ );
96
+ name = exampleForWebView;
97
+ sourceTree = "<group>";
98
+ };
99
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
100
+ isa = PBXGroup;
101
+ children = (
102
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
103
+ 5DCACB8F33CDC322A6C60F78 /* libPods-exampleForWebView.a */,
104
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-exampleForWebView-exampleForWebViewTests.a */,
105
+ );
106
+ name = Frameworks;
107
+ sourceTree = "<group>";
108
+ };
109
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
110
+ isa = PBXGroup;
111
+ children = (
112
+ );
113
+ name = Libraries;
114
+ sourceTree = "<group>";
115
+ };
116
+ 83CBB9F61A601CBA00E9B192 = {
117
+ isa = PBXGroup;
118
+ children = (
119
+ 13B07FAE1A68108700A75B9A /* exampleForWebView */,
120
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
121
+ 00E356EF1AD99517003FC87E /* exampleForWebViewTests */,
122
+ 83CBBA001A601CBA00E9B192 /* Products */,
123
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
124
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
125
+ );
126
+ indentWidth = 2;
127
+ sourceTree = "<group>";
128
+ tabWidth = 2;
129
+ usesTabs = 0;
130
+ };
131
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ 13B07F961A680F5B00A75B9A /* exampleForWebView.app */,
135
+ 00E356EE1AD99517003FC87E /* exampleForWebViewTests.xctest */,
136
+ );
137
+ name = Products;
138
+ sourceTree = "<group>";
139
+ };
140
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
141
+ isa = PBXGroup;
142
+ children = (
143
+ 3B4392A12AC88292D35C810B /* Pods-exampleForWebView.debug.xcconfig */,
144
+ 5709B34CF0A7D63546082F79 /* Pods-exampleForWebView.release.xcconfig */,
145
+ 5B7EB9410499542E8C5724F5 /* Pods-exampleForWebView-exampleForWebViewTests.debug.xcconfig */,
146
+ 89C6BE57DB24E9ADA2F236DE /* Pods-exampleForWebView-exampleForWebViewTests.release.xcconfig */,
147
+ );
148
+ path = Pods;
149
+ sourceTree = "<group>";
150
+ };
151
+ /* End PBXGroup section */
152
+
153
+ /* Begin PBXNativeTarget section */
154
+ 00E356ED1AD99517003FC87E /* exampleForWebViewTests */ = {
155
+ isa = PBXNativeTarget;
156
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleForWebViewTests" */;
157
+ buildPhases = (
158
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
159
+ 00E356EA1AD99517003FC87E /* Sources */,
160
+ 00E356EB1AD99517003FC87E /* Frameworks */,
161
+ 00E356EC1AD99517003FC87E /* Resources */,
162
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
163
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
164
+ );
165
+ buildRules = (
166
+ );
167
+ dependencies = (
168
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
169
+ );
170
+ name = exampleForWebViewTests;
171
+ productName = exampleForWebViewTests;
172
+ productReference = 00E356EE1AD99517003FC87E /* exampleForWebViewTests.xctest */;
173
+ productType = "com.apple.product-type.bundle.unit-test";
174
+ };
175
+ 13B07F861A680F5B00A75B9A /* exampleForWebView */ = {
176
+ isa = PBXNativeTarget;
177
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "exampleForWebView" */;
178
+ buildPhases = (
179
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
180
+ FD10A7F022414F080027D42C /* Start Packager */,
181
+ 13B07F871A680F5B00A75B9A /* Sources */,
182
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
183
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
184
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
185
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
186
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
187
+ );
188
+ buildRules = (
189
+ );
190
+ dependencies = (
191
+ );
192
+ name = exampleForWebView;
193
+ productName = exampleForWebView;
194
+ productReference = 13B07F961A680F5B00A75B9A /* exampleForWebView.app */;
195
+ productType = "com.apple.product-type.application";
196
+ };
197
+ /* End PBXNativeTarget section */
198
+
199
+ /* Begin PBXProject section */
200
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
201
+ isa = PBXProject;
202
+ attributes = {
203
+ LastUpgradeCheck = 1210;
204
+ TargetAttributes = {
205
+ 00E356ED1AD99517003FC87E = {
206
+ CreatedOnToolsVersion = 6.2;
207
+ TestTargetID = 13B07F861A680F5B00A75B9A;
208
+ };
209
+ 13B07F861A680F5B00A75B9A = {
210
+ LastSwiftMigration = 1120;
211
+ };
212
+ };
213
+ };
214
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "exampleForWebView" */;
215
+ compatibilityVersion = "Xcode 12.0";
216
+ developmentRegion = en;
217
+ hasScannedForEncodings = 0;
218
+ knownRegions = (
219
+ en,
220
+ Base,
221
+ );
222
+ mainGroup = 83CBB9F61A601CBA00E9B192;
223
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
224
+ projectDirPath = "";
225
+ projectRoot = "";
226
+ targets = (
227
+ 13B07F861A680F5B00A75B9A /* exampleForWebView */,
228
+ 00E356ED1AD99517003FC87E /* exampleForWebViewTests */,
229
+ );
230
+ };
231
+ /* End PBXProject section */
232
+
233
+ /* Begin PBXResourcesBuildPhase section */
234
+ 00E356EC1AD99517003FC87E /* Resources */ = {
235
+ isa = PBXResourcesBuildPhase;
236
+ buildActionMask = 2147483647;
237
+ files = (
238
+ );
239
+ runOnlyForDeploymentPostprocessing = 0;
240
+ };
241
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
242
+ isa = PBXResourcesBuildPhase;
243
+ buildActionMask = 2147483647;
244
+ files = (
245
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
246
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
247
+ );
248
+ runOnlyForDeploymentPostprocessing = 0;
249
+ };
250
+ /* End PBXResourcesBuildPhase section */
251
+
252
+ /* Begin PBXShellScriptBuildPhase section */
253
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
254
+ isa = PBXShellScriptBuildPhase;
255
+ buildActionMask = 2147483647;
256
+ files = (
257
+ );
258
+ inputPaths = (
259
+ "$(SRCROOT)/.xcode.env.local",
260
+ "$(SRCROOT)/.xcode.env",
261
+ );
262
+ name = "Bundle React Native code and images";
263
+ outputPaths = (
264
+ );
265
+ runOnlyForDeploymentPostprocessing = 0;
266
+ shellPath = /bin/sh;
267
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
268
+ };
269
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
270
+ isa = PBXShellScriptBuildPhase;
271
+ buildActionMask = 2147483647;
272
+ files = (
273
+ );
274
+ inputFileListPaths = (
275
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-frameworks-${CONFIGURATION}-input-files.xcfilelist",
276
+ );
277
+ name = "[CP] Embed Pods Frameworks";
278
+ outputFileListPaths = (
279
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-frameworks-${CONFIGURATION}-output-files.xcfilelist",
280
+ );
281
+ runOnlyForDeploymentPostprocessing = 0;
282
+ shellPath = /bin/sh;
283
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-frameworks.sh\"\n";
284
+ showEnvVarsInLog = 0;
285
+ };
286
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
287
+ isa = PBXShellScriptBuildPhase;
288
+ buildActionMask = 2147483647;
289
+ files = (
290
+ );
291
+ inputFileListPaths = (
292
+ );
293
+ inputPaths = (
294
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
295
+ "${PODS_ROOT}/Manifest.lock",
296
+ );
297
+ name = "[CP] Check Pods Manifest.lock";
298
+ outputFileListPaths = (
299
+ );
300
+ outputPaths = (
301
+ "$(DERIVED_FILE_DIR)/Pods-exampleForWebView-exampleForWebViewTests-checkManifestLockResult.txt",
302
+ );
303
+ runOnlyForDeploymentPostprocessing = 0;
304
+ shellPath = /bin/sh;
305
+ 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";
306
+ showEnvVarsInLog = 0;
307
+ };
308
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
309
+ isa = PBXShellScriptBuildPhase;
310
+ buildActionMask = 2147483647;
311
+ files = (
312
+ );
313
+ inputFileListPaths = (
314
+ );
315
+ inputPaths = (
316
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
317
+ "${PODS_ROOT}/Manifest.lock",
318
+ );
319
+ name = "[CP] Check Pods Manifest.lock";
320
+ outputFileListPaths = (
321
+ );
322
+ outputPaths = (
323
+ "$(DERIVED_FILE_DIR)/Pods-exampleForWebView-checkManifestLockResult.txt",
324
+ );
325
+ runOnlyForDeploymentPostprocessing = 0;
326
+ shellPath = /bin/sh;
327
+ 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";
328
+ showEnvVarsInLog = 0;
329
+ };
330
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
331
+ isa = PBXShellScriptBuildPhase;
332
+ buildActionMask = 2147483647;
333
+ files = (
334
+ );
335
+ inputFileListPaths = (
336
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
337
+ );
338
+ name = "[CP] Embed Pods Frameworks";
339
+ outputFileListPaths = (
340
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
341
+ );
342
+ runOnlyForDeploymentPostprocessing = 0;
343
+ shellPath = /bin/sh;
344
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-frameworks.sh\"\n";
345
+ showEnvVarsInLog = 0;
346
+ };
347
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
348
+ isa = PBXShellScriptBuildPhase;
349
+ buildActionMask = 2147483647;
350
+ files = (
351
+ );
352
+ inputFileListPaths = (
353
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-resources-${CONFIGURATION}-input-files.xcfilelist",
354
+ );
355
+ name = "[CP] Copy Pods Resources";
356
+ outputFileListPaths = (
357
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-resources-${CONFIGURATION}-output-files.xcfilelist",
358
+ );
359
+ runOnlyForDeploymentPostprocessing = 0;
360
+ shellPath = /bin/sh;
361
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-exampleForWebView/Pods-exampleForWebView-resources.sh\"\n";
362
+ showEnvVarsInLog = 0;
363
+ };
364
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
365
+ isa = PBXShellScriptBuildPhase;
366
+ buildActionMask = 2147483647;
367
+ files = (
368
+ );
369
+ inputFileListPaths = (
370
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-resources-${CONFIGURATION}-input-files.xcfilelist",
371
+ );
372
+ name = "[CP] Copy Pods Resources";
373
+ outputFileListPaths = (
374
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-resources-${CONFIGURATION}-output-files.xcfilelist",
375
+ );
376
+ runOnlyForDeploymentPostprocessing = 0;
377
+ shellPath = /bin/sh;
378
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-exampleForWebView-exampleForWebViewTests/Pods-exampleForWebView-exampleForWebViewTests-resources.sh\"\n";
379
+ showEnvVarsInLog = 0;
380
+ };
381
+ FD10A7F022414F080027D42C /* Start Packager */ = {
382
+ isa = PBXShellScriptBuildPhase;
383
+ buildActionMask = 2147483647;
384
+ files = (
385
+ );
386
+ inputFileListPaths = (
387
+ );
388
+ inputPaths = (
389
+ );
390
+ name = "Start Packager";
391
+ outputFileListPaths = (
392
+ );
393
+ outputPaths = (
394
+ );
395
+ runOnlyForDeploymentPostprocessing = 0;
396
+ shellPath = /bin/sh;
397
+ 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";
398
+ showEnvVarsInLog = 0;
399
+ };
400
+ /* End PBXShellScriptBuildPhase section */
401
+
402
+ /* Begin PBXSourcesBuildPhase section */
403
+ 00E356EA1AD99517003FC87E /* Sources */ = {
404
+ isa = PBXSourcesBuildPhase;
405
+ buildActionMask = 2147483647;
406
+ files = (
407
+ 00E356F31AD99517003FC87E /* exampleForWebViewTests.m in Sources */,
408
+ );
409
+ runOnlyForDeploymentPostprocessing = 0;
410
+ };
411
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
412
+ isa = PBXSourcesBuildPhase;
413
+ buildActionMask = 2147483647;
414
+ files = (
415
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
416
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
417
+ );
418
+ runOnlyForDeploymentPostprocessing = 0;
419
+ };
420
+ /* End PBXSourcesBuildPhase section */
421
+
422
+ /* Begin PBXTargetDependency section */
423
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
424
+ isa = PBXTargetDependency;
425
+ target = 13B07F861A680F5B00A75B9A /* exampleForWebView */;
426
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
427
+ };
428
+ /* End PBXTargetDependency section */
429
+
430
+ /* Begin XCBuildConfiguration section */
431
+ 00E356F61AD99517003FC87E /* Debug */ = {
432
+ isa = XCBuildConfiguration;
433
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-exampleForWebView-exampleForWebViewTests.debug.xcconfig */;
434
+ buildSettings = {
435
+ BUNDLE_LOADER = "$(TEST_HOST)";
436
+ DEVELOPMENT_TEAM = NLA2N3C754;
437
+ GCC_PREPROCESSOR_DEFINITIONS = (
438
+ "DEBUG=1",
439
+ "$(inherited)",
440
+ );
441
+ INFOPLIST_FILE = exampleForWebViewTests/Info.plist;
442
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
443
+ LD_RUNPATH_SEARCH_PATHS = (
444
+ "$(inherited)",
445
+ "@executable_path/Frameworks",
446
+ "@loader_path/Frameworks",
447
+ );
448
+ OTHER_LDFLAGS = (
449
+ "-ObjC",
450
+ "-lc++",
451
+ "$(inherited)",
452
+ );
453
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
454
+ PRODUCT_NAME = "$(TARGET_NAME)";
455
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/exampleForWebView.app/exampleForWebView";
456
+ };
457
+ name = Debug;
458
+ };
459
+ 00E356F71AD99517003FC87E /* Release */ = {
460
+ isa = XCBuildConfiguration;
461
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-exampleForWebView-exampleForWebViewTests.release.xcconfig */;
462
+ buildSettings = {
463
+ BUNDLE_LOADER = "$(TEST_HOST)";
464
+ COPY_PHASE_STRIP = NO;
465
+ DEVELOPMENT_TEAM = NLA2N3C754;
466
+ INFOPLIST_FILE = exampleForWebViewTests/Info.plist;
467
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
468
+ LD_RUNPATH_SEARCH_PATHS = (
469
+ "$(inherited)",
470
+ "@executable_path/Frameworks",
471
+ "@loader_path/Frameworks",
472
+ );
473
+ OTHER_LDFLAGS = (
474
+ "-ObjC",
475
+ "-lc++",
476
+ "$(inherited)",
477
+ );
478
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
479
+ PRODUCT_NAME = "$(TARGET_NAME)";
480
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/exampleForWebView.app/exampleForWebView";
481
+ };
482
+ name = Release;
483
+ };
484
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
485
+ isa = XCBuildConfiguration;
486
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-exampleForWebView.debug.xcconfig */;
487
+ buildSettings = {
488
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489
+ CLANG_ENABLE_MODULES = YES;
490
+ CURRENT_PROJECT_VERSION = 1;
491
+ DEVELOPMENT_TEAM = NLA2N3C754;
492
+ ENABLE_BITCODE = NO;
493
+ INFOPLIST_FILE = exampleForWebView/Info.plist;
494
+ LD_RUNPATH_SEARCH_PATHS = (
495
+ "$(inherited)",
496
+ "@executable_path/Frameworks",
497
+ );
498
+ OTHER_LDFLAGS = (
499
+ "$(inherited)",
500
+ "-ObjC",
501
+ "-lc++",
502
+ );
503
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
504
+ PRODUCT_NAME = exampleForWebView;
505
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
506
+ SWIFT_VERSION = 5.0;
507
+ VERSIONING_SYSTEM = "apple-generic";
508
+ };
509
+ name = Debug;
510
+ };
511
+ 13B07F951A680F5B00A75B9A /* Release */ = {
512
+ isa = XCBuildConfiguration;
513
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-exampleForWebView.release.xcconfig */;
514
+ buildSettings = {
515
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
516
+ CLANG_ENABLE_MODULES = YES;
517
+ CURRENT_PROJECT_VERSION = 1;
518
+ DEVELOPMENT_TEAM = NLA2N3C754;
519
+ INFOPLIST_FILE = exampleForWebView/Info.plist;
520
+ LD_RUNPATH_SEARCH_PATHS = (
521
+ "$(inherited)",
522
+ "@executable_path/Frameworks",
523
+ );
524
+ OTHER_LDFLAGS = (
525
+ "$(inherited)",
526
+ "-ObjC",
527
+ "-lc++",
528
+ );
529
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
530
+ PRODUCT_NAME = exampleForWebView;
531
+ SWIFT_VERSION = 5.0;
532
+ VERSIONING_SYSTEM = "apple-generic";
533
+ };
534
+ name = Release;
535
+ };
536
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
537
+ isa = XCBuildConfiguration;
538
+ buildSettings = {
539
+ ALWAYS_SEARCH_USER_PATHS = NO;
540
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
541
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
542
+ CLANG_CXX_LIBRARY = "libc++";
543
+ CLANG_ENABLE_MODULES = YES;
544
+ CLANG_ENABLE_OBJC_ARC = YES;
545
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
546
+ CLANG_WARN_BOOL_CONVERSION = YES;
547
+ CLANG_WARN_COMMA = YES;
548
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
549
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
550
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
551
+ CLANG_WARN_EMPTY_BODY = YES;
552
+ CLANG_WARN_ENUM_CONVERSION = YES;
553
+ CLANG_WARN_INFINITE_RECURSION = YES;
554
+ CLANG_WARN_INT_CONVERSION = YES;
555
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
556
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
557
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
558
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
559
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
560
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
561
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
562
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
563
+ CLANG_WARN_UNREACHABLE_CODE = YES;
564
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
565
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
566
+ COPY_PHASE_STRIP = NO;
567
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
568
+ ENABLE_TESTABILITY = YES;
569
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
570
+ GCC_C_LANGUAGE_STANDARD = gnu99;
571
+ GCC_DYNAMIC_NO_PIC = NO;
572
+ GCC_NO_COMMON_BLOCKS = YES;
573
+ GCC_OPTIMIZATION_LEVEL = 0;
574
+ GCC_PREPROCESSOR_DEFINITIONS = (
575
+ "DEBUG=1",
576
+ "$(inherited)",
577
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
578
+ );
579
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
580
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
581
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
582
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
583
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
584
+ GCC_WARN_UNUSED_FUNCTION = YES;
585
+ GCC_WARN_UNUSED_VARIABLE = YES;
586
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
587
+ LD_RUNPATH_SEARCH_PATHS = (
588
+ /usr/lib/swift,
589
+ "$(inherited)",
590
+ );
591
+ LIBRARY_SEARCH_PATHS = (
592
+ "\"$(SDKROOT)/usr/lib/swift\"",
593
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
594
+ "\"$(inherited)\"",
595
+ );
596
+ MTL_ENABLE_DEBUG_INFO = YES;
597
+ ONLY_ACTIVE_ARCH = YES;
598
+ OTHER_CFLAGS = "$(inherited)";
599
+ OTHER_CPLUSPLUSFLAGS = (
600
+ "$(OTHER_CFLAGS)",
601
+ "-DFOLLY_NO_CONFIG",
602
+ "-DFOLLY_MOBILE=1",
603
+ "-DFOLLY_USE_LIBCPP=1",
604
+ );
605
+ OTHER_LDFLAGS = (
606
+ "$(inherited)",
607
+ "-Wl",
608
+ "-ld_classic",
609
+ );
610
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
611
+ SDKROOT = iphoneos;
612
+ };
613
+ name = Debug;
614
+ };
615
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
616
+ isa = XCBuildConfiguration;
617
+ buildSettings = {
618
+ ALWAYS_SEARCH_USER_PATHS = NO;
619
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
620
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
621
+ CLANG_CXX_LIBRARY = "libc++";
622
+ CLANG_ENABLE_MODULES = YES;
623
+ CLANG_ENABLE_OBJC_ARC = YES;
624
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
625
+ CLANG_WARN_BOOL_CONVERSION = YES;
626
+ CLANG_WARN_COMMA = YES;
627
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
628
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
629
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
630
+ CLANG_WARN_EMPTY_BODY = YES;
631
+ CLANG_WARN_ENUM_CONVERSION = YES;
632
+ CLANG_WARN_INFINITE_RECURSION = YES;
633
+ CLANG_WARN_INT_CONVERSION = YES;
634
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
635
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
636
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
637
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
638
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
639
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
640
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
641
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
642
+ CLANG_WARN_UNREACHABLE_CODE = YES;
643
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
644
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
645
+ COPY_PHASE_STRIP = YES;
646
+ ENABLE_NS_ASSERTIONS = NO;
647
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
648
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
649
+ GCC_C_LANGUAGE_STANDARD = gnu99;
650
+ GCC_NO_COMMON_BLOCKS = YES;
651
+ GCC_PREPROCESSOR_DEFINITIONS = (
652
+ "$(inherited)",
653
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
654
+ );
655
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
656
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
657
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
658
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
659
+ GCC_WARN_UNUSED_FUNCTION = YES;
660
+ GCC_WARN_UNUSED_VARIABLE = YES;
661
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
662
+ LD_RUNPATH_SEARCH_PATHS = (
663
+ /usr/lib/swift,
664
+ "$(inherited)",
665
+ );
666
+ LIBRARY_SEARCH_PATHS = (
667
+ "\"$(SDKROOT)/usr/lib/swift\"",
668
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
669
+ "\"$(inherited)\"",
670
+ );
671
+ MTL_ENABLE_DEBUG_INFO = NO;
672
+ OTHER_CFLAGS = "$(inherited)";
673
+ OTHER_CPLUSPLUSFLAGS = (
674
+ "$(OTHER_CFLAGS)",
675
+ "-DFOLLY_NO_CONFIG",
676
+ "-DFOLLY_MOBILE=1",
677
+ "-DFOLLY_USE_LIBCPP=1",
678
+ );
679
+ OTHER_LDFLAGS = (
680
+ "$(inherited)",
681
+ "-Wl",
682
+ "-ld_classic",
683
+ );
684
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
685
+ SDKROOT = iphoneos;
686
+ VALIDATE_PRODUCT = YES;
687
+ };
688
+ name = Release;
689
+ };
690
+ /* End XCBuildConfiguration section */
691
+
692
+ /* Begin XCConfigurationList section */
693
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleForWebViewTests" */ = {
694
+ isa = XCConfigurationList;
695
+ buildConfigurations = (
696
+ 00E356F61AD99517003FC87E /* Debug */,
697
+ 00E356F71AD99517003FC87E /* Release */,
698
+ );
699
+ defaultConfigurationIsVisible = 0;
700
+ defaultConfigurationName = Release;
701
+ };
702
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "exampleForWebView" */ = {
703
+ isa = XCConfigurationList;
704
+ buildConfigurations = (
705
+ 13B07F941A680F5B00A75B9A /* Debug */,
706
+ 13B07F951A680F5B00A75B9A /* Release */,
707
+ );
708
+ defaultConfigurationIsVisible = 0;
709
+ defaultConfigurationName = Release;
710
+ };
711
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "exampleForWebView" */ = {
712
+ isa = XCConfigurationList;
713
+ buildConfigurations = (
714
+ 83CBBA201A601CBA00E9B192 /* Debug */,
715
+ 83CBBA211A601CBA00E9B192 /* Release */,
716
+ );
717
+ defaultConfigurationIsVisible = 0;
718
+ defaultConfigurationName = Release;
719
+ };
720
+ /* End XCConfigurationList section */
721
+ };
722
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
723
+ }