clox-picker 0.1.1

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