Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathplugin.xml
More file actions
Latest commit
555 lines (527 loc) · 26.7 KB
/
Copy pathplugin.xml
File metadata and controls
555 lines (527 loc) · 26.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
<?xml version="1.0" encoding="UTF-8"?>
<pluginxmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-ace"
version="0.1.2">
<name>Ace</name>
<description>Enables you to mix native UI and native code with your JavaScript and HTML.</description>
<license>MIT</license>
<keywords>cordova,native,ui,xaml</keywords>
<repo>https://github.com/microsoft/ace.git</repo>
<issue>https://github.com/microsoft/ace/issues</issue>
<!-- Sets up app native folders for convenience -->
<hooktype="after_plugin_install"src="src/plugin_hooks/after_plugin_install.js" />
<!-- Platform-neutral JavaScript: -->
<!-- These must be listed first: -->
<js-modulesrc="www/Extensions.js">
<mergestarget="ace.Extensions" />
</js-module>
<js-modulesrc="www/ToNative.js">
<mergestarget="ace.ToNative" />
</js-module>
<js-modulesrc="www/ace.js">
<mergestarget="ace" />
</js-module>
<js-modulesrc="www/external.js">
<mergestarget="ace.external" />
</js-module>
<js-modulesrc="www/framework/platformHelpers/android.js">
<mergestarget="ace.android" />
</js-module>
<js-modulesrc="www/framework/platformHelpers/ios.js">
<mergestarget="ace.ios" />
</js-module>
<js-modulesrc="www/framework/primitives/NativeObject.js">
<mergestarget="ace.NativeObject" />
</js-module>
<js-modulesrc="www/framework/primitives/KnownNativeObject.js">
<mergestarget="ace.KnownNativeObject" />
</js-module>
<js-modulesrc="www/framework/primitives/WrappedNativeObject.js">
<mergestarget="ace.WrappedNativeObject" />
</js-module>
<js-modulesrc="www/framework/primitives/UIElement.js">
<mergestarget="ace.UIElement" />
</js-module>
<js-modulesrc="www/framework/primitives/Control.js">
<mergestarget="ace.Control" />
</js-module>
<js-modulesrc="www/framework/primitives/ContentControl.js">
<mergestarget="ace.ContentControl" />
</js-module>
<js-modulesrc="www/framework/primitives/UserControl.js">
<mergestarget="ace.UserControl" />
</js-module>
<js-modulesrc="www/framework/primitives/ItemsControl.js">
<mergestarget="ace.ItemsControl" />
</js-module>
<js-modulesrc="www/framework/primitives/Selector.js">
<mergestarget="ace.Selector" />
</js-module>
<js-modulesrc="www/framework/primitives/SelectorItem.js">
<mergestarget="ace.SelectorItem" />
</js-module>
<js-modulesrc="www/framework/collections/Dictionary.js">
<mergestarget="ace.Dictionary" />
</js-module>
<js-modulesrc="www/framework/collections/ObservableCollection.js">
<mergestarget="ace.ObservableCollection" />
</js-module>
<js-modulesrc="www/framework/collections/ColumnDefinitionCollection.js">
<mergestarget="ace.ColumnDefinitionCollection" />
</js-module>
<js-modulesrc="www/framework/collections/CommandBarElementCollection.js">
<mergestarget="ace.CommandBarElementCollection" />
</js-module>
<js-modulesrc="www/framework/collections/InlineCollection.js">
<mergestarget="ace.InlineCollection" />
</js-module>
<js-modulesrc="www/framework/collections/ItemCollection.js">
<mergestarget="ace.ItemCollection" />
</js-module>
<js-modulesrc="www/framework/collections/PathFigureCollection.js">
<mergestarget="ace.PathFigureCollection" />
</js-module>
<js-modulesrc="www/framework/collections/PathSegmentCollection.js">
<mergestarget="ace.PathSegmentCollection" />
</js-module>
<js-modulesrc="www/framework/collections/ResourceDictionary.js">
<mergestarget="ace.ResourceDictionary" />
</js-module>
<js-modulesrc="www/framework/collections/RowDefinitionCollection.js">
<mergestarget="ace.RowDefinitionCollection" />
</js-module>
<js-modulesrc="www/framework/collections/SetterBaseCollection.js">
<mergestarget="ace.SetterBaseCollection" />
</js-module>
<js-modulesrc="www/framework/collections/UIElementCollection.js">
<mergestarget="ace.UIElementCollection" />
</js-module>
<js-modulesrc="www/framework/panels/Panel.js">
<mergestarget="ace.Panel" />
</js-module>
<js-modulesrc="www/framework/panels/Canvas.js">
<mergestarget="ace.Canvas" />
</js-module>
<js-modulesrc="www/framework/panels/Grid.js">
<mergestarget="ace.Grid" />
</js-module>
<js-modulesrc="www/framework/panels/StackPanel.js">
<mergestarget="ace.StackPanel" />
</js-module>
<js-modulesrc="www/framework/Frame.js">
<mergestarget="ace.Frame" />
</js-module>
<js-modulesrc="www/framework/Page.js">
<mergestarget="ace.Page" />
</js-module>
<js-modulesrc="www/framework/ButtonBase.js">
<mergestarget="ace.ButtonBase" />
</js-module>
<js-modulesrc="www/framework/Button.js">
<mergestarget="ace.Button" />
</js-module>
<js-modulesrc="www/framework/ColumnDefinition.js">
<mergestarget="ace.ColumnDefinition" />
</js-module>
<js-modulesrc="www/framework/CommandBar.js">
<mergestarget="ace.CommandBar" />
</js-module>
<js-modulesrc="www/framework/DatePicker.js">
<mergestarget="ace.DatePicker" />
</js-module>
<js-modulesrc="www/framework/AppBarButton.js">
<mergestarget="ace.AppBarButton" />
</js-module>
<js-modulesrc="www/framework/Geometry.js">
<mergestarget="ace.Geometry" />
</js-module>
<js-modulesrc="www/framework/HyperlinkButton.js">
<mergestarget="ace.HyperlinkButton" />
</js-module>
<js-modulesrc="www/framework/Image.js">
<mergestarget="ace.Image" />
</js-module>
<js-modulesrc="www/framework/PathSegment.js">
<mergestarget="ace.PathSegment" />
</js-module>
<js-modulesrc="www/framework/LineSegment.js">
<mergestarget="ace.LineSegment" />
</js-module>
<js-modulesrc="www/framework/ListBox.js">
<mergestarget="ace.ListBox" />
</js-module>
<js-modulesrc="www/framework/ListBoxItem.js">
<mergestarget="ace.ListBoxItem" />
</js-module>
<js-modulesrc="www/framework/Shape.js">
<mergestarget="ace.Shape" />
</js-module>
<js-modulesrc="www/framework/Path.js">
<mergestarget="ace.Path" />
</js-module>
<js-modulesrc="www/framework/PathFigure.js">
<mergestarget="ace.PathFigure" />
</js-module>
<js-modulesrc="www/framework/PathGeometry.js">
<mergestarget="ace.PathGeometry" />
</js-module>
<js-modulesrc="www/framework/Popup.js">
<mergestarget="ace.Popup" />
</js-module>
<js-modulesrc="www/framework/RowDefinition.js">
<mergestarget="ace.RowDefinition" />
</js-module>
<js-modulesrc="www/framework/Style.js">
<mergestarget="ace.Style" />
</js-module>
<js-modulesrc="www/framework/Setter.js">
<mergestarget="ace.Setter" />
</js-module>
<js-modulesrc="www/framework/StaticResource.js">
<mergestarget="ace.StaticResource" />
</js-module>
<js-modulesrc="www/framework/TabBar.js">
<mergestarget="ace.TabBar" />
</js-module>
<js-modulesrc="www/framework/TableView.js">
<mergestarget="ace.TableView" />
</js-module>
<js-modulesrc="www/framework/TableViewCell.js">
<mergestarget="ace.TableViewCell" />
</js-module>
<js-modulesrc="www/framework/TextBlock.js">
<mergestarget="ace.TextBlock" />
</js-module>
<js-modulesrc="www/framework/TimePicker.js">
<mergestarget="ace.TimePicker" />
</js-module>
<js-modulesrc="www/framework/ToggleSwitch.js">
<mergestarget="ace.ToggleSwitch" />
</js-module>
<js-modulesrc="www/framework/WebView.js">
<mergestarget="ace.WebView" />
</js-module>
<js-modulesrc="www/xbf/BinaryReader.js">
<mergestarget="ace.BinaryReader" />
</js-module>
<js-modulesrc="www/xbf/NodeType.js">
<mergestarget="ace.NodeType" />
</js-module>
<js-modulesrc="www/xbf/XamlNode.js">
<mergestarget="ace.XamlNode" />
</js-module>
<js-modulesrc="www/xbf/XbfReader.js">
<mergestarget="ace.XbfReader" />
</js-module>
<js-modulesrc="www/xbf/NodeToElement.js">
<mergestarget="ace.NodeToElement" />
</js-module>
<!-- ios -->
<platformname="ios">
<config-filetarget="config.xml"parent="/*">
<featurename="NativeHost">
<paramname="ios-package"value="NativeHost"/>
<paramname="onload"value="true"/>
</feature>
</config-file>
<!-- Adds any iOS resources to the project file -->
<hooktype="after_prepare"src="src/plugin_hooks/ios_after_prepare.js" />
<!-- iOS-specific JavaScript: -->
<js-modulesrc="www/iOS/platform.js">
<mergestarget="ace.platform" />
</js-module>
<header-filesrc="src/ios/AceNavigationController.h" />
<source-filesrc="src/ios/AceNavigationController.mm" />
<header-filesrc="src/ios/AcePluginManager.h" />
<source-filesrc="src/ios/AcePluginManager.mm" />
<header-filesrc="src/ios/AceViewController.h" />
<source-filesrc="src/ios/AceViewController.mm" />
<header-filesrc="src/ios/AppBarButton.h" />
<source-filesrc="src/ios/AppBarButton.mm" />
<header-filesrc="src/ios/ArcSegment.h" />
<source-filesrc="src/ios/ArcSegment.mm" />
<header-filesrc="src/ios/BezierSegment.h" />
<source-filesrc="src/ios/BezierSegment.mm" />
<header-filesrc="src/ios/BitmapIcon.h" />
<source-filesrc="src/ios/BitmapIcon.mm" />
<header-filesrc="src/ios/BitmapImage.h" />
<source-filesrc="src/ios/BitmapImage.mm" />
<header-filesrc="src/ios/Brush.h" />
<source-filesrc="src/ios/Brush.mm" />
<header-filesrc="src/ios/BrushConverter.h" />
<source-filesrc="src/ios/BrushConverter.mm" />
<header-filesrc="src/ios/Button.h" />
<source-filesrc="src/ios/Button.mm" />
<header-filesrc="src/ios/Canvas.h" />
<source-filesrc="src/ios/Canvas.mm" />
<header-filesrc="src/ios/Color.h" />
<source-filesrc="src/ios/Color.mm" />
<header-filesrc="src/ios/ColumnDefinition.h" />
<source-filesrc="src/ios/ColumnDefinition.mm" />
<header-filesrc="src/ios/ColumnDefinitionCollection.h" />
<source-filesrc="src/ios/ColumnDefinitionCollection.mm" />
<header-filesrc="src/ios/CommandBar.h" />
<source-filesrc="src/ios/CommandBar.mm" />
<header-filesrc="src/ios/CommandBarElementCollection.h" />
<source-filesrc="src/ios/CommandBarElementCollection.mm" />
<header-filesrc="src/ios/CustomActionSheet.h" />
<source-filesrc="src/ios/CustomActionSheet.mm" />
<header-filesrc="src/ios/DatePicker.h" />
<source-filesrc="src/ios/DatePicker.mm" />
<header-filesrc="src/ios/Dictionary.h" />
<source-filesrc="src/ios/Dictionary.mm" />
<header-filesrc="src/ios/FontWeightConverter.h" />
<source-filesrc="src/ios/FontWeightConverter.mm" />
<header-filesrc="src/ios/Frame.h" />
<source-filesrc="src/ios/Frame.mm" />
<header-filesrc="src/ios/Geometry.h" />
<source-filesrc="src/ios/Geometry.mm" />
<header-filesrc="src/ios/GeometryContext.h" />
<source-filesrc="src/ios/GeometryContext.mm" />
<header-filesrc="src/ios/GeometryConverter.h" />
<source-filesrc="src/ios/GeometryConverter.mm" />
<header-filesrc="src/ios/GeometryParser.h" />
<source-filesrc="src/ios/GeometryParser.mm" />
<header-filesrc="src/ios/GradientStop.h" />
<source-filesrc="src/ios/GradientStop.mm" />
<header-filesrc="src/ios/GradientStopCollection.h" />
<source-filesrc="src/ios/GradientStopCollection.mm" />
<header-filesrc="src/ios/Grid.h" />
<source-filesrc="src/ios/Grid.mm" />
<header-filesrc="src/ios/GridLength.h" />
<source-filesrc="src/ios/GridLength.mm" />
<header-filesrc="src/ios/GridLengthConverter.h" />
<source-filesrc="src/ios/GridLengthConverter.mm" />
<header-filesrc="src/ios/Handle.h" />
<source-filesrc="src/ios/Handle.mm" />
<header-filesrc="src/ios/HyperlinkButton.h" />
<source-filesrc="src/ios/HyperlinkButton.mm" />
<header-filesrc="src/ios/IconElement.h" />
<source-filesrc="src/ios/IconElement.mm" />
<header-filesrc="src/ios/IFireEvents.h" />
<header-filesrc="src/ios/IHaveProperties.h" />
<header-filesrc="src/ios/IncomingMessages.h" />
<source-filesrc="src/ios/IncomingMessages.mm" />
<header-filesrc="src/ios/InlineCollection.h" />
<source-filesrc="src/ios/InlineCollection.mm" />
<header-filesrc="src/ios/Image.h" />
<source-filesrc="src/ios/Image.mm" />
<header-filesrc="src/ios/ImageSource.h" />
<source-filesrc="src/ios/ImageSource.mm" />
<header-filesrc="src/ios/IRecieveCollectionChanges.h" />
<header-filesrc="src/ios/ItemCollection.h" />
<source-filesrc="src/ios/ItemCollection.mm" />
<header-filesrc="src/ios/ItemsControl.h" />
<source-filesrc="src/ios/ItemsControl.mm" />
<header-filesrc="src/ios/KnownColors.h" />
<source-filesrc="src/ios/KnownColors.mm" />
<header-filesrc="src/ios/LinearGradientBrush.h" />
<source-filesrc="src/ios/LinearGradientBrush.mm" />
<header-filesrc="src/ios/LineSegment.h" />
<source-filesrc="src/ios/LineSegment.mm" />
<header-filesrc="src/ios/ListBox.h" />
<source-filesrc="src/ios/ListBox.mm" />
<header-filesrc="src/ios/ListBoxItem.h" />
<source-filesrc="src/ios/ListBoxItem.mm" />
<header-filesrc="src/ios/NativeEventAttacher.h" />
<source-filesrc="src/ios/NativeEventAttacher.mm" />
<header-filesrc="src/ios/NativeHost.h" />
<source-filesrc="src/ios/NativeHost.mm" />
<header-filesrc="src/ios/ObservableCollection.h" />
<source-filesrc="src/ios/ObservableCollection.mm" />
<header-filesrc="src/ios/OutgoingMessages.h" />
<source-filesrc="src/ios/OutgoingMessages.mm" />
<header-filesrc="src/ios/Page.h" />
<source-filesrc="src/ios/Page.mm" />
<header-filesrc="src/ios/Parsers.h" />
<source-filesrc="src/ios/Parsers.mm" />
<header-filesrc="src/ios/Path.h" />
<source-filesrc="src/ios/Path.mm" />
<header-filesrc="src/ios/PathFigure.h" />
<source-filesrc="src/ios/PathFigure.mm" />
<header-filesrc="src/ios/PathFigureCollection.h" />
<source-filesrc="src/ios/PathFigureCollection.mm" />
<header-filesrc="src/ios/PathGeometry.h" />
<source-filesrc="src/ios/PathGeometry.mm" />
<header-filesrc="src/ios/PathSegment.h" />
<source-filesrc="src/ios/PathSegment.mm" />
<header-filesrc="src/ios/PathSegmentCollection.h" />
<source-filesrc="src/ios/PathSegmentCollection.mm" />
<header-filesrc="src/ios/PointCollection.h" />
<source-filesrc="src/ios/PointCollection.mm" />
<header-filesrc="src/ios/PolyBezierSegment.h" />
<source-filesrc="src/ios/PolyBezierSegment.mm" />
<header-filesrc="src/ios/PolyLineSegment.h" />
<source-filesrc="src/ios/PolyLineSegment.mm" />
<header-filesrc="src/ios/PolyQuadraticBezierSegment.h" />
<source-filesrc="src/ios/PolyQuadraticBezierSegment.mm" />
<header-filesrc="src/ios/Popup.h" />
<source-filesrc="src/ios/Popup.mm" />
<header-filesrc="src/ios/QuadraticBezierSegment.h" />
<source-filesrc="src/ios/QuadraticBezierSegment.mm" />
<header-filesrc="src/ios/RectUtils.h" />
<source-filesrc="src/ios/RectUtils.mm" />
<header-filesrc="src/ios/ResourceDictionary.h" />
<source-filesrc="src/ios/ResourceDictionary.mm" />
<header-filesrc="src/ios/RowDefinition.h" />
<source-filesrc="src/ios/RowDefinition.mm" />
<header-filesrc="src/ios/RowDefinitionCollection.h" />
<source-filesrc="src/ios/RowDefinitionCollection.mm" />
<header-filesrc="src/ios/Selector.h" />
<source-filesrc="src/ios/Selector.mm" />
<header-filesrc="src/ios/Setter.h" />
<source-filesrc="src/ios/Setter.mm" />
<header-filesrc="src/ios/SetterBaseCollection.h" />
<source-filesrc="src/ios/SetterBaseCollection.mm" />
<header-filesrc="src/ios/Shape.h" />
<source-filesrc="src/ios/Shape.mm" />
<header-filesrc="src/ios/SolidColorBrush.h" />
<source-filesrc="src/ios/SolidColorBrush.mm" />
<header-filesrc="src/ios/StackPanel.h" />
<source-filesrc="src/ios/StackPanel.mm" />
<header-filesrc="src/ios/StaticResource.h" />
<source-filesrc="src/ios/StaticResource.mm" />
<header-filesrc="src/ios/Style.h" />
<source-filesrc="src/ios/Style.mm" />
<header-filesrc="src/ios/SymbolIcon.h" />
<source-filesrc="src/ios/SymbolIcon.mm" />
<header-filesrc="src/ios/TabBar.h" />
<source-filesrc="src/ios/TabBar.mm" />
<header-filesrc="src/ios/TableView.h" />
<source-filesrc="src/ios/TableView.mm" />
<header-filesrc="src/ios/TableViewCell.h" />
<source-filesrc="src/ios/TableViewCell.mm" />
<header-filesrc="src/ios/TextBlock.h" />
<source-filesrc="src/ios/TextBlock.mm" />
<header-filesrc="src/ios/Thickness.h" />
<source-filesrc="src/ios/Thickness.mm" />
<header-filesrc="src/ios/TimePicker.h" />
<source-filesrc="src/ios/TimePicker.mm" />
<header-filesrc="src/ios/ToggleSwitch.h" />
<source-filesrc="src/ios/ToggleSwitch.mm" />
<header-filesrc="src/ios/UIElementCollection.h" />
<source-filesrc="src/ios/UIElementCollection.mm" />
<header-filesrc="src/ios/UILabelHelper.h" />
<source-filesrc="src/ios/UILabelHelper.mm" />
<header-filesrc="src/ios/UIViewHelper.h" />
<source-filesrc="src/ios/UIViewHelper.mm" />
<header-filesrc="src/ios/Utils.h" />
<source-filesrc="src/ios/Utils.mm" />
<header-filesrc="src/ios/WebView.h" />
<source-filesrc="src/ios/WebView.mm" />
<!-- For custom code: -->
<frameworksrc="QuartzCore.framework" />
</platform>
<!-- android -->
<platformname="android">
<config-filetarget="res/xml/config.xml"parent="/*">
<featurename="NativeHost">
<paramname="android-package"value="run.ace.NativeHost"/>
<paramname="onload"value="true"/>
</feature>
</config-file>
<!-- Add AceActivity to the manifest -->
<config-filetarget="AndroidManifest.xml"parent="/manifest/application">
<activityxmlns:android="http://schemas.android.com/apk/res/android"android:name="run.ace.AceActivity">
</activity>
</config-file>
<!--
<framework src="com.android.support:appcompat-v7:22.0.+" custom="false" />
-->
<!-- Copies the app's native code and resources -->
<hooktype="before_compile"src="src/plugin_hooks/android_before_compile.js" />
<!-- Also do it before run, as "cordova run android" doesn't invoke the
before_compile hook even when it compiles! -->
<hooktype="before_run"src="src/plugin_hooks/android_before_compile.js" />
<!-- Android-specific JavaScript: -->
<js-modulesrc="www/android/platform.js">
<mergestarget="ace.platform" />
</js-module>
<source-filesrc="src/android/res/values/ace_ids.xml"target-dir="res/values" />
<source-filesrc="src/android/appwidgets/AppWidgetData.java"target-dir="src/run/ace/appwidgets" />
<source-filesrc="src/android/appwidgets/AppWidgetProvider.java"target-dir="src/run/ace/appwidgets" />
<source-filesrc="src/android/appwidgets/AppWidgetService.java"target-dir="src/run/ace/appwidgets" />
<source-filesrc="src/android/collections/ColumnDefinitionCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/CommandBarElementCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/Dictionary.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/GradientStopCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/ItemCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/InlineCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/ObservableCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/PathFigureCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/PathSegmentCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/PointCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/ResourceDictionary.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/RowDefinitionCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/SetterBaseCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/collections/UIElementCollection.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/converters/BrushConverter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/converters/FontWeightConverter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/converters/NamedColor.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/converters/PointFConverter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/AppBarButton.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ArcSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/BezierSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/BitmapImage.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Brush.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Button.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Canvas.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Color.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ColumnDefinition.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/CommandBar.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/DatePicker.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Frame.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Geometry.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GeometryContext.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GeometryConverter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GeometryParser.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GradientStop.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Grid.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GridLength.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GridLengthConverter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/GridUnitType.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/HyperlinkButton.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Image.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ImageSource.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/LinearGradientBrush.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/LineSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ListBox.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ListBoxItem.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Page.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Path.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PathFigure.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PathGeometry.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PathSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PolyBezierSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PolyLineSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/PolyQuadraticBezierSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Popup.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/QuadraticBezierSegment.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/RowDefinition.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Setter.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Shape.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/SolidColorBrush.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/StackPanel.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/StaticResource.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Style.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/TabBar.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/TextBlock.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/Thickness.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/TimePicker.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/ToggleSwitch.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/framework/WebView.java"target-dir="src/run/ace/framework" />
<source-filesrc="src/android/host/AceActivity.java"target-dir="src/run/ace" />
<source-filesrc="src/android/host/IncomingMessages.java"target-dir="src/run/ace" />
<source-filesrc="src/android/host/NativeEventAttacher.java"target-dir="src/run/ace" />
<source-filesrc="src/android/host/NativeHost.java"target-dir="src/run/ace" />
<source-filesrc="src/android/host/OutgoingMessages.java"target-dir="src/run/ace" />
<source-filesrc="src/android/Handle.java"target-dir="src/run/ace" />
<source-filesrc="src/android/IFireEvents.java"target-dir="src/run/ace" />
<source-filesrc="src/android/IHaveProperties.java"target-dir="src/run/ace" />
<source-filesrc="src/android/IRecieveCollectionChanges.java"target-dir="src/run/ace" />
<source-filesrc="src/android/Utils.java"target-dir="src/run/ace" />
<source-filesrc="src/android/propertyHelpers/ViewGroupHelper.java"target-dir="src/run/ace" />
<source-filesrc="src/android/propertyHelpers/ViewHelper.java"target-dir="src/run/ace" />
<source-filesrc="src/android/propertyHelpers/TextViewHelper.java"target-dir="src/run/ace" />
</platform>
</plugin>