capacitor-plugin-vonage 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 (40) hide show
  1. package/CapacitorPluginVonage.podspec +20 -0
  2. package/README.md +126 -0
  3. package/android/build.gradle +76 -0
  4. package/android/src/main/AndroidManifest.xml +6 -0
  5. package/android/src/main/java/com/managemyhealth/plugin/vonage/VideoCallActivity.java +434 -0
  6. package/android/src/main/java/com/managemyhealth/plugin/vonage/vonage.java +11 -0
  7. package/android/src/main/java/com/managemyhealth/plugin/vonage/vonagePlugin.java +125 -0
  8. package/android/src/main/res/.gitkeep +0 -0
  9. package/android/src/main/res/drawable/callend.png +0 -0
  10. package/android/src/main/res/drawable/callstart.png +0 -0
  11. package/android/src/main/res/drawable/cameraoff.png +0 -0
  12. package/android/src/main/res/drawable/cameraonwhite.png +0 -0
  13. package/android/src/main/res/drawable/cameraswitch.png +0 -0
  14. package/android/src/main/res/drawable/ic_launcher_background.xml +170 -0
  15. package/android/src/main/res/drawable/microphoneoff.png +0 -0
  16. package/android/src/main/res/drawable/microphoneonwhite.png +0 -0
  17. package/android/src/main/res/layout/activity_main.xml +36 -0
  18. package/android/src/main/res/layout/video_call_layout.xml +282 -0
  19. package/android/src/main/res.zip +0 -0
  20. package/dist/docs.json +370 -0
  21. package/dist/esm/definitions.d.ts +12 -0
  22. package/dist/esm/definitions.js +2 -0
  23. package/dist/esm/definitions.js.map +1 -0
  24. package/dist/esm/index.d.ts +4 -0
  25. package/dist/esm/index.js +7 -0
  26. package/dist/esm/index.js.map +1 -0
  27. package/dist/esm/web.d.ts +12 -0
  28. package/dist/esm/web.js +13 -0
  29. package/dist/esm/web.js.map +1 -0
  30. package/dist/plugin.cjs.js +29 -0
  31. package/dist/plugin.cjs.js.map +1 -0
  32. package/dist/plugin.js +32 -0
  33. package/dist/plugin.js.map +1 -0
  34. package/ios/Plugin/Info.plist +24 -0
  35. package/ios/Plugin/VideoChatViewController.swift +387 -0
  36. package/ios/Plugin/vonage.swift +8 -0
  37. package/ios/Plugin/vonagePlugin.h +10 -0
  38. package/ios/Plugin/vonagePlugin.m +9 -0
  39. package/ios/Plugin/vonagePlugin.swift +80 -0
  40. package/package.json +78 -0
