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,544 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
11
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
13
+ 3526E1DC7D8A47BBAABD90D8 /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1D1C7563A984133AAB95E63 /* noop-file.swift */; };
14
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
15
+ 96905EF65AED1B983A6B3ABC /* libPods-exampleForExpo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-exampleForExpo.a */; };
16
+ B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
17
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXFileReference section */
21
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
22
+ 13B07F961A680F5B00A75B9A /* exampleForExpo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = exampleForExpo.app; sourceTree = BUILT_PRODUCTS_DIR; };
23
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = exampleForExpo/AppDelegate.h; sourceTree = "<group>"; };
24
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = exampleForExpo/AppDelegate.mm; sourceTree = "<group>"; };
25
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = exampleForExpo/Images.xcassets; sourceTree = "<group>"; };
26
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = exampleForExpo/Info.plist; sourceTree = "<group>"; };
27
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = exampleForExpo/main.m; sourceTree = "<group>"; };
28
+ 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-exampleForExpo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-exampleForExpo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
29
+ 6C2E3173556A471DD304B334 /* Pods-exampleForExpo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForExpo.debug.xcconfig"; path = "Target Support Files/Pods-exampleForExpo/Pods-exampleForExpo.debug.xcconfig"; sourceTree = "<group>"; };
30
+ 7A4D352CD337FB3A3BF06240 /* Pods-exampleForExpo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-exampleForExpo.release.xcconfig"; path = "Target Support Files/Pods-exampleForExpo/Pods-exampleForExpo.release.xcconfig"; sourceTree = "<group>"; };
31
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = exampleForExpo/SplashScreen.storyboard; sourceTree = "<group>"; };
32
+ BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
33
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
34
+ F1D1C7563A984133AAB95E63 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "exampleForExpo/noop-file.swift"; sourceTree = "<group>"; };
35
+ FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-exampleForExpo/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
36
+ /* End PBXFileReference section */
37
+
38
+ /* Begin PBXFrameworksBuildPhase section */
39
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
40
+ isa = PBXFrameworksBuildPhase;
41
+ buildActionMask = 2147483647;
42
+ files = (
43
+ 96905EF65AED1B983A6B3ABC /* libPods-exampleForExpo.a in Frameworks */,
44
+ );
45
+ runOnlyForDeploymentPostprocessing = 0;
46
+ };
47
+ /* End PBXFrameworksBuildPhase section */
48
+
49
+ /* Begin PBXGroup section */
50
+ 13B07FAE1A68108700A75B9A /* exampleForExpo */ = {
51
+ isa = PBXGroup;
52
+ children = (
53
+ BB2F792B24A3F905000567C9 /* Supporting */,
54
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
55
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
56
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
57
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
58
+ 13B07FB61A68108700A75B9A /* Info.plist */,
59
+ 13B07FB71A68108700A75B9A /* main.m */,
60
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
61
+ F1D1C7563A984133AAB95E63 /* noop-file.swift */,
62
+ );
63
+ name = exampleForExpo;
64
+ sourceTree = "<group>";
65
+ };
66
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
67
+ isa = PBXGroup;
68
+ children = (
69
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
70
+ 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-exampleForExpo.a */,
71
+ );
72
+ name = Frameworks;
73
+ sourceTree = "<group>";
74
+ };
75
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
76
+ isa = PBXGroup;
77
+ children = (
78
+ );
79
+ name = Libraries;
80
+ sourceTree = "<group>";
81
+ };
82
+ 83CBB9F61A601CBA00E9B192 = {
83
+ isa = PBXGroup;
84
+ children = (
85
+ 13B07FAE1A68108700A75B9A /* exampleForExpo */,
86
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
87
+ 83CBBA001A601CBA00E9B192 /* Products */,
88
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
89
+ D65327D7A22EEC0BE12398D9 /* Pods */,
90
+ D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
91
+ );
92
+ indentWidth = 2;
93
+ sourceTree = "<group>";
94
+ tabWidth = 2;
95
+ usesTabs = 0;
96
+ };
97
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
98
+ isa = PBXGroup;
99
+ children = (
100
+ 13B07F961A680F5B00A75B9A /* exampleForExpo.app */,
101
+ );
102
+ name = Products;
103
+ sourceTree = "<group>";
104
+ };
105
+ 92DBD88DE9BF7D494EA9DA96 /* exampleForExpo */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
109
+ );
110
+ name = exampleForExpo;
111
+ sourceTree = "<group>";
112
+ };
113
+ BB2F792B24A3F905000567C9 /* Supporting */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ BB2F792C24A3F905000567C9 /* Expo.plist */,
117
+ );
118
+ name = Supporting;
119
+ path = exampleForExpo/Supporting;
120
+ sourceTree = "<group>";
121
+ };
122
+ D65327D7A22EEC0BE12398D9 /* Pods */ = {
123
+ isa = PBXGroup;
124
+ children = (
125
+ 6C2E3173556A471DD304B334 /* Pods-exampleForExpo.debug.xcconfig */,
126
+ 7A4D352CD337FB3A3BF06240 /* Pods-exampleForExpo.release.xcconfig */,
127
+ );
128
+ path = Pods;
129
+ sourceTree = "<group>";
130
+ };
131
+ D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ 92DBD88DE9BF7D494EA9DA96 /* exampleForExpo */,
135
+ );
136
+ name = ExpoModulesProviders;
137
+ sourceTree = "<group>";
138
+ };
139
+ /* End PBXGroup section */
140
+
141
+ /* Begin PBXNativeTarget section */
142
+ 13B07F861A680F5B00A75B9A /* exampleForExpo */ = {
143
+ isa = PBXNativeTarget;
144
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "exampleForExpo" */;
145
+ buildPhases = (
146
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
147
+ FD10A7F022414F080027D42C /* Start Packager */,
148
+ DF5B7D91A69AFD13A9B286A6 /* [Expo] Configure project */,
149
+ 13B07F871A680F5B00A75B9A /* Sources */,
150
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
151
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
152
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
153
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
154
+ );
155
+ buildRules = (
156
+ );
157
+ dependencies = (
158
+ );
159
+ name = exampleForExpo;
160
+ productName = exampleForExpo;
161
+ productReference = 13B07F961A680F5B00A75B9A /* exampleForExpo.app */;
162
+ productType = "com.apple.product-type.application";
163
+ };
164
+ /* End PBXNativeTarget section */
165
+
166
+ /* Begin PBXProject section */
167
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
168
+ isa = PBXProject;
169
+ attributes = {
170
+ LastUpgradeCheck = 1130;
171
+ TargetAttributes = {
172
+ 13B07F861A680F5B00A75B9A = {
173
+ LastSwiftMigration = 1250;
174
+ };
175
+ };
176
+ };
177
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "exampleForExpo" */;
178
+ compatibilityVersion = "Xcode 3.2";
179
+ developmentRegion = en;
180
+ hasScannedForEncodings = 0;
181
+ knownRegions = (
182
+ en,
183
+ Base,
184
+ );
185
+ mainGroup = 83CBB9F61A601CBA00E9B192;
186
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
187
+ projectDirPath = "";
188
+ projectRoot = "";
189
+ targets = (
190
+ 13B07F861A680F5B00A75B9A /* exampleForExpo */,
191
+ );
192
+ };
193
+ /* End PBXProject section */
194
+
195
+ /* Begin PBXResourcesBuildPhase section */
196
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
197
+ isa = PBXResourcesBuildPhase;
198
+ buildActionMask = 2147483647;
199
+ files = (
200
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
201
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
202
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
203
+ );
204
+ runOnlyForDeploymentPostprocessing = 0;
205
+ };
206
+ /* End PBXResourcesBuildPhase section */
207
+
208
+ /* Begin PBXShellScriptBuildPhase section */
209
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
210
+ isa = PBXShellScriptBuildPhase;
211
+ buildActionMask = 2147483647;
212
+ files = (
213
+ );
214
+ inputPaths = (
215
+ );
216
+ name = "Bundle React Native code and images";
217
+ outputPaths = (
218
+ );
219
+ runOnlyForDeploymentPostprocessing = 0;
220
+ shellPath = /bin/sh;
221
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" $PROJECT_ROOT ios relative | tail -n 1)\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
222
+ };
223
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
224
+ isa = PBXShellScriptBuildPhase;
225
+ buildActionMask = 2147483647;
226
+ files = (
227
+ );
228
+ inputFileListPaths = (
229
+ );
230
+ inputPaths = (
231
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
232
+ "${PODS_ROOT}/Manifest.lock",
233
+ );
234
+ name = "[CP] Check Pods Manifest.lock";
235
+ outputFileListPaths = (
236
+ );
237
+ outputPaths = (
238
+ "$(DERIVED_FILE_DIR)/Pods-exampleForExpo-checkManifestLockResult.txt",
239
+ );
240
+ runOnlyForDeploymentPostprocessing = 0;
241
+ shellPath = /bin/sh;
242
+ 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";
243
+ showEnvVarsInLog = 0;
244
+ };
245
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
246
+ isa = PBXShellScriptBuildPhase;
247
+ buildActionMask = 2147483647;
248
+ files = (
249
+ );
250
+ inputPaths = (
251
+ "${PODS_ROOT}/Target Support Files/Pods-exampleForExpo/Pods-exampleForExpo-resources.sh",
252
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
253
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXUpdates/EXUpdates.bundle",
254
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
255
+ );
256
+ name = "[CP] Copy Pods Resources";
257
+ outputPaths = (
258
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
259
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXUpdates.bundle",
260
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
261
+ );
262
+ runOnlyForDeploymentPostprocessing = 0;
263
+ shellPath = /bin/sh;
264
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-exampleForExpo/Pods-exampleForExpo-resources.sh\"\n";
265
+ showEnvVarsInLog = 0;
266
+ };
267
+ DF5B7D91A69AFD13A9B286A6 /* [Expo] Configure project */ = {
268
+ isa = PBXShellScriptBuildPhase;
269
+ alwaysOutOfDate = 1;
270
+ buildActionMask = 2147483647;
271
+ files = (
272
+ );
273
+ inputFileListPaths = (
274
+ );
275
+ inputPaths = (
276
+ );
277
+ name = "[Expo] Configure project";
278
+ outputFileListPaths = (
279
+ );
280
+ outputPaths = (
281
+ );
282
+ runOnlyForDeploymentPostprocessing = 0;
283
+ shellPath = /bin/sh;
284
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-exampleForExpo/expo-configure-project.sh\"\n";
285
+ };
286
+ FD10A7F022414F080027D42C /* Start Packager */ = {
287
+ isa = PBXShellScriptBuildPhase;
288
+ buildActionMask = 2147483647;
289
+ files = (
290
+ );
291
+ inputFileListPaths = (
292
+ );
293
+ inputPaths = (
294
+ );
295
+ name = "Start Packager";
296
+ outputFileListPaths = (
297
+ );
298
+ outputPaths = (
299
+ );
300
+ runOnlyForDeploymentPostprocessing = 0;
301
+ shellPath = /bin/sh;
302
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\nexport RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/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 `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/launchPackager.command'\"` || echo \"Can't start packager automatically\"\n fi\nfi\n";
303
+ showEnvVarsInLog = 0;
304
+ };
305
+ /* End PBXShellScriptBuildPhase section */
306
+
307
+ /* Begin PBXSourcesBuildPhase section */
308
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
309
+ isa = PBXSourcesBuildPhase;
310
+ buildActionMask = 2147483647;
311
+ files = (
312
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
313
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
314
+ B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
315
+ 3526E1DC7D8A47BBAABD90D8 /* noop-file.swift in Sources */,
316
+ );
317
+ runOnlyForDeploymentPostprocessing = 0;
318
+ };
319
+ /* End PBXSourcesBuildPhase section */
320
+
321
+ /* Begin XCBuildConfiguration section */
322
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
323
+ isa = XCBuildConfiguration;
324
+ baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-exampleForExpo.debug.xcconfig */;
325
+ buildSettings = {
326
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
327
+ CLANG_ENABLE_MODULES = YES;
328
+ CODE_SIGN_ENTITLEMENTS = exampleForExpo/exampleForExpo.entitlements;
329
+ CURRENT_PROJECT_VERSION = 1;
330
+ DEVELOPMENT_TEAM = NLA2N3C754;
331
+ ENABLE_BITCODE = NO;
332
+ GCC_PREPROCESSOR_DEFINITIONS = (
333
+ "$(inherited)",
334
+ "FB_SONARKIT_ENABLED=1",
335
+ );
336
+ INFOPLIST_FILE = exampleForExpo/Info.plist;
337
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
338
+ LD_RUNPATH_SEARCH_PATHS = (
339
+ "$(inherited)",
340
+ "@executable_path/Frameworks",
341
+ );
342
+ OTHER_LDFLAGS = (
343
+ "$(inherited)",
344
+ "-ObjC",
345
+ "-lc++",
346
+ );
347
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
348
+ PRODUCT_BUNDLE_IDENTIFIER = kr.iamport.exampleForExpo;
349
+ PRODUCT_NAME = exampleForExpo;
350
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
351
+ SWIFT_VERSION = 5.0;
352
+ TARGETED_DEVICE_FAMILY = 1;
353
+ VERSIONING_SYSTEM = "apple-generic";
354
+ };
355
+ name = Debug;
356
+ };
357
+ 13B07F951A680F5B00A75B9A /* Release */ = {
358
+ isa = XCBuildConfiguration;
359
+ baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-exampleForExpo.release.xcconfig */;
360
+ buildSettings = {
361
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
362
+ CLANG_ENABLE_MODULES = YES;
363
+ CODE_SIGN_ENTITLEMENTS = exampleForExpo/exampleForExpo.entitlements;
364
+ CURRENT_PROJECT_VERSION = 1;
365
+ DEVELOPMENT_TEAM = NLA2N3C754;
366
+ INFOPLIST_FILE = exampleForExpo/Info.plist;
367
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
368
+ LD_RUNPATH_SEARCH_PATHS = (
369
+ "$(inherited)",
370
+ "@executable_path/Frameworks",
371
+ );
372
+ OTHER_LDFLAGS = (
373
+ "$(inherited)",
374
+ "-ObjC",
375
+ "-lc++",
376
+ );
377
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
378
+ PRODUCT_BUNDLE_IDENTIFIER = kr.iamport.exampleForExpo;
379
+ PRODUCT_NAME = exampleForExpo;
380
+ SWIFT_VERSION = 5.0;
381
+ TARGETED_DEVICE_FAMILY = 1;
382
+ VERSIONING_SYSTEM = "apple-generic";
383
+ };
384
+ name = Release;
385
+ };
386
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
387
+ isa = XCBuildConfiguration;
388
+ buildSettings = {
389
+ ALWAYS_SEARCH_USER_PATHS = NO;
390
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
391
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
392
+ CLANG_CXX_LIBRARY = "libc++";
393
+ CLANG_ENABLE_MODULES = YES;
394
+ CLANG_ENABLE_OBJC_ARC = YES;
395
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
396
+ CLANG_WARN_BOOL_CONVERSION = YES;
397
+ CLANG_WARN_COMMA = YES;
398
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
399
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
400
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
401
+ CLANG_WARN_EMPTY_BODY = YES;
402
+ CLANG_WARN_ENUM_CONVERSION = YES;
403
+ CLANG_WARN_INFINITE_RECURSION = YES;
404
+ CLANG_WARN_INT_CONVERSION = YES;
405
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
406
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
407
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
408
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
409
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
410
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
411
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
412
+ CLANG_WARN_UNREACHABLE_CODE = YES;
413
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
414
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
415
+ COPY_PHASE_STRIP = NO;
416
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
417
+ ENABLE_TESTABILITY = YES;
418
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
419
+ GCC_C_LANGUAGE_STANDARD = gnu99;
420
+ GCC_DYNAMIC_NO_PIC = NO;
421
+ GCC_NO_COMMON_BLOCKS = YES;
422
+ GCC_OPTIMIZATION_LEVEL = 0;
423
+ GCC_PREPROCESSOR_DEFINITIONS = (
424
+ "DEBUG=1",
425
+ "$(inherited)",
426
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
427
+ );
428
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
429
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
430
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
431
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
432
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
433
+ GCC_WARN_UNUSED_FUNCTION = YES;
434
+ GCC_WARN_UNUSED_VARIABLE = YES;
435
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
436
+ LD_RUNPATH_SEARCH_PATHS = (
437
+ /usr/lib/swift,
438
+ "$(inherited)",
439
+ );
440
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
441
+ MTL_ENABLE_DEBUG_INFO = YES;
442
+ ONLY_ACTIVE_ARCH = YES;
443
+ OTHER_CFLAGS = "$(inherited)";
444
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
445
+ OTHER_LDFLAGS = (
446
+ "$(inherited)",
447
+ "-Wl",
448
+ "-ld_classic",
449
+ );
450
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
451
+ SDKROOT = iphoneos;
452
+ };
453
+ name = Debug;
454
+ };
455
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
456
+ isa = XCBuildConfiguration;
457
+ buildSettings = {
458
+ ALWAYS_SEARCH_USER_PATHS = NO;
459
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
460
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
461
+ CLANG_CXX_LIBRARY = "libc++";
462
+ CLANG_ENABLE_MODULES = YES;
463
+ CLANG_ENABLE_OBJC_ARC = YES;
464
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
465
+ CLANG_WARN_BOOL_CONVERSION = YES;
466
+ CLANG_WARN_COMMA = YES;
467
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
468
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
469
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
470
+ CLANG_WARN_EMPTY_BODY = YES;
471
+ CLANG_WARN_ENUM_CONVERSION = YES;
472
+ CLANG_WARN_INFINITE_RECURSION = YES;
473
+ CLANG_WARN_INT_CONVERSION = YES;
474
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
475
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
476
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
477
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
478
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
479
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
480
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
481
+ CLANG_WARN_UNREACHABLE_CODE = YES;
482
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
483
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
484
+ COPY_PHASE_STRIP = YES;
485
+ ENABLE_NS_ASSERTIONS = NO;
486
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
487
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
488
+ GCC_C_LANGUAGE_STANDARD = gnu99;
489
+ GCC_NO_COMMON_BLOCKS = YES;
490
+ GCC_PREPROCESSOR_DEFINITIONS = (
491
+ "$(inherited)",
492
+ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
493
+ );
494
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
495
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
496
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
497
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
498
+ GCC_WARN_UNUSED_FUNCTION = YES;
499
+ GCC_WARN_UNUSED_VARIABLE = YES;
500
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
501
+ LD_RUNPATH_SEARCH_PATHS = (
502
+ /usr/lib/swift,
503
+ "$(inherited)",
504
+ );
505
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
506
+ MTL_ENABLE_DEBUG_INFO = NO;
507
+ OTHER_CFLAGS = "$(inherited)";
508
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
509
+ OTHER_LDFLAGS = (
510
+ "$(inherited)",
511
+ "-Wl",
512
+ "-ld_classic",
513
+ );
514
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
515
+ SDKROOT = iphoneos;
516
+ VALIDATE_PRODUCT = YES;
517
+ };
518
+ name = Release;
519
+ };
520
+ /* End XCBuildConfiguration section */
521
+
522
+ /* Begin XCConfigurationList section */
523
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "exampleForExpo" */ = {
524
+ isa = XCConfigurationList;
525
+ buildConfigurations = (
526
+ 13B07F941A680F5B00A75B9A /* Debug */,
527
+ 13B07F951A680F5B00A75B9A /* Release */,
528
+ );
529
+ defaultConfigurationIsVisible = 0;
530
+ defaultConfigurationName = Release;
531
+ };
532
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "exampleForExpo" */ = {
533
+ isa = XCConfigurationList;
534
+ buildConfigurations = (
535
+ 83CBBA201A601CBA00E9B192 /* Debug */,
536
+ 83CBBA211A601CBA00E9B192 /* Release */,
537
+ );
538
+ defaultConfigurationIsVisible = 0;
539
+ defaultConfigurationName = Release;
540
+ };
541
+ /* End XCConfigurationList section */
542
+ };
543
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
544
+ }
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1130"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
+ BuildableName = "exampleForExpo.app"
19
+ BlueprintName = "exampleForExpo"
20
+ ReferencedContainer = "container:exampleForExpo.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
+ BuildableName = "exampleForExpoTests.xctest"
37
+ BlueprintName = "exampleForExpoTests"
38
+ ReferencedContainer = "container:exampleForExpo.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ </TestAction>
43
+ <LaunchAction
44
+ buildConfiguration = "Debug"
45
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
46
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47
+ launchStyle = "0"
48
+ useCustomWorkingDirectory = "NO"
49
+ ignoresPersistentStateOnLaunch = "NO"
50
+ debugDocumentVersioning = "YES"
51
+ debugServiceExtension = "internal"
52
+ allowLocationSimulation = "YES">
53
+ <BuildableProductRunnable
54
+ runnableDebuggingMode = "0">
55
+ <BuildableReference
56
+ BuildableIdentifier = "primary"
57
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
+ BuildableName = "exampleForExpo.app"
59
+ BlueprintName = "exampleForExpo"
60
+ ReferencedContainer = "container:exampleForExpo.xcodeproj">
61
+ </BuildableReference>
62
+ </BuildableProductRunnable>
63
+ </LaunchAction>
64
+ <ProfileAction
65
+ buildConfiguration = "Release"
66
+ shouldUseLaunchSchemeArgsEnv = "YES"
67
+ savedToolIdentifier = ""
68
+ useCustomWorkingDirectory = "NO"
69
+ debugDocumentVersioning = "YES">
70
+ <BuildableProductRunnable
71
+ runnableDebuggingMode = "0">
72
+ <BuildableReference
73
+ BuildableIdentifier = "primary"
74
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
+ BuildableName = "exampleForExpo.app"
76
+ BlueprintName = "exampleForExpo"
77
+ ReferencedContainer = "container:exampleForExpo.xcodeproj">
78
+ </BuildableReference>
79
+ </BuildableProductRunnable>
80
+ </ProfileAction>
81
+ <AnalyzeAction
82
+ buildConfiguration = "Debug">
83
+ </AnalyzeAction>
84
+ <ArchiveAction
85
+ buildConfiguration = "Release"
86
+ revealArchiveInOrganizer = "YES">
87
+ </ArchiveAction>
88
+ </Scheme>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:exampleForExpo.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>