@wisdomgarden/capacitor-plugin-beacon 0.0.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 (84) hide show
  1. package/README.md +117 -0
  2. package/WisdomgardenCapacitorPluginBeacon.podspec +17 -0
  3. package/android/build.gradle +52 -0
  4. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  5. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  6. package/android/gradle.properties +24 -0
  7. package/android/gradlew +188 -0
  8. package/android/gradlew.bat +100 -0
  9. package/android/proguard-rules.pro +21 -0
  10. package/android/settings.gradle +2 -0
  11. package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +26 -0
  12. package/android/src/main/AndroidManifest.xml +20 -0
  13. package/android/src/main/java/com/wisdomgarden/mobile/beacon/Beacon.java +294 -0
  14. package/android/src/main/java/com/wisdomgarden/mobile/beacon/BeaconUtils.java +118 -0
  15. package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
  16. package/android/src/main/res/values/colors.xml +3 -0
  17. package/android/src/main/res/values/strings.xml +3 -0
  18. package/android/src/main/res/values/styles.xml +3 -0
  19. package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
  20. package/dist/esm/definitions.d.ts +49 -0
  21. package/dist/esm/definitions.js +2 -0
  22. package/dist/esm/definitions.js.map +1 -0
  23. package/dist/esm/index.d.ts +2 -0
  24. package/dist/esm/index.js +3 -0
  25. package/dist/esm/index.js.map +1 -0
  26. package/dist/esm/web.d.ts +25 -0
  27. package/dist/esm/web.js +61 -0
  28. package/dist/esm/web.js.map +1 -0
  29. package/dist/plugin.js +70 -0
  30. package/dist/plugin.js.map +1 -0
  31. package/ios/Plugin/BeaconUtils.swift +103 -0
  32. package/ios/Plugin/Info.plist +30 -0
  33. package/ios/Plugin/Plugin.h +10 -0
  34. package/ios/Plugin/Plugin.m +14 -0
  35. package/ios/Plugin/Plugin.swift +342 -0
  36. package/ios/Plugin.xcodeproj/project.pbxproj +556 -0
  37. package/ios/Plugin.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  38. package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
  39. package/ios/Plugin.xcworkspace/xcuserdata/peixinliu.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  40. package/ios/PluginTests/Info.plist +22 -0
  41. package/ios/PluginTests/PluginTests.swift +35 -0
  42. package/ios/Podfile +16 -0
  43. package/ios/Podfile.lock +22 -0
  44. package/ios/Pods/Local Podspecs/Capacitor.podspec.json +30 -0
  45. package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +22 -0
  46. package/ios/Pods/Manifest.lock +22 -0
  47. package/ios/Pods/Pods.xcodeproj/project.pbxproj +1381 -0
  48. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
  49. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  50. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  51. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  52. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
  53. package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
  54. package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
  55. package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
  56. package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
  57. package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
  58. package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +6 -0
  59. package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
  60. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
  61. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
  62. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
  63. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +33 -0
  64. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
  65. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
  66. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
  67. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
  68. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +3 -0
  69. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +29 -0
  70. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
  71. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
  72. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
  73. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
  74. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
  75. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
  76. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +3 -0
  77. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +29 -0
  78. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
  79. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
  80. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
  81. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
  82. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
  83. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
  84. package/package.json +64 -0
