@coinbase/create-cdp-app 0.0.26 → 0.0.28

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 (82) hide show
  1. package/dist/index.js +39 -10
  2. package/dist/index.js.map +1 -1
  3. package/package.json +1 -1
  4. package/template-react-native/App.tsx +359 -0
  5. package/template-react-native/EOATransaction.tsx +360 -0
  6. package/template-react-native/README.md +57 -0
  7. package/template-react-native/SmartAccountTransaction.tsx +304 -0
  8. package/template-react-native/Transaction.tsx +1 -0
  9. package/template-react-native/_gitignore +37 -0
  10. package/template-react-native/android/app/build.gradle +177 -0
  11. package/template-react-native/android/app/debug.keystore +0 -0
  12. package/template-react-native/android/app/proguard-rules.pro +14 -0
  13. package/template-react-native/android/app/src/debug/AndroidManifest.xml +7 -0
  14. package/template-react-native/android/app/src/main/AndroidManifest.xml +25 -0
  15. package/template-react-native/android/app/src/main/java/com/anonymous/reactnativeexpo/MainActivity.kt +61 -0
  16. package/template-react-native/android/app/src/main/java/com/anonymous/reactnativeexpo/MainApplication.kt +57 -0
  17. package/template-react-native/android/app/src/main/res/drawable/ic_launcher_background.xml +6 -0
  18. package/template-react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  19. package/template-react-native/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png +0 -0
  20. package/template-react-native/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png +0 -0
  21. package/template-react-native/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png +0 -0
  22. package/template-react-native/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png +0 -0
  23. package/template-react-native/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png +0 -0
  24. package/template-react-native/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
  25. package/template-react-native/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
  26. package/template-react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
  27. package/template-react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
  28. package/template-react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
  29. package/template-react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
  30. package/template-react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
  31. package/template-react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
  32. package/template-react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
  33. package/template-react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
  34. package/template-react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
  35. package/template-react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
  36. package/template-react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
  37. package/template-react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
  38. package/template-react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
  39. package/template-react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
  40. package/template-react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
  41. package/template-react-native/android/app/src/main/res/values/colors.xml +6 -0
  42. package/template-react-native/android/app/src/main/res/values/strings.xml +5 -0
  43. package/template-react-native/android/app/src/main/res/values/styles.xml +10 -0
  44. package/template-react-native/android/app/src/main/res/values-night/colors.xml +1 -0
  45. package/template-react-native/android/build.gradle +37 -0
  46. package/template-react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  47. package/template-react-native/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  48. package/template-react-native/android/gradle.properties +59 -0
  49. package/template-react-native/android/gradlew +251 -0
  50. package/template-react-native/android/gradlew.bat +94 -0
  51. package/template-react-native/android/settings.gradle +39 -0
  52. package/template-react-native/app.json +34 -0
  53. package/template-react-native/assets/adaptive-icon.png +0 -0
  54. package/template-react-native/assets/favicon.png +0 -0
  55. package/template-react-native/assets/icon.png +0 -0
  56. package/template-react-native/assets/splash-icon.png +0 -0
  57. package/template-react-native/env.example +5 -0
  58. package/template-react-native/index.ts +20 -0
  59. package/template-react-native/ios/.xcode.env +11 -0
  60. package/template-react-native/ios/Podfile +64 -0
  61. package/template-react-native/ios/Podfile.lock +2125 -0
  62. package/template-react-native/ios/Podfile.properties.json +5 -0
  63. package/template-react-native/ios/reactnativeexpo/AppDelegate.swift +70 -0
  64. package/template-react-native/ios/reactnativeexpo/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
  65. package/template-react-native/ios/reactnativeexpo/Images.xcassets/AppIcon.appiconset/Contents.json +14 -0
  66. package/template-react-native/ios/reactnativeexpo/Images.xcassets/Contents.json +6 -0
  67. package/template-react-native/ios/reactnativeexpo/Images.xcassets/SplashScreenBackground.colorset/Contents.json +20 -0
  68. package/template-react-native/ios/reactnativeexpo/Images.xcassets/SplashScreenLogo.imageset/Contents.json +23 -0
  69. package/template-react-native/ios/reactnativeexpo/Images.xcassets/SplashScreenLogo.imageset/image.png +0 -0
  70. package/template-react-native/ios/reactnativeexpo/Images.xcassets/SplashScreenLogo.imageset/image@2x.png +0 -0
  71. package/template-react-native/ios/reactnativeexpo/Images.xcassets/SplashScreenLogo.imageset/image@3x.png +0 -0
  72. package/template-react-native/ios/reactnativeexpo/Info.plist +74 -0
  73. package/template-react-native/ios/reactnativeexpo/PrivacyInfo.xcprivacy +48 -0
  74. package/template-react-native/ios/reactnativeexpo/SplashScreen.storyboard +44 -0
  75. package/template-react-native/ios/reactnativeexpo/Supporting/Expo.plist +12 -0
  76. package/template-react-native/ios/reactnativeexpo/reactnativeexpo-Bridging-Header.h +3 -0
  77. package/template-react-native/ios/reactnativeexpo/reactnativeexpo.entitlements +5 -0
  78. package/template-react-native/ios/reactnativeexpo.xcodeproj/project.pbxproj +545 -0
  79. package/template-react-native/ios/reactnativeexpo.xcodeproj/xcshareddata/xcschemes/reactnativeexpo.xcscheme +88 -0
  80. package/template-react-native/ios/reactnativeexpo.xcworkspace/contents.xcworkspacedata +10 -0
  81. package/template-react-native/package.json +30 -0
  82. package/template-react-native/tsconfig.json +6 -0
