react-native-qrcode-svg 6.3.2 → 6.3.12

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 (91) hide show
  1. package/Example/.bundle/config +2 -0
  2. package/Example/.eslintrc.js +4 -0
  3. package/Example/.prettierrc.js +7 -0
  4. package/Example/.watchmanconfig +1 -0
  5. package/Example/Gemfile +9 -0
  6. package/Example/Gemfile.lock +103 -0
  7. package/Example/README.md +48 -0
  8. package/Example/__tests__/App.test.tsx +17 -0
  9. package/Example/android/app/build.gradle +119 -0
  10. package/Example/android/app/debug.keystore +0 -0
  11. package/Example/android/app/proguard-rules.pro +10 -0
  12. package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
  13. package/Example/android/app/src/main/AndroidManifest.xml +25 -0
  14. package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  15. package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
  16. package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  17. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  18. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  19. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  20. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  21. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  22. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  23. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  24. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  25. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  26. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  27. package/Example/android/app/src/main/res/values/strings.xml +3 -0
  28. package/Example/android/app/src/main/res/values/styles.xml +9 -0
  29. package/Example/android/build.gradle +21 -0
  30. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  31. package/Example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  32. package/Example/android/gradle.properties +41 -0
  33. package/Example/android/gradlew +249 -0
  34. package/Example/android/gradlew.bat +92 -0
  35. package/Example/android/settings.gradle +4 -0
  36. package/Example/app.json +4 -0
  37. package/Example/babel.config.js +4 -0
  38. package/Example/dist/index.html +24 -0
  39. package/Example/global.d.ts +7 -0
  40. package/Example/index.js +14 -0
  41. package/Example/ios/.xcode.env +11 -0
  42. package/Example/ios/Example/AppDelegate.h +6 -0
  43. package/Example/ios/Example/AppDelegate.mm +31 -0
  44. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  45. package/Example/ios/Example/Images.xcassets/Contents.json +6 -0
  46. package/Example/ios/Example/Info.plist +52 -0
  47. package/Example/ios/Example/LaunchScreen.storyboard +47 -0
  48. package/Example/ios/Example/main.m +10 -0
  49. package/Example/ios/Example.xcodeproj/project.pbxproj +698 -0
  50. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +88 -0
  51. package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
  52. package/Example/ios/ExampleTests/ExampleTests.m +66 -0
  53. package/Example/ios/ExampleTests/Info.plist +24 -0
  54. package/Example/ios/Podfile +55 -0
  55. package/Example/ios/Podfile.lock +1378 -0
  56. package/Example/jest.config.js +3 -0
  57. package/Example/macos/.xcode.env +1 -0
  58. package/Example/macos/.xcode.env.local +2 -0
  59. package/Example/macos/Example-macOS/AppDelegate.h +6 -0
  60. package/Example/macos/Example-macOS/AppDelegate.mm +40 -0
  61. package/Example/macos/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  62. package/Example/macos/Example-macOS/Assets.xcassets/Contents.json +6 -0
  63. package/Example/macos/Example-macOS/Base.lproj/Main.storyboard +684 -0
  64. package/Example/macos/Example-macOS/Example.entitlements +12 -0
  65. package/Example/macos/Example-macOS/Info.plist +47 -0
  66. package/Example/macos/Example-macOS/main.m +5 -0
  67. package/Example/macos/Example.xcodeproj/project.pbxproj +567 -0
  68. package/Example/macos/Example.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme +78 -0
  69. package/Example/macos/Example.xcworkspace/contents.xcworkspacedata +10 -0
  70. package/Example/macos/Podfile +26 -0
  71. package/Example/macos/Podfile.lock +1233 -0
  72. package/Example/metro.config.js +47 -0
  73. package/Example/package.json +53 -0
  74. package/Example/src/App.tsx +130 -0
  75. package/Example/src/assets/google.png +0 -0
  76. package/Example/src/assets/ruby.svg +12 -0
  77. package/Example/src/components/Description.tsx +16 -0
  78. package/Example/src/styles.ts +21 -0
  79. package/Example/tsconfig.json +9 -0
  80. package/Example/webpack.config.js +60 -0
  81. package/Example/yarn.lock +8957 -0
  82. package/README.md +0 -6
  83. package/index.d.ts +10 -2
  84. package/package.json +11 -2
  85. package/src/LogoSVG/index.js +22 -0
  86. package/src/LogoSVG/index.native.js +24 -0
  87. package/src/index.js +158 -125
  88. package/src/utils.js +7 -0
  89. package/.github/workflows/npmpublish.yml +0 -31
  90. package/.huskyrc +0 -5
  91. package/.lintstagedrc +0 -3