@@ -0,0 +1,556 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 48;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 03FC29A292ACC40490383A1F /* Pods_Plugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B2A61DA5A1F2DD4F959604D /* Pods_Plugin.framework */; };
11
+ 20C0B05DCFC8E3958A738AF2 /* Pods_PluginTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6753A823D3815DB436415E3 /* Pods_PluginTests.framework */; };
12
+ 50ADFF92201F53D600D50D53 /* Plugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50ADFF88201F53D600D50D53 /* Plugin.framework */; };
13
+ 50ADFF97201F53D600D50D53 /* PluginTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50ADFF96201F53D600D50D53 /* PluginTests.swift */; };
14
+ 50ADFF99201F53D600D50D53 /* Plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 50ADFF8B201F53D600D50D53 /* Plugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
15
+ 50ADFFA42020D75100D50D53 /* Capacitor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50ADFFA52020D75100D50D53 /* Capacitor.framework */; };
16
+ 50ADFFA82020EE4F00D50D53 /* Plugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 50ADFFA72020EE4F00D50D53 /* Plugin.m */; };
17
+ 50E1A94820377CB70090CE1A /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50E1A94720377CB70090CE1A /* Plugin.swift */; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXContainerItemProxy section */
21
+ 50ADFF93201F53D600D50D53 /* PBXContainerItemProxy */ = {
22
+ isa = PBXContainerItemProxy;
23
+ containerPortal = 50ADFF7F201F53D600D50D53 /* Project object */;
24
+ proxyType = 1;
25
+ remoteGlobalIDString = 50ADFF87201F53D600D50D53;
26
+ remoteInfo = Plugin;
27
+ };
28
+ /* End PBXContainerItemProxy section */
29
+
30
+ /* Begin PBXFileReference section */
31
+ 3B2A61DA5A1F2DD4F959604D /* Pods_Plugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
32
+ 50ADFF88201F53D600D50D53 /* Plugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33
+ 50ADFF8B201F53D600D50D53 /* Plugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Plugin.h; sourceTree = "<group>"; };
34
+ 50ADFF8C201F53D600D50D53 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
35
+ 50ADFF91201F53D600D50D53 /* PluginTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PluginTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
36
+ 50ADFF96201F53D600D50D53 /* PluginTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PluginTests.swift; sourceTree = "<group>"; };
37
+ 50ADFF98201F53D600D50D53 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
38
+ 50ADFFA52020D75100D50D53 /* Capacitor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ 50ADFFA72020EE4F00D50D53 /* Plugin.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Plugin.m; sourceTree = "<group>"; };
40
+ 50E1A94720377CB70090CE1A /* Plugin.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Plugin.swift; sourceTree = "<group>"; };
41
+ 5E23F77F099397094342571A /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Plugin.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
42
+ 91781294A431A2A7CC6EB714 /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Plugin.release.xcconfig"; path = "Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig"; sourceTree = "<group>"; };
43
+ 96ED1B6440D6672E406C8D19 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PluginTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig"; sourceTree = "<group>"; };
44
+ F65BB2953ECE002E1EF3E424 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PluginTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig"; sourceTree = "<group>"; };
45
+ F6753A823D3815DB436415E3 /* Pods_PluginTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
46
+ /* End PBXFileReference section */
47
+
48
+ /* Begin PBXFrameworksBuildPhase section */
49
+ 50ADFF84201F53D600D50D53 /* Frameworks */ = {
50
+ isa = PBXFrameworksBuildPhase;
51
+ buildActionMask = 2147483647;
52
+ files = (
53
+ 50ADFFA42020D75100D50D53 /* Capacitor.framework in Frameworks */,
54
+ 03FC29A292ACC40490383A1F /* Pods_Plugin.framework in Frameworks */,
55
+ );
56
+ runOnlyForDeploymentPostprocessing = 0;
57
+ };
58
+ 50ADFF8E201F53D600D50D53 /* Frameworks */ = {
59
+ isa = PBXFrameworksBuildPhase;
60
+ buildActionMask = 2147483647;
61
+ files = (
62
+ 50ADFF92201F53D600D50D53 /* Plugin.framework in Frameworks */,
63
+ 20C0B05DCFC8E3958A738AF2 /* Pods_PluginTests.framework in Frameworks */,
64
+ );
65
+ runOnlyForDeploymentPostprocessing = 0;
66
+ };
67
+ /* End PBXFrameworksBuildPhase section */
68
+
69
+ /* Begin PBXGroup section */
70
+ 50ADFF7E201F53D600D50D53 = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 50ADFF8A201F53D600D50D53 /* Plugin */,
74
+ 50ADFF95201F53D600D50D53 /* PluginTests */,
75
+ 50ADFF89201F53D600D50D53 /* Products */,
76
+ 8C8E7744173064A9F6D438E3 /* Pods */,
77
+ A797B9EFA3DCEFEA1FBB66A9 /* Frameworks */,
78
+ );
79
+ sourceTree = "<group>";
80
+ };
81
+ 50ADFF89201F53D600D50D53 /* Products */ = {
82
+ isa = PBXGroup;
83
+ children = (
84
+ 50ADFF88201F53D600D50D53 /* Plugin.framework */,
85
+ 50ADFF91201F53D600D50D53 /* PluginTests.xctest */,
86
+ );
87
+ name = Products;
88
+ sourceTree = "<group>";
89
+ };
90
+ 50ADFF8A201F53D600D50D53 /* Plugin */ = {
91
+ isa = PBXGroup;
92
+ children = (
93
+ 50E1A94720377CB70090CE1A /* Plugin.swift */,
94
+ 50ADFF8B201F53D600D50D53 /* Plugin.h */,
95
+ 50ADFFA72020EE4F00D50D53 /* Plugin.m */,
96
+ 50ADFF8C201F53D600D50D53 /* Info.plist */,
97
+ );
98
+ path = Plugin;
99
+ sourceTree = "<group>";
100
+ };
101
+ 50ADFF95201F53D600D50D53 /* PluginTests */ = {
102
+ isa = PBXGroup;
103
+ children = (
104
+ 50ADFF96201F53D600D50D53 /* PluginTests.swift */,
105
+ 50ADFF98201F53D600D50D53 /* Info.plist */,
106
+ );
107
+ path = PluginTests;
108
+ sourceTree = "<group>";
109
+ };
110
+ 8C8E7744173064A9F6D438E3 /* Pods */ = {
111
+ isa = PBXGroup;
112
+ children = (
113
+ 5E23F77F099397094342571A /* Pods-Plugin.debug.xcconfig */,
114
+ 91781294A431A2A7CC6EB714 /* Pods-Plugin.release.xcconfig */,
115
+ 96ED1B6440D6672E406C8D19 /* Pods-PluginTests.debug.xcconfig */,
116
+ F65BB2953ECE002E1EF3E424 /* Pods-PluginTests.release.xcconfig */,
117
+ );
118
+ name = Pods;
119
+ sourceTree = "<group>";
120
+ };
121
+ A797B9EFA3DCEFEA1FBB66A9 /* Frameworks */ = {
122
+ isa = PBXGroup;
123
+ children = (
124
+ 50ADFFA52020D75100D50D53 /* Capacitor.framework */,
125
+ 3B2A61DA5A1F2DD4F959604D /* Pods_Plugin.framework */,
126
+ F6753A823D3815DB436415E3 /* Pods_PluginTests.framework */,
127
+ );
128
+ name = Frameworks;
129
+ sourceTree = "<group>";
130
+ };
131
+ /* End PBXGroup section */
132
+
133
+ /* Begin PBXHeadersBuildPhase section */
134
+ 50ADFF85201F53D600D50D53 /* Headers */ = {
135
+ isa = PBXHeadersBuildPhase;
136
+ buildActionMask = 2147483647;
137
+ files = (
138
+ 50ADFF99201F53D600D50D53 /* Plugin.h in Headers */,
139
+ );
140
+ runOnlyForDeploymentPostprocessing = 0;
141
+ };
142
+ /* End PBXHeadersBuildPhase section */
143
+
144
+ /* Begin PBXNativeTarget section */
145
+ 50ADFF87201F53D600D50D53 /* Plugin */ = {
146
+ isa = PBXNativeTarget;
147
+ buildConfigurationList = 50ADFF9C201F53D600D50D53 /* Build configuration list for PBXNativeTarget "Plugin" */;
148
+ buildPhases = (
149
+ AB5B3E54B4E897F32C2279DA /* [CP] Check Pods Manifest.lock */,
150
+ 50ADFF83201F53D600D50D53 /* Sources */,
151
+ 50ADFF84201F53D600D50D53 /* Frameworks */,
152
+ 50ADFF85201F53D600D50D53 /* Headers */,
153
+ 50ADFF86201F53D600D50D53 /* Resources */,
154
+ );
155
+ buildRules = (
156
+ );
157
+ dependencies = (
158
+ );
159
+ name = Plugin;
160
+ productName = Plugin;
161
+ productReference = 50ADFF88201F53D600D50D53 /* Plugin.framework */;
162
+ productType = "com.apple.product-type.framework";
163
+ };
164
+ 50ADFF90201F53D600D50D53 /* PluginTests */ = {
165
+ isa = PBXNativeTarget;
166
+ buildConfigurationList = 50ADFF9F201F53D600D50D53 /* Build configuration list for PBXNativeTarget "PluginTests" */;
167
+ buildPhases = (
168
+ 0596884F929ED6F1DE134961 /* [CP] Check Pods Manifest.lock */,
169
+ 50ADFF8D201F53D600D50D53 /* Sources */,
170
+ 50ADFF8E201F53D600D50D53 /* Frameworks */,
171
+ 50ADFF8F201F53D600D50D53 /* Resources */,
172
+ CCA81D3B7E26D0D727D24C84 /* [CP] Embed Pods Frameworks */,
173
+ );
174
+ buildRules = (
175
+ );
176
+ dependencies = (
177
+ 50ADFF94201F53D600D50D53 /* PBXTargetDependency */,
178
+ );
179
+ name = PluginTests;
180
+ productName = PluginTests;
181
+ productReference = 50ADFF91201F53D600D50D53 /* PluginTests.xctest */;
182
+ productType = "com.apple.product-type.bundle.unit-test";
183
+ };
184
+ /* End PBXNativeTarget section */
185
+
186
+ /* Begin PBXProject section */
187
+ 50ADFF7F201F53D600D50D53 /* Project object */ = {
188
+ isa = PBXProject;
189
+ attributes = {
190
+ LastSwiftUpdateCheck = 0920;
191
+ LastUpgradeCheck = 0920;
192
+ ORGANIZATIONNAME = "Max Lynch";
193
+ TargetAttributes = {
194
+ 50ADFF87201F53D600D50D53 = {
195
+ CreatedOnToolsVersion = 9.2;
196
+ LastSwiftMigration = 1100;
197
+ ProvisioningStyle = Automatic;
198
+ };
199
+ 50ADFF90201F53D600D50D53 = {
200
+ CreatedOnToolsVersion = 9.2;
201
+ LastSwiftMigration = 1100;
202
+ ProvisioningStyle = Automatic;
203
+ };
204
+ };
205
+ };
206
+ buildConfigurationList = 50ADFF82201F53D600D50D53 /* Build configuration list for PBXProject "Plugin" */;
207
+ compatibilityVersion = "Xcode 8.0";
208
+ developmentRegion = en;
209
+ hasScannedForEncodings = 0;
210
+ knownRegions = (
211
+ en,
212
+ );
213
+ mainGroup = 50ADFF7E201F53D600D50D53;
214
+ productRefGroup = 50ADFF89201F53D600D50D53 /* Products */;
215
+ projectDirPath = "";
216
+ projectRoot = "";
217
+ targets = (
218
+ 50ADFF87201F53D600D50D53 /* Plugin */,
219
+ 50ADFF90201F53D600D50D53 /* PluginTests */,
220
+ );
221
+ };
222
+ /* End PBXProject section */
223
+
224
+ /* Begin PBXResourcesBuildPhase section */
225
+ 50ADFF86201F53D600D50D53 /* Resources */ = {
226
+ isa = PBXResourcesBuildPhase;
227
+ buildActionMask = 2147483647;
228
+ files = (
229
+ );
230
+ runOnlyForDeploymentPostprocessing = 0;
231
+ };
232
+ 50ADFF8F201F53D600D50D53 /* Resources */ = {
233
+ isa = PBXResourcesBuildPhase;
234
+ buildActionMask = 2147483647;
235
+ files = (
236
+ );
237
+ runOnlyForDeploymentPostprocessing = 0;
238
+ };
239
+ /* End PBXResourcesBuildPhase section */
240
+
241
+ /* Begin PBXShellScriptBuildPhase section */
242
+ 0596884F929ED6F1DE134961 /* [CP] Check Pods Manifest.lock */ = {
243
+ isa = PBXShellScriptBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ );
247
+ inputPaths = (
248
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
249
+ "${PODS_ROOT}/Manifest.lock",
250
+ );
251
+ name = "[CP] Check Pods Manifest.lock";
252
+ outputPaths = (
253
+ "$(DERIVED_FILE_DIR)/Pods-PluginTests-checkManifestLockResult.txt",
254
+ );
255
+ runOnlyForDeploymentPostprocessing = 0;
256
+ shellPath = /bin/sh;
257
+ 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";
258
+ showEnvVarsInLog = 0;
259
+ };
260
+ AB5B3E54B4E897F32C2279DA /* [CP] Check Pods Manifest.lock */ = {
261
+ isa = PBXShellScriptBuildPhase;
262
+ buildActionMask = 2147483647;
263
+ files = (
264
+ );
265
+ inputPaths = (
266
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
267
+ "${PODS_ROOT}/Manifest.lock",
268
+ );
269
+ name = "[CP] Check Pods Manifest.lock";
270
+ outputPaths = (
271
+ "$(DERIVED_FILE_DIR)/Pods-Plugin-checkManifestLockResult.txt",
272
+ );
273
+ runOnlyForDeploymentPostprocessing = 0;
274
+ shellPath = /bin/sh;
275
+ 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";
276
+ showEnvVarsInLog = 0;
277
+ };
278
+ CCA81D3B7E26D0D727D24C84 /* [CP] Embed Pods Frameworks */ = {
279
+ isa = PBXShellScriptBuildPhase;
280
+ buildActionMask = 2147483647;
281
+ files = (
282
+ );
283
+ inputPaths = (
284
+ "${PODS_ROOT}/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh",
285
+ "${BUILT_PRODUCTS_DIR}/Capacitor/Capacitor.framework",
286
+ "${BUILT_PRODUCTS_DIR}/CapacitorCordova/Cordova.framework",
287
+ );
288
+ name = "[CP] Embed Pods Frameworks";
289
+ outputPaths = (
290
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Capacitor.framework",
291
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Cordova.framework",
292
+ );
293
+ runOnlyForDeploymentPostprocessing = 0;
294
+ shellPath = /bin/sh;
295
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh\"\n";
296
+ showEnvVarsInLog = 0;
297
+ };
298
+ /* End PBXShellScriptBuildPhase section */
299
+
300
+ /* Begin PBXSourcesBuildPhase section */
301
+ 50ADFF83201F53D600D50D53 /* Sources */ = {
302
+ isa = PBXSourcesBuildPhase;
303
+ buildActionMask = 2147483647;
304
+ files = (
305
+ 50E1A94820377CB70090CE1A /* Plugin.swift in Sources */,
306
+ 50ADFFA82020EE4F00D50D53 /* Plugin.m in Sources */,
307
+ );
308
+ runOnlyForDeploymentPostprocessing = 0;
309
+ };
310
+ 50ADFF8D201F53D600D50D53 /* Sources */ = {
311
+ isa = PBXSourcesBuildPhase;
312
+ buildActionMask = 2147483647;
313
+ files = (
314
+ 50ADFF97201F53D600D50D53 /* PluginTests.swift in Sources */,
315
+ );
316
+ runOnlyForDeploymentPostprocessing = 0;
317
+ };
318
+ /* End PBXSourcesBuildPhase section */
319
+
320
+ /* Begin PBXTargetDependency section */
321
+ 50ADFF94201F53D600D50D53 /* PBXTargetDependency */ = {
322
+ isa = PBXTargetDependency;
323
+ target = 50ADFF87201F53D600D50D53 /* Plugin */;
324
+ targetProxy = 50ADFF93201F53D600D50D53 /* PBXContainerItemProxy */;
325
+ };
326
+ /* End PBXTargetDependency section */
327
+
328
+ /* Begin XCBuildConfiguration section */
329
+ 50ADFF9A201F53D600D50D53 /* Debug */ = {
330
+ isa = XCBuildConfiguration;
331
+ buildSettings = {
332
+ ALWAYS_SEARCH_USER_PATHS = NO;
333
+ CLANG_ANALYZER_NONNULL = YES;
334
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
335
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
336
+ CLANG_CXX_LIBRARY = "libc++";
337
+ CLANG_ENABLE_MODULES = YES;
338
+ CLANG_ENABLE_OBJC_ARC = YES;
339
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
340
+ CLANG_WARN_BOOL_CONVERSION = YES;
341
+ CLANG_WARN_COMMA = YES;
342
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
343
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
344
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
345
+ CLANG_WARN_EMPTY_BODY = YES;
346
+ CLANG_WARN_ENUM_CONVERSION = YES;
347
+ CLANG_WARN_INFINITE_RECURSION = YES;
348
+ CLANG_WARN_INT_CONVERSION = YES;
349
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
350
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
351
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
352
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
353
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
354
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
355
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
356
+ CLANG_WARN_UNREACHABLE_CODE = YES;
357
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
358
+ CODE_SIGN_IDENTITY = "iPhone Developer";
359
+ COPY_PHASE_STRIP = NO;
360
+ CURRENT_PROJECT_VERSION = 1;
361
+ DEBUG_INFORMATION_FORMAT = dwarf;
362
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
363
+ ENABLE_TESTABILITY = YES;
364
+ GCC_C_LANGUAGE_STANDARD = gnu11;
365
+ GCC_DYNAMIC_NO_PIC = NO;
366
+ GCC_NO_COMMON_BLOCKS = YES;
367
+ GCC_OPTIMIZATION_LEVEL = 0;
368
+ GCC_PREPROCESSOR_DEFINITIONS = (
369
+ "DEBUG=1",
370
+ "$(inherited)",
371
+ );
372
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
373
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
374
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
375
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
376
+ GCC_WARN_UNUSED_FUNCTION = YES;
377
+ GCC_WARN_UNUSED_VARIABLE = YES;
378
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
379
+ MTL_ENABLE_DEBUG_INFO = YES;
380
+ ONLY_ACTIVE_ARCH = YES;
381
+ SDKROOT = iphoneos;
382
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
383
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
384
+ VERSIONING_SYSTEM = "apple-generic";
385
+ VERSION_INFO_PREFIX = "";
386
+ };
387
+ name = Debug;
388
+ };
389
+ 50ADFF9B201F53D600D50D53 /* Release */ = {
390
+ isa = XCBuildConfiguration;
391
+ buildSettings = {
392
+ ALWAYS_SEARCH_USER_PATHS = NO;
393
+ CLANG_ANALYZER_NONNULL = YES;
394
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
395
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
396
+ CLANG_CXX_LIBRARY = "libc++";
397
+ CLANG_ENABLE_MODULES = YES;
398
+ CLANG_ENABLE_OBJC_ARC = YES;
399
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
400
+ CLANG_WARN_BOOL_CONVERSION = YES;
401
+ CLANG_WARN_COMMA = YES;
402
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
403
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
404
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
405
+ CLANG_WARN_EMPTY_BODY = YES;
406
+ CLANG_WARN_ENUM_CONVERSION = YES;
407
+ CLANG_WARN_INFINITE_RECURSION = YES;
408
+ CLANG_WARN_INT_CONVERSION = YES;
409
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
410
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
411
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
412
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
413
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
414
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
415
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
416
+ CLANG_WARN_UNREACHABLE_CODE = YES;
417
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
418
+ CODE_SIGN_IDENTITY = "iPhone Developer";
419
+ COPY_PHASE_STRIP = NO;
420
+ CURRENT_PROJECT_VERSION = 1;
421
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
422
+ ENABLE_NS_ASSERTIONS = NO;
423
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
424
+ GCC_C_LANGUAGE_STANDARD = gnu11;
425
+ GCC_NO_COMMON_BLOCKS = YES;
426
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
427
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
428
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
429
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430
+ GCC_WARN_UNUSED_FUNCTION = YES;
431
+ GCC_WARN_UNUSED_VARIABLE = YES;
432
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
433
+ MTL_ENABLE_DEBUG_INFO = NO;
434
+ SDKROOT = iphoneos;
435
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
436
+ VALIDATE_PRODUCT = YES;
437
+ VERSIONING_SYSTEM = "apple-generic";
438
+ VERSION_INFO_PREFIX = "";
439
+ };
440
+ name = Release;
441
+ };
442
+ 50ADFF9D201F53D600D50D53 /* Debug */ = {
443
+ isa = XCBuildConfiguration;
444
+ baseConfigurationReference = 5E23F77F099397094342571A /* Pods-Plugin.debug.xcconfig */;
445
+ buildSettings = {
446
+ CLANG_ENABLE_MODULES = YES;
447
+ CODE_SIGN_IDENTITY = "Apple Development";
448
+ CODE_SIGN_STYLE = Automatic;
449
+ DEFINES_MODULE = YES;
450
+ DEVELOPMENT_TEAM = "";
451
+ DYLIB_COMPATIBILITY_VERSION = 1;
452
+ DYLIB_CURRENT_VERSION = 1;
453
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
454
+ INFOPLIST_FILE = Plugin/Info.plist;
455
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
456
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
457
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(FRAMEWORK_SEARCH_PATHS)\n$(FRAMEWORK_SEARCH_PATHS)\n$(FRAMEWORK_SEARCH_PATHS)";
458
+ ONLY_ACTIVE_ARCH = YES;
459
+ PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.Plugin;
460
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
461
+ SKIP_INSTALL = YES;
462
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
463
+ SWIFT_VERSION = 5.0;
464
+ TARGETED_DEVICE_FAMILY = "1,2";
465
+ };
466
+ name = Debug;
467
+ };
468
+ 50ADFF9E201F53D600D50D53 /* Release */ = {
469
+ isa = XCBuildConfiguration;
470
+ baseConfigurationReference = 91781294A431A2A7CC6EB714 /* Pods-Plugin.release.xcconfig */;
471
+ buildSettings = {
472
+ CLANG_ENABLE_MODULES = YES;
473
+ CODE_SIGN_IDENTITY = "Apple Development";
474
+ CODE_SIGN_STYLE = Automatic;
475
+ DEFINES_MODULE = YES;
476
+ DEVELOPMENT_TEAM = "";
477
+ DYLIB_COMPATIBILITY_VERSION = 1;
478
+ DYLIB_CURRENT_VERSION = 1;
479
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
480
+ INFOPLIST_FILE = Plugin/Info.plist;
481
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
482
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
483
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(FRAMEWORK_SEARCH_PATHS)";
484
+ ONLY_ACTIVE_ARCH = NO;
485
+ PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.Plugin;
486
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
487
+ SKIP_INSTALL = YES;
488
+ SWIFT_VERSION = 5.0;
489
+ TARGETED_DEVICE_FAMILY = "1,2";
490
+ };
491
+ name = Release;
492
+ };
493
+ 50ADFFA0201F53D600D50D53 /* Debug */ = {
494
+ isa = XCBuildConfiguration;
495
+ baseConfigurationReference = 96ED1B6440D6672E406C8D19 /* Pods-PluginTests.debug.xcconfig */;
496
+ buildSettings = {
497
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
498
+ CODE_SIGN_STYLE = Automatic;
499
+ INFOPLIST_FILE = PluginTests/Info.plist;
500
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
501
+ PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.PluginTests;
502
+ PRODUCT_NAME = "$(TARGET_NAME)";
503
+ SWIFT_VERSION = 5.0;
504
+ TARGETED_DEVICE_FAMILY = "1,2";
505
+ };
506
+ name = Debug;
507
+ };
508
+ 50ADFFA1201F53D600D50D53 /* Release */ = {
509
+ isa = XCBuildConfiguration;
510
+ baseConfigurationReference = F65BB2953ECE002E1EF3E424 /* Pods-PluginTests.release.xcconfig */;
511
+ buildSettings = {
512
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
513
+ CODE_SIGN_STYLE = Automatic;
514
+ INFOPLIST_FILE = PluginTests/Info.plist;
515
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
516
+ PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.PluginTests;
517
+ PRODUCT_NAME = "$(TARGET_NAME)";
518
+ SWIFT_VERSION = 5.0;
519
+ TARGETED_DEVICE_FAMILY = "1,2";
520
+ };
521
+ name = Release;
522
+ };
523
+ /* End XCBuildConfiguration section */
524
+
525
+ /* Begin XCConfigurationList section */
526
+ 50ADFF82201F53D600D50D53 /* Build configuration list for PBXProject "Plugin" */ = {
527
+ isa = XCConfigurationList;
528
+ buildConfigurations = (
529
+ 50ADFF9A201F53D600D50D53 /* Debug */,
530
+ 50ADFF9B201F53D600D50D53 /* Release */,
531
+ );
532
+ defaultConfigurationIsVisible = 0;
533
+ defaultConfigurationName = Release;
534
+ };
535
+ 50ADFF9C201F53D600D50D53 /* Build configuration list for PBXNativeTarget "Plugin" */ = {
536
+ isa = XCConfigurationList;
537
+ buildConfigurations = (
538
+ 50ADFF9D201F53D600D50D53 /* Debug */,
539
+ 50ADFF9E201F53D600D50D53 /* Release */,
540
+ );
541
+ defaultConfigurationIsVisible = 0;
542
+ defaultConfigurationName = Release;
543
+ };
544
+ 50ADFF9F201F53D600D50D53 /* Build configuration list for PBXNativeTarget "PluginTests" */ = {
545
+ isa = XCConfigurationList;
546
+ buildConfigurations = (
547
+ 50ADFFA0201F53D600D50D53 /* Debug */,
548
+ 50ADFFA1201F53D600D50D53 /* Release */,
549
+ );
550
+ defaultConfigurationIsVisible = 0;
551
+ defaultConfigurationName = Release;
552
+ };
553
+ /* End XCConfigurationList section */
554
+ };
555
+ rootObject = 50ADFF7F201F53D600D50D53 /* Project object */;
556
+ }
@@ -0,0 +1,14 @@
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>SchemeUserState</key>
6
+ <dict>
7
+ <key>Plugin.xcscheme_^#shared#^_</key>
8
+ <dict>
9
+ <key>orderHint</key>
10
+ <integer>4</integer>
11
+ </dict>
12
+ </dict>
13
+ </dict>
14
+ </plist>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:Plugin.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,22 @@
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>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>BNDL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleVersion</key>
20
+ <string>1</string>
21
+ </dict>
22
+ </plist>
@@ -0,0 +1,35 @@
1
+ import XCTest
2
+ import Capacitor
3
+ @testable import Plugin
4
+
5
+ class PluginTests: XCTestCase {
6
+
7
+ override func setUp() {
8
+ super.setUp()
9
+ // Put setup code here. This method is called before the invocation of each test method in the class.
10
+ }
11
+
12
+ override func tearDown() {
13
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
14
+ super.tearDown()
15
+ }
16
+
17
+ func testEcho() {
18
+ // This is an example of a functional test case for a plugin.
19
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
20
+
21
+ let value = "Hello, World!"
22
+ let plugin = MyPlugin()
23
+
24
+ let call = CAPPluginCall(callbackId: "test", options: [
25
+ "value": value
26
+ ], success: { (result, _) in
27
+ let resultValue = result!.data["value"] as? String
28
+ XCTAssertEqual(value, resultValue)
29
+ }, error: { (_) in
30
+ XCTFail("Error shouldn't have been called")
31
+ })
32
+
33
+ plugin.echo(call!)
34
+ }
35
+ }
package/ios/Podfile ADDED
@@ -0,0 +1,16 @@
1
+ platform :ios, '11.0'
2
+
3
+ def capacitor_pods
4
+ # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
5
+ use_frameworks!
6
+ pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
7
+ pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
8
+ end
9
+
10
+ target 'Plugin' do
11
+ capacitor_pods
12
+ end
13
+
14
+ target 'PluginTests' do
15
+ capacitor_pods
16
+ end
@@ -0,0 +1,22 @@
1
+ PODS:
2
+ - Capacitor (2.5.0):
3
+ - CapacitorCordova
4
+ - CapacitorCordova (2.5.0)
5
+
6
+ DEPENDENCIES:
7
+ - "Capacitor (from `../node_modules/@capacitor/ios`)"
8
+ - "CapacitorCordova (from `../node_modules/@capacitor/ios`)"
9
+
10
+ EXTERNAL SOURCES:
11
+ Capacitor:
12
+ :path: "../node_modules/@capacitor/ios"
13
+ CapacitorCordova:
14
+ :path: "../node_modules/@capacitor/ios"
15
+
16
+ SPEC CHECKSUMS:
17
+ Capacitor: cf2174bec9bfe65f1c956616ac1d94afcef7d24d
18
+ CapacitorCordova: 03d0a19b737e65c94825b20222c804d5467e1c5e
19
+
20
+ PODFILE CHECKSUM: e66d6fa04b0daaf06d8498d39637adf77139c716
21
+
22
+ COCOAPODS: 1.15.2