@@ -0,0 +1,545 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
11
+ 3A1FA13309A3BF081624FB67 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC92CE3A68FA3D8D1C90C6AA /* ExpoModulesProvider.swift */; };
12
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
13
+ 48ABF098BA519E6856662CAB /* libPods-reactnativeexpo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 50A04599E241AA15BC66A39C /* libPods-reactnativeexpo.a */; };
14
+ 7B8BDA8B35CE284874881A04 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4C5ACAD491ADBFF212F43A1A /* PrivacyInfo.xcprivacy */; };
15
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
16
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXFileReference section */
20
+ 13B07F961A680F5B00A75B9A /* reactnativeexpo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativeexpo.app; sourceTree = BUILT_PRODUCTS_DIR; };
21
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativeexpo/Images.xcassets; sourceTree = "<group>"; };
22
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativeexpo/Info.plist; sourceTree = "<group>"; };
23
+ 23643132E5A4C307CC375EEF /* Pods-reactnativeexpo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeexpo.release.xcconfig"; path = "Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo.release.xcconfig"; sourceTree = "<group>"; };
24
+ 4C5ACAD491ADBFF212F43A1A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = reactnativeexpo/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
25
+ 50A04599E241AA15BC66A39C /* libPods-reactnativeexpo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativeexpo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
26
+ A5F23491F321060476B937B9 /* Pods-reactnativeexpo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeexpo.debug.xcconfig"; path = "Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo.debug.xcconfig"; sourceTree = "<group>"; };
27
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = reactnativeexpo/SplashScreen.storyboard; sourceTree = "<group>"; };
28
+ BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
29
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
30
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = reactnativeexpo/AppDelegate.swift; sourceTree = "<group>"; };
31
+ F11748442D0722820044C1D9 /* reactnativeexpo-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "reactnativeexpo-Bridging-Header.h"; path = "reactnativeexpo/reactnativeexpo-Bridging-Header.h"; sourceTree = "<group>"; };
32
+ FC92CE3A68FA3D8D1C90C6AA /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-reactnativeexpo/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
33
+ /* End PBXFileReference section */
34
+
35
+ /* Begin PBXFrameworksBuildPhase section */
36
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
37
+ isa = PBXFrameworksBuildPhase;
38
+ buildActionMask = 2147483647;
39
+ files = (
40
+ 48ABF098BA519E6856662CAB /* libPods-reactnativeexpo.a in Frameworks */,
41
+ );
42
+ runOnlyForDeploymentPostprocessing = 0;
43
+ };
44
+ /* End PBXFrameworksBuildPhase section */
45
+
46
+ /* Begin PBXGroup section */
47
+ 13B07FAE1A68108700A75B9A /* reactnativeexpo */ = {
48
+ isa = PBXGroup;
49
+ children = (
50
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */,
51
+ F11748442D0722820044C1D9 /* reactnativeexpo-Bridging-Header.h */,
52
+ BB2F792B24A3F905000567C9 /* Supporting */,
53
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
54
+ 13B07FB61A68108700A75B9A /* Info.plist */,
55
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
56
+ 4C5ACAD491ADBFF212F43A1A /* PrivacyInfo.xcprivacy */,
57
+ );
58
+ name = reactnativeexpo;
59
+ sourceTree = "<group>";
60
+ };
61
+ 1C4F05AC92D15419EB380D93 /* ExpoModulesProviders */ = {
62
+ isa = PBXGroup;
63
+ children = (
64
+ DFD4E20D71EF2BA0DC622E3C /* reactnativeexpo */,
65
+ );
66
+ name = ExpoModulesProviders;
67
+ sourceTree = "<group>";
68
+ };
69
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
73
+ 50A04599E241AA15BC66A39C /* libPods-reactnativeexpo.a */,
74
+ );
75
+ name = Frameworks;
76
+ sourceTree = "<group>";
77
+ };
78
+ 3D44AE744318C907400F12DA /* Pods */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ A5F23491F321060476B937B9 /* Pods-reactnativeexpo.debug.xcconfig */,
82
+ 23643132E5A4C307CC375EEF /* Pods-reactnativeexpo.release.xcconfig */,
83
+ );
84
+ name = Pods;
85
+ path = Pods;
86
+ sourceTree = "<group>";
87
+ };
88
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
89
+ isa = PBXGroup;
90
+ children = (
91
+ );
92
+ name = Libraries;
93
+ sourceTree = "<group>";
94
+ };
95
+ 83CBB9F61A601CBA00E9B192 = {
96
+ isa = PBXGroup;
97
+ children = (
98
+ 13B07FAE1A68108700A75B9A /* reactnativeexpo */,
99
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
100
+ 83CBBA001A601CBA00E9B192 /* Products */,
101
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
102
+ 3D44AE744318C907400F12DA /* Pods */,
103
+ 1C4F05AC92D15419EB380D93 /* ExpoModulesProviders */,
104
+ );
105
+ indentWidth = 2;
106
+ sourceTree = "<group>";
107
+ tabWidth = 2;
108
+ usesTabs = 0;
109
+ };
110
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
111
+ isa = PBXGroup;
112
+ children = (
113
+ 13B07F961A680F5B00A75B9A /* reactnativeexpo.app */,
114
+ );
115
+ name = Products;
116
+ sourceTree = "<group>";
117
+ };
118
+ BB2F792B24A3F905000567C9 /* Supporting */ = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ BB2F792C24A3F905000567C9 /* Expo.plist */,
122
+ );
123
+ name = Supporting;
124
+ path = reactnativeexpo/Supporting;
125
+ sourceTree = "<group>";
126
+ };
127
+ DFD4E20D71EF2BA0DC622E3C /* reactnativeexpo */ = {
128
+ isa = PBXGroup;
129
+ children = (
130
+ FC92CE3A68FA3D8D1C90C6AA /* ExpoModulesProvider.swift */,
131
+ );
132
+ name = reactnativeexpo;
133
+ sourceTree = "<group>";
134
+ };
135
+ /* End PBXGroup section */
136
+
137
+ /* Begin PBXNativeTarget section */
138
+ 13B07F861A680F5B00A75B9A /* reactnativeexpo */ = {
139
+ isa = PBXNativeTarget;
140
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeexpo" */;
141
+ buildPhases = (
142
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
143
+ 44454EF2587F6ABBD316C61C /* [Expo] Configure project */,
144
+ 13B07F871A680F5B00A75B9A /* Sources */,
145
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
146
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
147
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
148
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
149
+ B821EF4252931CD11E1C659E /* [CP] Embed Pods Frameworks */,
150
+ );
151
+ buildRules = (
152
+ );
153
+ dependencies = (
154
+ );
155
+ name = reactnativeexpo;
156
+ productName = reactnativeexpo;
157
+ productReference = 13B07F961A680F5B00A75B9A /* reactnativeexpo.app */;
158
+ productType = "com.apple.product-type.application";
159
+ };
160
+ /* End PBXNativeTarget section */
161
+
162
+ /* Begin PBXProject section */
163
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
164
+ isa = PBXProject;
165
+ attributes = {
166
+ LastUpgradeCheck = 1130;
167
+ TargetAttributes = {
168
+ 13B07F861A680F5B00A75B9A = {
169
+ LastSwiftMigration = 1250;
170
+ };
171
+ };
172
+ };
173
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeexpo" */;
174
+ compatibilityVersion = "Xcode 3.2";
175
+ developmentRegion = en;
176
+ hasScannedForEncodings = 0;
177
+ knownRegions = (
178
+ en,
179
+ Base,
180
+ );
181
+ mainGroup = 83CBB9F61A601CBA00E9B192;
182
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
183
+ projectDirPath = "";
184
+ projectRoot = "";
185
+ targets = (
186
+ 13B07F861A680F5B00A75B9A /* reactnativeexpo */,
187
+ );
188
+ };
189
+ /* End PBXProject section */
190
+
191
+ /* Begin PBXResourcesBuildPhase section */
192
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
193
+ isa = PBXResourcesBuildPhase;
194
+ buildActionMask = 2147483647;
195
+ files = (
196
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
197
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
198
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
199
+ 7B8BDA8B35CE284874881A04 /* PrivacyInfo.xcprivacy in Resources */,
200
+ );
201
+ runOnlyForDeploymentPostprocessing = 0;
202
+ };
203
+ /* End PBXResourcesBuildPhase section */
204
+
205
+ /* Begin PBXShellScriptBuildPhase section */
206
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
207
+ isa = PBXShellScriptBuildPhase;
208
+ alwaysOutOfDate = 1;
209
+ buildActionMask = 2147483647;
210
+ files = (
211
+ );
212
+ inputPaths = (
213
+ );
214
+ name = "Bundle React Native code and images";
215
+ outputPaths = (
216
+ );
217
+ runOnlyForDeploymentPostprocessing = 0;
218
+ shellPath = /bin/sh;
219
+ 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 absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
220
+ };
221
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
222
+ isa = PBXShellScriptBuildPhase;
223
+ buildActionMask = 2147483647;
224
+ files = (
225
+ );
226
+ inputFileListPaths = (
227
+ );
228
+ inputPaths = (
229
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
230
+ "${PODS_ROOT}/Manifest.lock",
231
+ );
232
+ name = "[CP] Check Pods Manifest.lock";
233
+ outputFileListPaths = (
234
+ );
235
+ outputPaths = (
236
+ "$(DERIVED_FILE_DIR)/Pods-reactnativeexpo-checkManifestLockResult.txt",
237
+ );
238
+ runOnlyForDeploymentPostprocessing = 0;
239
+ shellPath = /bin/sh;
240
+ 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";
241
+ showEnvVarsInLog = 0;
242
+ };
243
+ 44454EF2587F6ABBD316C61C /* [Expo] Configure project */ = {
244
+ isa = PBXShellScriptBuildPhase;
245
+ alwaysOutOfDate = 1;
246
+ buildActionMask = 2147483647;
247
+ files = (
248
+ );
249
+ inputFileListPaths = (
250
+ );
251
+ inputPaths = (
252
+ );
253
+ name = "[Expo] Configure project";
254
+ outputFileListPaths = (
255
+ );
256
+ outputPaths = (
257
+ );
258
+ runOnlyForDeploymentPostprocessing = 0;
259
+ shellPath = /bin/sh;
260
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-reactnativeexpo/expo-configure-project.sh\"\n";
261
+ };
262
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
263
+ isa = PBXShellScriptBuildPhase;
264
+ buildActionMask = 2147483647;
265
+ files = (
266
+ );
267
+ inputPaths = (
268
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo-resources.sh",
269
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
270
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
271
+ "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
272
+ "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle",
273
+ "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",
274
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle",
275
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle",
276
+ "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle",
277
+ "${PODS_CONFIGURATION_BUILD_DIR}/glog/glog_privacy.bundle",
278
+ );
279
+ name = "[CP] Copy Pods Resources";
280
+ outputPaths = (
281
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
282
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
283
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
284
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle",
285
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle",
286
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle",
287
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle",
288
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle",
289
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/glog_privacy.bundle",
290
+ );
291
+ runOnlyForDeploymentPostprocessing = 0;
292
+ shellPath = /bin/sh;
293
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo-resources.sh\"\n";
294
+ showEnvVarsInLog = 0;
295
+ };
296
+ B821EF4252931CD11E1C659E /* [CP] Embed Pods Frameworks */ = {
297
+ isa = PBXShellScriptBuildPhase;
298
+ buildActionMask = 2147483647;
299
+ files = (
300
+ );
301
+ inputPaths = (
302
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo-frameworks.sh",
303
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
304
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
305
+ );
306
+ name = "[CP] Embed Pods Frameworks";
307
+ outputPaths = (
308
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
309
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
310
+ );
311
+ runOnlyForDeploymentPostprocessing = 0;
312
+ shellPath = /bin/sh;
313
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeexpo/Pods-reactnativeexpo-frameworks.sh\"\n";
314
+ showEnvVarsInLog = 0;
315
+ };
316
+ /* End PBXShellScriptBuildPhase section */
317
+
318
+ /* Begin PBXSourcesBuildPhase section */
319
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
320
+ isa = PBXSourcesBuildPhase;
321
+ buildActionMask = 2147483647;
322
+ files = (
323
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,
324
+ 3A1FA13309A3BF081624FB67 /* ExpoModulesProvider.swift in Sources */,
325
+ );
326
+ runOnlyForDeploymentPostprocessing = 0;
327
+ };
328
+ /* End PBXSourcesBuildPhase section */
329
+
330
+ /* Begin XCBuildConfiguration section */
331
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
332
+ isa = XCBuildConfiguration;
333
+ baseConfigurationReference = A5F23491F321060476B937B9 /* Pods-reactnativeexpo.debug.xcconfig */;
334
+ buildSettings = {
335
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
336
+ CLANG_ENABLE_MODULES = YES;
337
+ CODE_SIGN_ENTITLEMENTS = reactnativeexpo/reactnativeexpo.entitlements;
338
+ CURRENT_PROJECT_VERSION = 1;
339
+ ENABLE_BITCODE = NO;
340
+ GCC_PREPROCESSOR_DEFINITIONS = (
341
+ "$(inherited)",
342
+ "FB_SONARKIT_ENABLED=1",
343
+ );
344
+ INFOPLIST_FILE = reactnativeexpo/Info.plist;
345
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
346
+ LD_RUNPATH_SEARCH_PATHS = (
347
+ "$(inherited)",
348
+ "@executable_path/Frameworks",
349
+ );
350
+ MARKETING_VERSION = 1.0;
351
+ OTHER_LDFLAGS = (
352
+ "$(inherited)",
353
+ "-ObjC",
354
+ "-lc++",
355
+ );
356
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
357
+ PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.reactnativeexpo;
358
+ PRODUCT_NAME = reactnativeexpo;
359
+ SWIFT_OBJC_BRIDGING_HEADER = "reactnativeexpo/reactnativeexpo-Bridging-Header.h";
360
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
361
+ SWIFT_VERSION = 5.0;
362
+ TARGETED_DEVICE_FAMILY = "1,2";
363
+ VERSIONING_SYSTEM = "apple-generic";
364
+ };
365
+ name = Debug;
366
+ };
367
+ 13B07F951A680F5B00A75B9A /* Release */ = {
368
+ isa = XCBuildConfiguration;
369
+ baseConfigurationReference = 23643132E5A4C307CC375EEF /* Pods-reactnativeexpo.release.xcconfig */;
370
+ buildSettings = {
371
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
372
+ CLANG_ENABLE_MODULES = YES;
373
+ CODE_SIGN_ENTITLEMENTS = reactnativeexpo/reactnativeexpo.entitlements;
374
+ CURRENT_PROJECT_VERSION = 1;
375
+ INFOPLIST_FILE = reactnativeexpo/Info.plist;
376
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
377
+ LD_RUNPATH_SEARCH_PATHS = (
378
+ "$(inherited)",
379
+ "@executable_path/Frameworks",
380
+ );
381
+ MARKETING_VERSION = 1.0;
382
+ OTHER_LDFLAGS = (
383
+ "$(inherited)",
384
+ "-ObjC",
385
+ "-lc++",
386
+ );
387
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
388
+ PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.reactnativeexpo;
389
+ PRODUCT_NAME = reactnativeexpo;
390
+ SWIFT_OBJC_BRIDGING_HEADER = "reactnativeexpo/reactnativeexpo-Bridging-Header.h";
391
+ SWIFT_VERSION = 5.0;
392
+ TARGETED_DEVICE_FAMILY = "1,2";
393
+ VERSIONING_SYSTEM = "apple-generic";
394
+ };
395
+ name = Release;
396
+ };
397
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
398
+ isa = XCBuildConfiguration;
399
+ buildSettings = {
400
+ ALWAYS_SEARCH_USER_PATHS = NO;
401
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
402
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
403
+ CLANG_CXX_LIBRARY = "libc++";
404
+ CLANG_ENABLE_MODULES = YES;
405
+ CLANG_ENABLE_OBJC_ARC = YES;
406
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
407
+ CLANG_WARN_BOOL_CONVERSION = YES;
408
+ CLANG_WARN_COMMA = YES;
409
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
410
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
411
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
412
+ CLANG_WARN_EMPTY_BODY = YES;
413
+ CLANG_WARN_ENUM_CONVERSION = YES;
414
+ CLANG_WARN_INFINITE_RECURSION = YES;
415
+ CLANG_WARN_INT_CONVERSION = YES;
416
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
417
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
418
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
419
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
420
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
421
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
422
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
423
+ CLANG_WARN_UNREACHABLE_CODE = YES;
424
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
425
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
426
+ COPY_PHASE_STRIP = NO;
427
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
428
+ ENABLE_TESTABILITY = YES;
429
+ GCC_C_LANGUAGE_STANDARD = gnu99;
430
+ GCC_DYNAMIC_NO_PIC = NO;
431
+ GCC_NO_COMMON_BLOCKS = YES;
432
+ GCC_OPTIMIZATION_LEVEL = 0;
433
+ GCC_PREPROCESSOR_DEFINITIONS = (
434
+ "DEBUG=1",
435
+ "$(inherited)",
436
+ );
437
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
438
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
439
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
440
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
441
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
442
+ GCC_WARN_UNUSED_FUNCTION = YES;
443
+ GCC_WARN_UNUSED_VARIABLE = YES;
444
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
445
+ LD_RUNPATH_SEARCH_PATHS = (
446
+ /usr/lib/swift,
447
+ "$(inherited)",
448
+ );
449
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
450
+ MTL_ENABLE_DEBUG_INFO = YES;
451
+ ONLY_ACTIVE_ARCH = YES;
452
+ OTHER_LDFLAGS = (
453
+ "$(inherited)",
454
+ " ",
455
+ );
456
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native";
457
+ SDKROOT = iphoneos;
458
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
459
+ USE_HERMES = true;
460
+ };
461
+ name = Debug;
462
+ };
463
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
464
+ isa = XCBuildConfiguration;
465
+ buildSettings = {
466
+ ALWAYS_SEARCH_USER_PATHS = NO;
467
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
468
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
469
+ CLANG_CXX_LIBRARY = "libc++";
470
+ CLANG_ENABLE_MODULES = YES;
471
+ CLANG_ENABLE_OBJC_ARC = YES;
472
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
473
+ CLANG_WARN_BOOL_CONVERSION = YES;
474
+ CLANG_WARN_COMMA = YES;
475
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
476
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
477
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
478
+ CLANG_WARN_EMPTY_BODY = YES;
479
+ CLANG_WARN_ENUM_CONVERSION = YES;
480
+ CLANG_WARN_INFINITE_RECURSION = YES;
481
+ CLANG_WARN_INT_CONVERSION = YES;
482
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
483
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
484
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
485
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
486
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
487
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
488
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
489
+ CLANG_WARN_UNREACHABLE_CODE = YES;
490
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
491
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
492
+ COPY_PHASE_STRIP = YES;
493
+ ENABLE_NS_ASSERTIONS = NO;
494
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
495
+ GCC_C_LANGUAGE_STANDARD = gnu99;
496
+ GCC_NO_COMMON_BLOCKS = YES;
497
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
498
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
499
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
500
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
501
+ GCC_WARN_UNUSED_FUNCTION = YES;
502
+ GCC_WARN_UNUSED_VARIABLE = YES;
503
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
504
+ LD_RUNPATH_SEARCH_PATHS = (
505
+ /usr/lib/swift,
506
+ "$(inherited)",
507
+ );
508
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
509
+ MTL_ENABLE_DEBUG_INFO = NO;
510
+ OTHER_LDFLAGS = (
511
+ "$(inherited)",
512
+ " ",
513
+ );
514
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native";
515
+ SDKROOT = iphoneos;
516
+ USE_HERMES = true;
517
+ VALIDATE_PRODUCT = YES;
518
+ };
519
+ name = Release;
520
+ };
521
+ /* End XCBuildConfiguration section */
522
+
523
+ /* Begin XCConfigurationList section */
524
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeexpo" */ = {
525
+ isa = XCConfigurationList;
526
+ buildConfigurations = (
527
+ 13B07F941A680F5B00A75B9A /* Debug */,
528
+ 13B07F951A680F5B00A75B9A /* Release */,
529
+ );
530
+ defaultConfigurationIsVisible = 0;
531
+ defaultConfigurationName = Release;
532
+ };
533
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeexpo" */ = {
534
+ isa = XCConfigurationList;
535
+ buildConfigurations = (
536
+ 83CBBA201A601CBA00E9B192 /* Debug */,
537
+ 83CBBA211A601CBA00E9B192 /* Release */,
538
+ );
539
+ defaultConfigurationIsVisible = 0;
540
+ defaultConfigurationName = Release;
541
+ };
542
+ /* End XCConfigurationList section */
543
+ };
544
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
545
+ }
@@ -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 = "reactnativeexpo.app"
19
+ BlueprintName = "reactnativeexpo"
20
+ ReferencedContainer = "container:reactnativeexpo.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 = "reactnativeexpoTests.xctest"
37
+ BlueprintName = "reactnativeexpoTests"
38
+ ReferencedContainer = "container:reactnativeexpo.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 = "reactnativeexpo.app"
59
+ BlueprintName = "reactnativeexpo"
60
+ ReferencedContainer = "container:reactnativeexpo.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 = "reactnativeexpo.app"
76
+ BlueprintName = "reactnativeexpo"
77
+ ReferencedContainer = "container:reactnativeexpo.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:reactnativeexpo.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "cdp-react-native-app",
3
+ "version": "0.0.0",
4
+ "main": "index.ts",
5
+ "private": true,
6
+ "scripts": {
7
+ "android": "expo run:android",
8
+ "ios": "expo run:ios"
9
+ },
10
+ "dependencies": {
11
+ "@coinbase/cdp-hooks": "latest",
12
+ "@react-native-async-storage/async-storage": "^2.2.0",
13
+ "@ungap/structured-clone": "^1.3.0",
14
+ "expo": "~53.0.22",
15
+ "expo-clipboard": "~7.1.5",
16
+ "expo-crypto": "^14.1.5",
17
+ "expo-status-bar": "~2.2.3",
18
+ "react": "19.1.0",
19
+ "react-native": "0.79.6",
20
+ "react-native-get-random-values": "^1.11.0",
21
+ "react-native-quick-crypto": "^0.7.17",
22
+ "viem": "^2.21.45"
23
+ },
24
+ "devDependencies": {
25
+ "@babel/core": "^7.25.2",
26
+ "@types/react": "19.1.0",
27
+ "@types/ungap__structured-clone": "^1.2.0",
28
+ "typescript": "~5.8.3"
29
+ }
30
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "expo/tsconfig.base",
3
+ "compilerOptions": {
4
+ "strict": true
5
+ }
6
+ }