@@ -0,0 +1,12 @@
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>com.apple.security.app-sandbox</key>
6
+ <true/>
7
+ <key>com.apple.security.files.user-selected.read-only</key>
8
+ <true/>
9
+ <key>com.apple.security.network.client</key>
10
+ <true/>
11
+ </dict>
12
+ </plist>
@@ -0,0 +1,47 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>$(DEVELOPMENT_LANGUAGE)</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIconFile</key>
10
+ <string></string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>1.0</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSMinimumSystemVersion</key>
24
+ <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
25
+ <key>NSAppTransportSecurity</key>
26
+ <dict>
27
+ <key>NSAllowsArbitraryLoads</key>
28
+ <true/>
29
+ <key>NSExceptionDomains</key>
30
+ <dict>
31
+ <key>localhost</key>
32
+ <dict>
33
+ <key>NSExceptionAllowsInsecureHTTPLoads</key>
34
+ <true/>
35
+ </dict>
36
+ </dict>
37
+ </dict>
38
+ <key>NSMainStoryboardFile</key>
39
+ <string>Main</string>
40
+ <key>NSPrincipalClass</key>
41
+ <string>NSApplication</string>
42
+ <key>NSSupportsAutomaticTermination</key>
43
+ <true/>
44
+ <key>NSSupportsSuddenTermination</key>
45
+ <true/>
46
+ </dict>
47
+ </plist>
@@ -0,0 +1,5 @@
1
+ #import <Cocoa/Cocoa.h>
2
+
3
+ int main(int argc, const char *argv[]) {
4
+ return NSApplicationMain(argc, argv);
5
+ }
@@ -0,0 +1,567 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 5142014D2437B4B30078DB4F /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5142014C2437B4B30078DB4F /* AppDelegate.mm */; };
11
+ 514201522437B4B40078DB4F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 514201512437B4B40078DB4F /* Assets.xcassets */; };
12
+ 514201552437B4B40078DB4F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 514201532437B4B40078DB4F /* Main.storyboard */; };
13
+ 514201582437B4B40078DB4F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 514201572437B4B40078DB4F /* main.m */; };
14
+ D8B17AB11E83A56CCEC3D992 /* libPods-Example-macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 973036BB4865BA49BF8AF43C /* libPods-Example-macOS.a */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXFileReference section */
18
+ 13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
+ 514201492437B4B30078DB4F /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
20
+ 5142014B2437B4B30078DB4F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
21
+ 5142014C2437B4B30078DB4F /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = "<group>"; };
22
+ 514201512437B4B40078DB4F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
23
+ 514201542437B4B40078DB4F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
24
+ 514201562437B4B40078DB4F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
25
+ 514201572437B4B40078DB4F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
26
+ 514201592437B4B40078DB4F /* Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Example.entitlements; sourceTree = "<group>"; };
27
+ 973036BB4865BA49BF8AF43C /* libPods-Example-macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
28
+ D2D1F27C29F636B48388D2C0 /* Pods-Example-macOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.debug.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.debug.xcconfig"; sourceTree = "<group>"; };
29
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
30
+ FBF8E9927EBDB8FF1C20F646 /* Pods-Example-macOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.release.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.release.xcconfig"; sourceTree = "<group>"; };
31
+ /* End PBXFileReference section */
32
+
33
+ /* Begin PBXFrameworksBuildPhase section */
34
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
35
+ isa = PBXFrameworksBuildPhase;
36
+ buildActionMask = 2147483647;
37
+ files = (
38
+ );
39
+ runOnlyForDeploymentPostprocessing = 0;
40
+ };
41
+ 514201462437B4B30078DB4F /* Frameworks */ = {
42
+ isa = PBXFrameworksBuildPhase;
43
+ buildActionMask = 2147483647;
44
+ files = (
45
+ D8B17AB11E83A56CCEC3D992 /* libPods-Example-macOS.a in Frameworks */,
46
+ );
47
+ runOnlyForDeploymentPostprocessing = 0;
48
+ };
49
+ /* End PBXFrameworksBuildPhase section */
50
+
51
+ /* Begin PBXGroup section */
52
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
53
+ isa = PBXGroup;
54
+ children = (
55
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
56
+ 973036BB4865BA49BF8AF43C /* libPods-Example-macOS.a */,
57
+ );
58
+ name = Frameworks;
59
+ sourceTree = "<group>";
60
+ };
61
+ 5142014A2437B4B30078DB4F /* Example-macOS */ = {
62
+ isa = PBXGroup;
63
+ children = (
64
+ 5142014B2437B4B30078DB4F /* AppDelegate.h */,
65
+ 5142014C2437B4B30078DB4F /* AppDelegate.mm */,
66
+ 514201512437B4B40078DB4F /* Assets.xcassets */,
67
+ 514201532437B4B40078DB4F /* Main.storyboard */,
68
+ 514201562437B4B40078DB4F /* Info.plist */,
69
+ 514201572437B4B40078DB4F /* main.m */,
70
+ 514201592437B4B40078DB4F /* Example.entitlements */,
71
+ );
72
+ path = "Example-macOS";
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
+ 5142014A2437B4B30078DB4F /* Example-macOS */,
86
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
87
+ 83CBBA001A601CBA00E9B192 /* Products */,
88
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
89
+ AE2403C56C4ED3C2D693E2CD /* Pods */,
90
+ );
91
+ indentWidth = 2;
92
+ sourceTree = "<group>";
93
+ tabWidth = 2;
94
+ usesTabs = 0;
95
+ };
96
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ 13B07F961A680F5B00A75B9A /* Example.app */,
100
+ 514201492437B4B30078DB4F /* Example.app */,
101
+ );
102
+ name = Products;
103
+ sourceTree = "<group>";
104
+ };
105
+ AE2403C56C4ED3C2D693E2CD /* Pods */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ D2D1F27C29F636B48388D2C0 /* Pods-Example-macOS.debug.xcconfig */,
109
+ FBF8E9927EBDB8FF1C20F646 /* Pods-Example-macOS.release.xcconfig */,
110
+ );
111
+ name = Pods;
112
+ path = Pods;
113
+ sourceTree = "<group>";
114
+ };
115
+ /* End PBXGroup section */
116
+
117
+ /* Begin PBXNativeTarget section */
118
+ 13B07F861A680F5B00A75B9A /* Example-iOS */ = {
119
+ isa = PBXNativeTarget;
120
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example-iOS" */;
121
+ buildPhases = (
122
+ 13B07F871A680F5B00A75B9A /* Sources */,
123
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
124
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
125
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
126
+ );
127
+ buildRules = (
128
+ );
129
+ dependencies = (
130
+ );
131
+ name = "Example-iOS";
132
+ productName = Example;
133
+ productReference = 13B07F961A680F5B00A75B9A /* Example.app */;
134
+ productType = "com.apple.product-type.application";
135
+ };
136
+ 514201482437B4B30078DB4F /* Example-macOS */ = {
137
+ isa = PBXNativeTarget;
138
+ buildConfigurationList = 5142015A2437B4B40078DB4F /* Build configuration list for PBXNativeTarget "Example-macOS" */;
139
+ buildPhases = (
140
+ 1A938104A937498D81B3BD3B /* [CP] Check Pods Manifest.lock */,
141
+ 514201452437B4B30078DB4F /* Sources */,
142
+ 514201462437B4B30078DB4F /* Frameworks */,
143
+ 514201472437B4B30078DB4F /* Resources */,
144
+ 381D8A6E24576A4E00465D17 /* Bundle React Native code and images */,
145
+ 6E008F5656E8D01CF1438409 /* [CP] Copy Pods Resources */,
146
+ );
147
+ buildRules = (
148
+ );
149
+ dependencies = (
150
+ );
151
+ name = "Example-macOS";
152
+ productName = Example;
153
+ productReference = 514201492437B4B30078DB4F /* Example.app */;
154
+ productType = "com.apple.product-type.application";
155
+ };
156
+ /* End PBXNativeTarget section */
157
+
158
+ /* Begin PBXProject section */
159
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
160
+ isa = PBXProject;
161
+ attributes = {
162
+ LastUpgradeCheck = 1130;
163
+ TargetAttributes = {
164
+ 13B07F861A680F5B00A75B9A = {
165
+ LastSwiftMigration = 1120;
166
+ };
167
+ 514201482437B4B30078DB4F = {
168
+ CreatedOnToolsVersion = 11.4;
169
+ ProvisioningStyle = Automatic;
170
+ };
171
+ };
172
+ };
173
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */;
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 /* Example-iOS */,
187
+ 514201482437B4B30078DB4F /* Example-macOS */,
188
+ );
189
+ };
190
+ /* End PBXProject section */
191
+
192
+ /* Begin PBXResourcesBuildPhase section */
193
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
194
+ isa = PBXResourcesBuildPhase;
195
+ buildActionMask = 2147483647;
196
+ files = (
197
+ );
198
+ runOnlyForDeploymentPostprocessing = 0;
199
+ };
200
+ 514201472437B4B30078DB4F /* Resources */ = {
201
+ isa = PBXResourcesBuildPhase;
202
+ buildActionMask = 2147483647;
203
+ files = (
204
+ 514201522437B4B40078DB4F /* Assets.xcassets in Resources */,
205
+ 514201552437B4B40078DB4F /* Main.storyboard in Resources */,
206
+ );
207
+ runOnlyForDeploymentPostprocessing = 0;
208
+ };
209
+ /* End PBXResourcesBuildPhase section */
210
+
211
+ /* Begin PBXShellScriptBuildPhase section */
212
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
213
+ isa = PBXShellScriptBuildPhase;
214
+ buildActionMask = 2147483647;
215
+ files = (
216
+ );
217
+ inputPaths = (
218
+ );
219
+ name = "Bundle React Native code and images";
220
+ outputPaths = (
221
+ );
222
+ runOnlyForDeploymentPostprocessing = 0;
223
+ shellPath = /bin/sh;
224
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native-macos/scripts/react-native-xcode.sh\n";
225
+ };
226
+ 1A938104A937498D81B3BD3B /* [CP] Check Pods Manifest.lock */ = {
227
+ isa = PBXShellScriptBuildPhase;
228
+ buildActionMask = 2147483647;
229
+ files = (
230
+ );
231
+ inputFileListPaths = (
232
+ );
233
+ inputPaths = (
234
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
235
+ "${PODS_ROOT}/Manifest.lock",
236
+ );
237
+ name = "[CP] Check Pods Manifest.lock";
238
+ outputFileListPaths = (
239
+ );
240
+ outputPaths = (
241
+ "$(DERIVED_FILE_DIR)/Pods-Example-macOS-checkManifestLockResult.txt",
242
+ );
243
+ runOnlyForDeploymentPostprocessing = 0;
244
+ shellPath = /bin/sh;
245
+ 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";
246
+ showEnvVarsInLog = 0;
247
+ };
248
+ 381D8A6E24576A4E00465D17 /* Bundle React Native code and images */ = {
249
+ isa = PBXShellScriptBuildPhase;
250
+ buildActionMask = 2147483647;
251
+ files = (
252
+ );
253
+ inputFileListPaths = (
254
+ );
255
+ inputPaths = (
256
+ );
257
+ name = "Bundle React Native code and images";
258
+ outputFileListPaths = (
259
+ );
260
+ outputPaths = (
261
+ );
262
+ runOnlyForDeploymentPostprocessing = 0;
263
+ shellPath = /bin/sh;
264
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native-macos/scripts/react-native-xcode.sh\n";
265
+ };
266
+ 6E008F5656E8D01CF1438409 /* [CP] Copy Pods Resources */ = {
267
+ isa = PBXShellScriptBuildPhase;
268
+ buildActionMask = 2147483647;
269
+ files = (
270
+ );
271
+ inputPaths = (
272
+ "${PODS_ROOT}/Target Support Files/Pods-Example-macOS/Pods-Example-macOS-resources.sh",
273
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
274
+ );
275
+ name = "[CP] Copy Pods Resources";
276
+ outputPaths = (
277
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
278
+ );
279
+ runOnlyForDeploymentPostprocessing = 0;
280
+ shellPath = /bin/sh;
281
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-macOS/Pods-Example-macOS-resources.sh\"\n";
282
+ showEnvVarsInLog = 0;
283
+ };
284
+ /* End PBXShellScriptBuildPhase section */
285
+
286
+ /* Begin PBXSourcesBuildPhase section */
287
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
288
+ isa = PBXSourcesBuildPhase;
289
+ buildActionMask = 2147483647;
290
+ files = (
291
+ );
292
+ runOnlyForDeploymentPostprocessing = 0;
293
+ };
294
+ 514201452437B4B30078DB4F /* Sources */ = {
295
+ isa = PBXSourcesBuildPhase;
296
+ buildActionMask = 2147483647;
297
+ files = (
298
+ 514201582437B4B40078DB4F /* main.m in Sources */,
299
+ 5142014D2437B4B30078DB4F /* AppDelegate.mm in Sources */,
300
+ );
301
+ runOnlyForDeploymentPostprocessing = 0;
302
+ };
303
+ /* End PBXSourcesBuildPhase section */
304
+
305
+ /* Begin PBXVariantGroup section */
306
+ 514201532437B4B40078DB4F /* Main.storyboard */ = {
307
+ isa = PBXVariantGroup;
308
+ children = (
309
+ 514201542437B4B40078DB4F /* Base */,
310
+ );
311
+ name = Main.storyboard;
312
+ sourceTree = "<group>";
313
+ };
314
+ /* End PBXVariantGroup section */
315
+
316
+ /* Begin XCBuildConfiguration section */
317
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
318
+ isa = XCBuildConfiguration;
319
+ buildSettings = {
320
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
321
+ CLANG_ENABLE_MODULES = YES;
322
+ CURRENT_PROJECT_VERSION = 1;
323
+ ENABLE_BITCODE = NO;
324
+ INFOPLIST_FILE = "Example-iOS/Info.plist";
325
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
326
+ OTHER_LDFLAGS = (
327
+ "$(inherited)",
328
+ "-ObjC",
329
+ "-lc++",
330
+ );
331
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
332
+ PRODUCT_NAME = Example;
333
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
334
+ SWIFT_VERSION = 5.0;
335
+ VERSIONING_SYSTEM = "apple-generic";
336
+ };
337
+ name = Debug;
338
+ };
339
+ 13B07F951A680F5B00A75B9A /* Release */ = {
340
+ isa = XCBuildConfiguration;
341
+ buildSettings = {
342
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
343
+ CLANG_ENABLE_MODULES = YES;
344
+ CURRENT_PROJECT_VERSION = 1;
345
+ INFOPLIST_FILE = "Example-iOS/Info.plist";
346
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
347
+ OTHER_LDFLAGS = (
348
+ "$(inherited)",
349
+ "-ObjC",
350
+ "-lc++",
351
+ );
352
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
353
+ PRODUCT_NAME = Example;
354
+ SWIFT_VERSION = 5.0;
355
+ VERSIONING_SYSTEM = "apple-generic";
356
+ };
357
+ name = Release;
358
+ };
359
+ 5142015B2437B4B40078DB4F /* Debug */ = {
360
+ isa = XCBuildConfiguration;
361
+ baseConfigurationReference = D2D1F27C29F636B48388D2C0 /* Pods-Example-macOS.debug.xcconfig */;
362
+ buildSettings = {
363
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
364
+ CLANG_ENABLE_MODULES = YES;
365
+ CURRENT_PROJECT_VERSION = 1;
366
+ DEAD_CODE_STRIPPING = NO;
367
+ INFOPLIST_FILE = "Example-macos/Info.plist";
368
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
369
+ MACOSX_DEPLOYMENT_TARGET = 10.15;
370
+ OTHER_LDFLAGS = (
371
+ "$(inherited)",
372
+ "-ObjC",
373
+ "-lc++",
374
+ );
375
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
376
+ PRODUCT_NAME = Example;
377
+ SDKROOT = macosx;
378
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
379
+ SWIFT_VERSION = 5.0;
380
+ };
381
+ name = Debug;
382
+ };
383
+ 5142015C2437B4B40078DB4F /* Release */ = {
384
+ isa = XCBuildConfiguration;
385
+ baseConfigurationReference = FBF8E9927EBDB8FF1C20F646 /* Pods-Example-macOS.release.xcconfig */;
386
+ buildSettings = {
387
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
388
+ CLANG_ENABLE_MODULES = YES;
389
+ CURRENT_PROJECT_VERSION = 1;
390
+ INFOPLIST_FILE = "Example-macos/Info.plist";
391
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
392
+ MACOSX_DEPLOYMENT_TARGET = 10.15;
393
+ OTHER_LDFLAGS = (
394
+ "$(inherited)",
395
+ "-ObjC",
396
+ "-lc++",
397
+ );
398
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.$(PRODUCT_NAME:rfc1034identifier)";
399
+ PRODUCT_NAME = Example;
400
+ SDKROOT = macosx;
401
+ SWIFT_VERSION = 5.0;
402
+ };
403
+ name = Release;
404
+ };
405
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
406
+ isa = XCBuildConfiguration;
407
+ buildSettings = {
408
+ ALWAYS_SEARCH_USER_PATHS = NO;
409
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
410
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
411
+ CLANG_CXX_LIBRARY = "libc++";
412
+ CLANG_ENABLE_MODULES = YES;
413
+ CLANG_ENABLE_OBJC_ARC = YES;
414
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
415
+ CLANG_WARN_BOOL_CONVERSION = YES;
416
+ CLANG_WARN_COMMA = YES;
417
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
418
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
419
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
420
+ CLANG_WARN_EMPTY_BODY = YES;
421
+ CLANG_WARN_ENUM_CONVERSION = YES;
422
+ CLANG_WARN_INFINITE_RECURSION = YES;
423
+ CLANG_WARN_INT_CONVERSION = YES;
424
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
425
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
426
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
427
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
428
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
429
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
430
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
431
+ CLANG_WARN_UNREACHABLE_CODE = YES;
432
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
433
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
434
+ COPY_PHASE_STRIP = NO;
435
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
436
+ ENABLE_TESTABILITY = YES;
437
+ GCC_C_LANGUAGE_STANDARD = gnu99;
438
+ GCC_DYNAMIC_NO_PIC = NO;
439
+ GCC_NO_COMMON_BLOCKS = YES;
440
+ GCC_OPTIMIZATION_LEVEL = 0;
441
+ GCC_PREPROCESSOR_DEFINITIONS = (
442
+ "DEBUG=1",
443
+ "$(inherited)",
444
+ );
445
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
446
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
447
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
448
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
449
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
450
+ GCC_WARN_UNUSED_FUNCTION = YES;
451
+ GCC_WARN_UNUSED_VARIABLE = YES;
452
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
453
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
454
+ LIBRARY_SEARCH_PATHS = (
455
+ "$(SDKROOT)/usr/lib/swift",
456
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
457
+ "\"$(inherited)\"",
458
+ );
459
+ MTL_ENABLE_DEBUG_INFO = YES;
460
+ ONLY_ACTIVE_ARCH = YES;
461
+ OTHER_CFLAGS = "$(inherited)";
462
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
463
+ OTHER_LDFLAGS = (
464
+ "$(inherited)",
465
+ " ",
466
+ );
467
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
468
+ SDKROOT = iphoneos;
469
+ USE_HERMES = false;
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 = 9.0;
514
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
515
+ LIBRARY_SEARCH_PATHS = (
516
+ "$(SDKROOT)/usr/lib/swift",
517
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
518
+ "\"$(inherited)\"",
519
+ );
520
+ MTL_ENABLE_DEBUG_INFO = NO;
521
+ OTHER_CFLAGS = "$(inherited)";
522
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
523
+ OTHER_LDFLAGS = (
524
+ "$(inherited)",
525
+ " ",
526
+ );
527
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
528
+ SDKROOT = iphoneos;
529
+ USE_HERMES = false;
530
+ VALIDATE_PRODUCT = YES;
531
+ };
532
+ name = Release;
533
+ };
534
+ /* End XCBuildConfiguration section */
535
+
536
+ /* Begin XCConfigurationList section */
537
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example-iOS" */ = {
538
+ isa = XCConfigurationList;
539
+ buildConfigurations = (
540
+ 13B07F941A680F5B00A75B9A /* Debug */,
541
+ 13B07F951A680F5B00A75B9A /* Release */,
542
+ );
543
+ defaultConfigurationIsVisible = 0;
544
+ defaultConfigurationName = Release;
545
+ };
546
+ 5142015A2437B4B40078DB4F /* Build configuration list for PBXNativeTarget "Example-macOS" */ = {
547
+ isa = XCConfigurationList;
548
+ buildConfigurations = (
549
+ 5142015B2437B4B40078DB4F /* Debug */,
550
+ 5142015C2437B4B40078DB4F /* Release */,
551
+ );
552
+ defaultConfigurationIsVisible = 0;
553
+ defaultConfigurationName = Release;
554
+ };
555
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = {
556
+ isa = XCConfigurationList;
557
+ buildConfigurations = (
558
+ 83CBBA201A601CBA00E9B192 /* Debug */,
559
+ 83CBBA211A601CBA00E9B192 /* Release */,
560
+ );
561
+ defaultConfigurationIsVisible = 0;
562
+ defaultConfigurationName = Release;
563
+ };
564
+ /* End XCConfigurationList section */
565
+ };
566
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
567
+ }