package/dist/docs.json ADDED
@@ -0,0 +1,370 @@
1
+ {
2
+ "api": {
3
+ "name": "vonagePlugin",
4
+ "slug": "vonageplugin",
5
+ "docs": "",
6
+ "tags": [],
7
+ "methods": [
8
+ {
9
+ "name": "echo",
10
+ "signature": "(options: { value: string; }) => Promise<{ value: string; }>",
11
+ "parameters": [
12
+ {
13
+ "name": "options",
14
+ "docs": "",
15
+ "type": "{ value: string; }"
16
+ }
17
+ ],
18
+ "returns": "Promise<{ value: string; }>",
19
+ "tags": [],
20
+ "docs": "",
21
+ "complexTypes": [],
22
+ "slug": "echo"
23
+ },
24
+ {
25
+ "name": "openVideoCallWindow",
26
+ "signature": "(options: Object) => Promise<{ value: any; }>",
27
+ "parameters": [
28
+ {
29
+ "name": "options",
30
+ "docs": "",
31
+ "type": "Object"
32
+ }
33
+ ],
34
+ "returns": "Promise<{ value: any; }>",
35
+ "tags": [],
36
+ "docs": "",
37
+ "complexTypes": [
38
+ "Object"
39
+ ],
40
+ "slug": "openvideocallwindow"
41
+ },
42
+ {
43
+ "name": "addListener",
44
+ "signature": "(...args: [eventName: \"VideoCallEnded\", listenerFunc: (info: any) => void] | [eventName: \"VideoCallStarted\", listenerFunc: (info: any) => void]) => Promise<PluginListenerHandle> & PluginListenerHandle",
45
+ "parameters": [
46
+ {
47
+ "name": "args",
48
+ "docs": "",
49
+ "type": "[eventName: 'VideoCallEnded', listenerFunc: (info: any) => void] | [eventName: 'VideoCallStarted', listenerFunc: (info: any) => void]"
50
+ }
51
+ ],
52
+ "returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
53
+ "tags": [],
54
+ "docs": "",
55
+ "complexTypes": [
56
+ "PluginListenerHandle"
57
+ ],
58
+ "slug": "addlistenereventname-videocallended-listenerfunc-info-any--void--eventname-videocallstarted-listenerfunc-info-any--void"
59
+ }
60
+ ],
61
+ "properties": []
62
+ },
63
+ "interfaces": [
64
+ {
65
+ "name": "Object",
66
+ "slug": "object",
67
+ "docs": "Provides functionality common to all JavaScript objects.",
68
+ "tags": [],
69
+ "methods": [
70
+ {
71
+ "name": "toString",
72
+ "signature": "() => string",
73
+ "parameters": [],
74
+ "returns": "string",
75
+ "tags": [],
76
+ "docs": "Returns a string representation of an object.",
77
+ "complexTypes": [],
78
+ "slug": "tostring"
79
+ },
80
+ {
81
+ "name": "toLocaleString",
82
+ "signature": "() => string",
83
+ "parameters": [],
84
+ "returns": "string",
85
+ "tags": [],
86
+ "docs": "Returns a date converted to a string using the current locale.",
87
+ "complexTypes": [],
88
+ "slug": "tolocalestring"
89
+ },
90
+ {
91
+ "name": "valueOf",
92
+ "signature": "() => Object",
93
+ "parameters": [],
94
+ "returns": "Object",
95
+ "tags": [],
96
+ "docs": "Returns the primitive value of the specified object.",
97
+ "complexTypes": [
98
+ "Object"
99
+ ],
100
+ "slug": "valueof"
101
+ },
102
+ {
103
+ "name": "hasOwnProperty",
104
+ "signature": "(v: PropertyKey) => boolean",
105
+ "parameters": [
106
+ {
107
+ "name": "v",
108
+ "docs": "A property name.",
109
+ "type": "PropertyKey"
110
+ }
111
+ ],
112
+ "returns": "boolean",
113
+ "tags": [
114
+ {
115
+ "name": "param",
116
+ "text": "v A property name."
117
+ }
118
+ ],
119
+ "docs": "Determines whether an object has a property with the specified name.",
120
+ "complexTypes": [
121
+ "PropertyKey"
122
+ ],
123
+ "slug": "hasownproperty"
124
+ },
125
+ {
126
+ "name": "isPrototypeOf",
127
+ "signature": "(v: Object) => boolean",
128
+ "parameters": [
129
+ {
130
+ "name": "v",
131
+ "docs": "Another object whose prototype chain is to be checked.",
132
+ "type": "Object"
133
+ }
134
+ ],
135
+ "returns": "boolean",
136
+ "tags": [
137
+ {
138
+ "name": "param",
139
+ "text": "v Another object whose prototype chain is to be checked."
140
+ }
141
+ ],
142
+ "docs": "Determines whether an object exists in another object's prototype chain.",
143
+ "complexTypes": [
144
+ "Object"
145
+ ],
146
+ "slug": "isprototypeof"
147
+ },
148
+ {
149
+ "name": "propertyIsEnumerable",
150
+ "signature": "(v: PropertyKey) => boolean",
151
+ "parameters": [
152
+ {
153
+ "name": "v",
154
+ "docs": "A property name.",
155
+ "type": "PropertyKey"
156
+ }
157
+ ],
158
+ "returns": "boolean",
159
+ "tags": [
160
+ {
161
+ "name": "param",
162
+ "text": "v A property name."
163
+ }
164
+ ],
165
+ "docs": "Determines whether a specified property is enumerable.",
166
+ "complexTypes": [
167
+ "PropertyKey"
168
+ ],
169
+ "slug": "propertyisenumerable"
170
+ }
171
+ ],
172
+ "properties": [
173
+ {
174
+ "name": "constructor",
175
+ "tags": [],
176
+ "docs": "The initial value of Object.prototype.constructor is the standard built-in Object constructor.",
177
+ "complexTypes": [
178
+ "Function"
179
+ ],
180
+ "type": "Function"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "name": "Function",
186
+ "slug": "function",
187
+ "docs": "Creates a new function.",
188
+ "tags": [],
189
+ "methods": [
190
+ {
191
+ "name": "apply",
192
+ "signature": "(this: Function, thisArg: any, argArray?: any) => any",
193
+ "parameters": [
194
+ {
195
+ "name": "thisArg",
196
+ "docs": "The object to be used as the this object.",
197
+ "type": "any"
198
+ },
199
+ {
200
+ "name": "argArray",
201
+ "docs": "A set of arguments to be passed to the function.",
202
+ "type": "any"
203
+ }
204
+ ],
205
+ "returns": "any",
206
+ "tags": [
207
+ {
208
+ "name": "param",
209
+ "text": "thisArg The object to be used as the this object."
210
+ },
211
+ {
212
+ "name": "param",
213
+ "text": "argArray A set of arguments to be passed to the function."
214
+ }
215
+ ],
216
+ "docs": "Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.",
217
+ "complexTypes": [
218
+ "Function"
219
+ ],
220
+ "slug": "apply"
221
+ },
222
+ {
223
+ "name": "call",
224
+ "signature": "(this: Function, thisArg: any, ...argArray: any[]) => any",
225
+ "parameters": [
226
+ {
227
+ "name": "thisArg",
228
+ "docs": "The object to be used as the current object.",
229
+ "type": "any"
230
+ },
231
+ {
232
+ "name": "argArray",
233
+ "docs": "A list of arguments to be passed to the method.",
234
+ "type": "any[]"
235
+ }
236
+ ],
237
+ "returns": "any",
238
+ "tags": [
239
+ {
240
+ "name": "param",
241
+ "text": "thisArg The object to be used as the current object."
242
+ },
243
+ {
244
+ "name": "param",
245
+ "text": "argArray A list of arguments to be passed to the method."
246
+ }
247
+ ],
248
+ "docs": "Calls a method of an object, substituting another object for the current object.",
249
+ "complexTypes": [
250
+ "Function"
251
+ ],
252
+ "slug": "call"
253
+ },
254
+ {
255
+ "name": "bind",
256
+ "signature": "(this: Function, thisArg: any, ...argArray: any[]) => any",
257
+ "parameters": [
258
+ {
259
+ "name": "thisArg",
260
+ "docs": "An object to which the this keyword can refer inside the new function.",
261
+ "type": "any"
262
+ },
263
+ {
264
+ "name": "argArray",
265
+ "docs": "A list of arguments to be passed to the new function.",
266
+ "type": "any[]"
267
+ }
268
+ ],
269
+ "returns": "any",
270
+ "tags": [
271
+ {
272
+ "name": "param",
273
+ "text": "thisArg An object to which the this keyword can refer inside the new function."
274
+ },
275
+ {
276
+ "name": "param",
277
+ "text": "argArray A list of arguments to be passed to the new function."
278
+ }
279
+ ],
280
+ "docs": "For a given function, creates a bound function that has the same body as the original function.\r\nThe this object of the bound function is associated with the specified object, and has the specified initial parameters.",
281
+ "complexTypes": [
282
+ "Function"
283
+ ],
284
+ "slug": "bind"
285
+ },
286
+ {
287
+ "name": "toString",
288
+ "signature": "() => string",
289
+ "parameters": [],
290
+ "returns": "string",
291
+ "tags": [],
292
+ "docs": "Returns a string representation of a function.",
293
+ "complexTypes": [],
294
+ "slug": "tostring"
295
+ }
296
+ ],
297
+ "properties": [
298
+ {
299
+ "name": "prototype",
300
+ "tags": [],
301
+ "docs": "",
302
+ "complexTypes": [],
303
+ "type": "any"
304
+ },
305
+ {
306
+ "name": "length",
307
+ "tags": [],
308
+ "docs": "",
309
+ "complexTypes": [],
310
+ "type": "number"
311
+ },
312
+ {
313
+ "name": "arguments",
314
+ "tags": [],
315
+ "docs": "",
316
+ "complexTypes": [],
317
+ "type": "any"
318
+ },
319
+ {
320
+ "name": "caller",
321
+ "tags": [],
322
+ "docs": "",
323
+ "complexTypes": [
324
+ "Function"
325
+ ],
326
+ "type": "Function"
327
+ }
328
+ ]
329
+ },
330
+ {
331
+ "name": "PluginListenerHandle",
332
+ "slug": "pluginlistenerhandle",
333
+ "docs": "",
334
+ "tags": [],
335
+ "methods": [],
336
+ "properties": [
337
+ {
338
+ "name": "remove",
339
+ "tags": [],
340
+ "docs": "",
341
+ "complexTypes": [],
342
+ "type": "() => Promise<void>"
343
+ }
344
+ ]
345
+ }
346
+ ],
347
+ "enums": [],
348
+ "typeAliases": [
349
+ {
350
+ "name": "PropertyKey",
351
+ "slug": "propertykey",
352
+ "docs": "",
353
+ "types": [
354
+ {
355
+ "text": "string",
356
+ "complexTypes": []
357
+ },
358
+ {
359
+ "text": "number",
360
+ "complexTypes": []
361
+ },
362
+ {
363
+ "text": "symbol",
364
+ "complexTypes": []
365
+ }
366
+ ]
367
+ }
368
+ ],
369
+ "pluginConfigs": []
370
+ }
@@ -0,0 +1,12 @@
1
+ import { PluginListenerHandle } from "@capacitor/core";
2
+ export interface vonagePlugin {
3
+ echo(options: {
4
+ value: string;
5
+ }): Promise<{
6
+ value: string;
7
+ }>;
8
+ openVideoCallWindow(options: Object): Promise<{
9
+ value: any;
10
+ }>;
11
+ addListener(...args: [eventName: 'VideoCallEnded', listenerFunc: (info: any) => void] | [eventName: 'VideoCallStarted', listenerFunc: (info: any) => void]): Promise<PluginListenerHandle> & PluginListenerHandle;
12
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=definitions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"definitions.js","sourceRoot":"","sources":["../../src/definitions.ts"],"names":[],"mappings":"","sourcesContent":["import { PluginListenerHandle } from \"@capacitor/core\";\n\nexport interface vonagePlugin {\n echo(options: { value: string }): Promise<{ value: string }>;\n openVideoCallWindow(options: Object): Promise<{ value: any }>;\n addListener(...args: [eventName: 'VideoCallEnded', listenerFunc: (info: any) => void] | [eventName: 'VideoCallStarted', listenerFunc: (info: any) => void]): Promise<PluginListenerHandle> & PluginListenerHandle;\n\n}\n"]}
@@ -0,0 +1,4 @@
1
+ import type { vonagePlugin } from './definitions';
2
+ declare const vonage: vonagePlugin;
3
+ export * from './definitions';
4
+ export { vonage };
@@ -0,0 +1,7 @@
1
+ import { registerPlugin } from '@capacitor/core';
2
+ const vonage = registerPlugin('vonage', {
3
+ web: () => import('./web').then(m => new m.vonageWeb()),
4
+ });
5
+ export * from './definitions';
6
+ export { vonage };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAIjD,MAAM,MAAM,GAAG,cAAc,CAAe,QAAQ,EAAE;IACpD,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;CACxD,CAAC,CAAC;AAEH,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,CAAC","sourcesContent":["import { registerPlugin } from '@capacitor/core';\n\nimport type { vonagePlugin } from './definitions';\n\nconst vonage = registerPlugin<vonagePlugin>('vonage', {\n web: () => import('./web').then(m => new m.vonageWeb()),\n});\n\nexport * from './definitions';\nexport { vonage };\n"]}
@@ -0,0 +1,12 @@
1
+ import { WebPlugin } from '@capacitor/core';
2
+ import type { vonagePlugin } from './definitions';
3
+ export declare class vonageWeb extends WebPlugin implements vonagePlugin {
4
+ echo(options: {
5
+ value: string;
6
+ }): Promise<{
7
+ value: string;
8
+ }>;
9
+ openVideoCallWindow(options: Object): Promise<{
10
+ value: any;
11
+ }>;
12
+ }
@@ -0,0 +1,13 @@
1
+ import { WebPlugin } from '@capacitor/core';
2
+ export class vonageWeb extends WebPlugin {
3
+ async echo(options) {
4
+ console.log('ECHO', options);
5
+ return options;
6
+ }
7
+ async openVideoCallWindow(options) {
8
+ let dummyValue;
9
+ console.log('openVideoCallWindow', options);
10
+ return dummyValue;
11
+ }
12
+ }
13
+ //# sourceMappingURL=web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"web.js","sourceRoot":"","sources":["../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAI5C,MAAM,OAAO,SAAU,SAAQ,SAAS;IACtC,KAAK,CAAC,IAAI,CAAC,OAA0B;QACnC,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAC7B,OAAO,OAAO,CAAC;IACjB,CAAC;IACD,KAAK,CAAC,mBAAmB,CAAC,OAAe;QACvC,IAAI,UAAc,CAAC;QACnB,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,OAAO,CAAC,CAAC;QAC5C,OAAO,UAAU,CAAC;IACpB,CAAC;CACF","sourcesContent":["import { WebPlugin } from '@capacitor/core';\n\nimport type { vonagePlugin } from './definitions';\n\nexport class vonageWeb extends WebPlugin implements vonagePlugin {\n async echo(options: { value: string }): Promise<{ value: string }> {\n console.log('ECHO', options);\n return options;\n }\n async openVideoCallWindow(options: Object): Promise<{ value: any }>{\n let dummyValue:any;\n console.log('openVideoCallWindow', options);\n return dummyValue;\n }\n}\n"]}
@@ -0,0 +1,29 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var core = require('@capacitor/core');
6
+
7
+ const vonage = core.registerPlugin('vonage', {
8
+ web: () => Promise.resolve().then(function () { return web; }).then(m => new m.vonageWeb()),
9
+ });
10
+
11
+ class vonageWeb extends core.WebPlugin {
12
+ async echo(options) {
13
+ console.log('ECHO', options);
14
+ return options;
15
+ }
16
+ async openVideoCallWindow(options) {
17
+ let dummyValue;
18
+ console.log('openVideoCallWindow', options);
19
+ return dummyValue;
20
+ }
21
+ }
22
+
23
+ var web = /*#__PURE__*/Object.freeze({
24
+ __proto__: null,
25
+ vonageWeb: vonageWeb
26
+ });
27
+
28
+ exports.vonage = vonage;
29
+ //# sourceMappingURL=plugin.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.cjs.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst vonage = registerPlugin('vonage', {\n web: () => import('./web').then(m => new m.vonageWeb()),\n});\nexport * from './definitions';\nexport { vonage };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class vonageWeb extends WebPlugin {\n async echo(options) {\n console.log('ECHO', options);\n return options;\n }\n async openVideoCallWindow(options) {\n let dummyValue;\n console.log('openVideoCallWindow', options);\n return dummyValue;\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;;;;AACK,MAAC,MAAM,GAAGA,mBAAc,CAAC,QAAQ,EAAE;AACxC,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;AAC3D,CAAC;;ACFM,MAAM,SAAS,SAASC,cAAS,CAAC;AACzC,IAAI,MAAM,IAAI,CAAC,OAAO,EAAE;AACxB,QAAQ,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACrC,QAAQ,OAAO,OAAO,CAAC;AACvB,KAAK;AACL,IAAI,MAAM,mBAAmB,CAAC,OAAO,EAAE;AACvC,QAAQ,IAAI,UAAU,CAAC;AACvB,QAAQ,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,OAAO,CAAC,CAAC;AACpD,QAAQ,OAAO,UAAU,CAAC;AAC1B,KAAK;AACL;;;;;;;;;"}
package/dist/plugin.js ADDED
@@ -0,0 +1,32 @@
1
+ var capacitorvonage = (function (exports, core) {
2
+ 'use strict';
3
+
4
+ const vonage = core.registerPlugin('vonage', {
5
+ web: () => Promise.resolve().then(function () { return web; }).then(m => new m.vonageWeb()),
6
+ });
7
+
8
+ class vonageWeb extends core.WebPlugin {
9
+ async echo(options) {
10
+ console.log('ECHO', options);
11
+ return options;
12
+ }
13
+ async openVideoCallWindow(options) {
14
+ let dummyValue;
15
+ console.log('openVideoCallWindow', options);
16
+ return dummyValue;
17
+ }
18
+ }
19
+
20
+ var web = /*#__PURE__*/Object.freeze({
21
+ __proto__: null,
22
+ vonageWeb: vonageWeb
23
+ });
24
+
25
+ exports.vonage = vonage;
26
+
27
+ Object.defineProperty(exports, '__esModule', { value: true });
28
+
29
+ return exports;
30
+
31
+ })({}, capacitorExports);
32
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst vonage = registerPlugin('vonage', {\n web: () => import('./web').then(m => new m.vonageWeb()),\n});\nexport * from './definitions';\nexport { vonage };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nexport class vonageWeb extends WebPlugin {\n async echo(options) {\n console.log('ECHO', options);\n return options;\n }\n async openVideoCallWindow(options) {\n let dummyValue;\n console.log('openVideoCallWindow', options);\n return dummyValue;\n }\n}\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin"],"mappings":";;;AACK,UAAC,MAAM,GAAGA,mBAAc,CAAC,QAAQ,EAAE;IACxC,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC;IAC3D,CAAC;;ICFM,MAAM,SAAS,SAASC,cAAS,CAAC;IACzC,IAAI,MAAM,IAAI,CAAC,OAAO,EAAE;IACxB,QAAQ,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrC,QAAQ,OAAO,OAAO,CAAC;IACvB,KAAK;IACL,IAAI,MAAM,mBAAmB,CAAC,OAAO,EAAE;IACvC,QAAQ,IAAI,UAAU,CAAC;IACvB,QAAQ,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,OAAO,CAAC,CAAC;IACpD,QAAQ,OAAO,UAAU,CAAC;IAC1B,KAAK;IACL;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,24 @@
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>FMWK</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleVersion</key>
20
+ <string>$(CURRENT_PROJECT_VERSION)</string>
21
+ <key>NSPrincipalClass</key>
22
+ <string></string>
23
+ </dict>
24
+ </plist>