-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsitemap.xml
2242 lines (2242 loc) · 357 KB
/
sitemap.xml
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url> <loc>http://zebra.github.io/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/test.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/googlesearch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/enterprise-keyboard/1-0/guide/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/choosing-a-version/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/compatibility/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/features/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/mx-version-on-device/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackagenames/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackagenamesallowxml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackages/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackagesallowxml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackagesign/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/addpackagesignallowxml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/allowsubmitxml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/allowsubmitxmlpackages/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/appverifysignmode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/deletepackagenames/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/deletepackages/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/deletepackagesign/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/disallowsubmitxmlpackages/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/operationmode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/accessmgr/systemsettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/analyticsaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/gpsinfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/groupaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/smartbattery/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/systeminfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/transportmethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/wanperf/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/analyticsmgr/wlanperf/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/accessappinfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/apk/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/packagename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/protectedlistaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/appmgr/protectedlistpackagename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/audiouiprofileaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/currentactiveprofile/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/currentprofilename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/mutevibratestate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/releases/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/setcurrentprofileoption/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmbthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmctrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmlbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmrcvrlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamalarmwhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicbthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicctrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusiclabel/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicrcvrlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streammusicwhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotctl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnoticon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotnthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotrcvlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotuilbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamnotwhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringbthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringctrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringlbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringrcvlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamringwhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystembthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemctrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemlbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemrcvrlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamsystemwhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicebthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicectrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoiceicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicelbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicercvlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicespklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/streamvoicewhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/uiprofilename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvsctrl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvsgthslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvsicon/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvslbl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvsrcvrlvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvsspklvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/audiovoluimgr/vvswhslvl/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/fileaccess/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/filedata/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/filepath/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/filetype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/requireencodings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/requireimmutable/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/requireopaque/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/requireprivate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batchmgr/securitypassword/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batterymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batterymgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batterymgr/usagethreshold/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/batterymgr/percentthreshold/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/setformdata/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/sethomepage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/browsermgr/setrememberpasswords/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/allcameras/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/frontcamera/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cameramgr/rearcamera/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/backgrounddata/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/backgroundusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/dataroamingstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/dataroamingusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/cellularmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certadjustclock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certalias/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certfileca/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certfileclient/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certmethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/certtype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/keystorepassword/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/certmgr/privatekeypassword/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/autotime/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/date/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/ntpserver/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/syncinterval/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/time/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/timezone/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/clock/usage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/componentmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/componentmgr/ethernetstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/componentmgr/ethernetusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/componentmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/componentmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/boolsourcetype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/boolsystemvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionmetaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionfailmsg/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionnotmetaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionrepeatcount/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionrepeatinterval/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/conditionwaitmsg/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/datatype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/intconditiontest/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/intconstvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/intsourcetype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/intsysvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/conditionmgr/releases/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/devadminaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/devadminclassname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/devadminpackagename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/screenlockinterval/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/devadmin/unknownsources/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/bootfilename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/broadcastaddress/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/domainsearch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/hostname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/hostnamevalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/ntpserverstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/tftpserveraddr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/tftpservername/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/userclass/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/userclassvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/vendoencap/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/vendorclass/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/vendorclassvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/vendorspecific1/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/dhcpoptionmgr/vendorspecific2/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/displaymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/displaymgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/displaymgr/screenshotusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/displaymgr/timeoutinterval/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/deleteefslocation/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/createefs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/deletefs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/efskeyname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/efslocation/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/efsname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/installkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/installkeyname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/installkeyvalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/mountpath/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/revokekey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/revokekeyname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/sdcardencryptkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/sdcardoperation/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/encryptmgr/volumesize/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/archivepathfilename/idex.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/archiveuri/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/embedtype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/fileaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourceaccess/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourcedataany/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourcedataapk/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourcedatazip/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourcepathfilename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/sourceuri/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/targetaccessmethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/targetpathfilename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/filemgr/targeturi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/accesspoint/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/apnaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/apnname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/carrier/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/makedefault.csp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/password/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/replaceifexists.csp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/gprsmgr/username/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/actionname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/class/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/extranames/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/extratype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/extravalue/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/file/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/mime/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/package/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/intent/uri/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/additionalflags/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/addkeyevent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/advanced/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/altstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/applicationlaunch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/chooseakey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/ctrlstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/fnstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/keybehavior/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/keybehaviormodes/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/keycode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/sendintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/shiftstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/keymappingmgr/trigger/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/customfeaturename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/featurename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/licensefile/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/licensefilepath/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/licensemethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/removecustom/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/removestandard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/verifymethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/licensemgr/selectmethod/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/asname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/asorder/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/asversion/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/iferror/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/persistmgr/persistaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/airplanemode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/autolockstate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/autoscreenlock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/safemode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powerkeymgr/touchpanel/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powermgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powermgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powermgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powermgr/resetaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/powermgr/updatezipfile/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/scanmodemgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/scanmodemgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/scanmodemgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/sdcardmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/sdcardmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/sdcardmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/sdcardmgr/usage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/actionname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/classname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/notifybody/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/notifystate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/packagename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/requestfilter/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/statusmgr/sourceid/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/accessapps/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/airplanemode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/enterprisereset/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/unknownsources/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/settingsmgr/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/alert/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/alertclass/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/alertmsg/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/alertpackage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/formatsdcard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/factoryreset/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/lockdevice/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/mdmpackage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/sendthreatmsg/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/signaloccurance/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/threaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/threatname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/uninstallapplication/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/uninstallpackage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/threatmgr/wipekeys/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/touchmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/touchmgr/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/touchmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/autocorrect/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/btpairing/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/classname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/clearclipboard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/clipboard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/defaultinput/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/defaultinputoption/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/homekey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/locale/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/uimgr/packagename/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/adbusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/devicestorage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/devicestoragemtp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/devicestorageptp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/devicestorageums/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/usbexternalusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/usbmgr/usbusage/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/24channels/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/50channels/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/action/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/adv80211k/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/adv80211w/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advadvlogging/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advagrft/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advautotime/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advbandpref/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advcckm/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advchd/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advfips/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advft/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advftover/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advftric/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advhfsr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advokc/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advoverview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advpmkid/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advpowersave/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advpreauth/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advrestrictedui/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advscanassist/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advwancountry/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advsubnetroam/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/advwlanpowersave/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/anonidentity/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/authentication/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/clientcert/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/clientcertopt/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/country/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/dnsserveraddress/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/encryptiontype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/encryptionwep/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/encryptypewpa2/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/gatewayipaddress/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/hexkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/identity/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/keytype/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/networkaction/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/networknotification/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/pacfile/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/passphrase/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/password/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/protectkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/protectpassword/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/proxy/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/proxybypass/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/proxyhost/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/proxyport/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/rfband/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/securitymode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/servercertname/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/sleeppolicy/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/ssid/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/staticip/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/subnetmask/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/targetos/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/useadvoptions/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/usedhcp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/usediag/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/usefusionadv/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/useregulatory/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/wepkeyindex/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wifi/wpamode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/xmlmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/xmlmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/xmlmgr/processingmode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/enablebt/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/examples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/turnonbt/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/turnongps/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/turnonnfc/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/mx/wirelessmgr/turnonwwan/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/download/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/search/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/tutorial/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/connect/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/about/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/gettingstarted/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/settings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/features/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/ehs/2-3/guide/setup/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/CSPreference/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/ProfileWizards/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/about/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/gettingstarted/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/search/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/settingconfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/settingtypes/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/stageclient/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/stagingprofiles/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/ConnectNetwork/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/choosingversion/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/configdevice/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/enrollmdm/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/manageapps/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/managesecurity/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/osupdate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/wipedevice/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/Profiles/xpertmode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/access/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/analyticsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/app/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/audio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/batch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/battery/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/browser/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/camera/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/cellular/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/cert/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/component/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/condition/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/devadmin/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/dhcp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/display/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/encrypt/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/file/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/gprs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/intent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/keymap/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/license/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/networkwlanandroid/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/networkwlanandroidfusion/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/networkwwangprs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/persistence/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/power/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/powerkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/scanmode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/sdcard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/settingsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/status/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/threat/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/touch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/ui/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/usb/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/wireless/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/csp/xml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/stagenow/2-2/tutorials/quickstart/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/download/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/app-manager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/barcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/bluetooth/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/data-capture/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/gprs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/personal-shopper/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/power/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/scanandpair/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/simulscan/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/samples/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutAddProfileManagerFeature/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutAdvancedScanningAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutApplyProfileSilently/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutBasicScanningAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutBluetoothScannerAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutCreateProjectAndroidStudio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutCreateProjectEclipseADT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutEnableEMDKEclipseADT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutModifyBarcodeProfileSettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxAccessManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxAppManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxBrowserManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxCameraManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxCellularManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxCertificateManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxClock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxDefaultLauncher/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxDevAdminManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxDisplayManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxEncryptManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxErrors/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxGPRSManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxPersistManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxPowerKeyManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxPowerManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxSDCardManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxSettingsManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxTouchManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxUIManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxUSBManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxWiFiManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxWirelessManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutMxXMLManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutScanAndPairAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutSimulScanAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutbatteryintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutdatacaptureintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutdatacaptureprofile/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutdatacaptureprofilePt2/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutdatacaptureprofilePt3/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/tutorial/tutdatacaptureprofilePt4/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/Cradle/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleConfig-CradleLocation/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleLedFlashInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/CradleResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/Diagnostic/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/DiagnosticConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/DiagnosticData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/DiagnosticException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/DiagnosticParamId/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/DiagnosticResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/PersonalShopper/PersonalShopper/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-DeviceIdentifier/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-BluetoothInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-NotificationType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-ScanDataType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-ScanInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairConfig-TriggerType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairManager-StatusListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/ScanAndPairResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/StatusData-ScanAndPairStates/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/scanandpair/StatusData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/BarcodeManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/BarcodeManager-ConnectionState/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/BarcodeManager-DeviceIdentifier/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/BarcodeManager-ScannerConnectionListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/BarcodeManager-ScannerConnectionListener-ConnectionStatus/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/Collection-ScanData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/InterfaceConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScanDataCollection/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScanDataCollection-ScanData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScanDataCollection-LabelType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/Scanner/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/Scanner-DataListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/Scanner-StatusListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-AudioStreamType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/Scanner-TriggerType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-BooklandFormat/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-CheckDigit/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-CheckDigitScheme/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-CodeIdType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-CheckDigitType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-CouponReport/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-AustralianPostal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Aztec/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-BaseDecoder/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-CanadianPostal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Chinese2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-CodaBar/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Code11/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Code128/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Code39/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Code93/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-CompositeAB/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-CompositeC/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-D2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-DataMatrix/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-DutchPostal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Ean13/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Ean8/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Gs1Databar/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Gs1DatabarExp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Gs1DatabarLim/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-HanXin/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-I2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-JapanesePostal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Korean3of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-MailMark/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Matrix2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-MaxiCode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-MicroPdf/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-MicroQr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Msi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Pdf417/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-QrCode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Signature/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Tlc39/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-TriOptic39/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-UkPostal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-UpcEanParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Upca/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Upce0/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Upce1/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Us4State/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-Us4StateFics/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-UsPlanet/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-UsPostNet/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-DecoderParams-WebCode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-HanXinInverse/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-IlluminationMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-Isbt128ContactMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-Inverse1DMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-LcdMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-LinearSecurityLevel/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-PickList/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-PowerMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-Preamble/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams-ReaderSpecific/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams-ReaderSpecific-CameraSpecific/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams-ReaderSpecific-ContinuousRead/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams-ReaderSpecific-ImagerSpecific/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ReaderParams-ReaderSpecific-LaserSpecific/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ScanParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-SkipOnUnSupported/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-SecurityLevel/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-SupplementalMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-UccLinkMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-VerifyCheckDigit/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerConfig-ViewFinderMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerInfo-ConnectionType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerInfo-DeviceType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerInfo-DecoderType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/ScannerResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/StatusData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/barcode/StatusData-ScannerStates/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/RegionType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanElement/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanGroup/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanManager-DeviceIdentifier/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanMultiTemplate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanReader/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanReader-DataListerner/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanReader-StatusListerner/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanReaderInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanRegion/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanReaderInfo-DeviceType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanStatusData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanStatusData-ExtendedInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanStatusData-SimulScanStatus/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanTemplate/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanTemplateGroup/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanTemplateElement/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/simulscan/SimulScanTemplateRegion/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-AppKeySettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-AuthenticateType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-CardVersionInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-CardVersionInfo-HardwareInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-CardVersionInfo-ManufacturerInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-CardVersionInfo-SoftwareInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-CreditType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-DFNames/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileAccessRights/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileCommMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileIDType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileSettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-FileTypeSpecificSettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-KeySettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-MasterKeySettingsType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-RecordFileSettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfire-ValueFileSettings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfireExpection/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareDesfireResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifarePlusSL3/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifarePlusSL3Exception/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifarePlusSL3Results/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-AdditionalAuthData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-AdditionalAuthData-AV1Mode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-AdditionalAuthData-AV2Mode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-ProtectionMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-SamInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-SamInfo-HardwareInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-SamInfo-ManufacturerInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-SamInfo-SoftwareInfo/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSam-SamMode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSamException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/MifareSamResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/PassThruApduException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/PassThruApduProcessor/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/PassThruApduProcessor-ProtocolType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/PassThruApduProcessor-VersionType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/PassThruApduResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SamBase/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SamDiverseParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SamKey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SecureNfcException/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SecureNfcManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SecureNfcManager-SamType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SecureNfcManager-TagTechType/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/SecureNfcResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/securenfc/TagTechBase/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKBase/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKManager-EMDKListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKManager-FEATURE_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKResults/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKResults-EXTENDED_STATUS_CODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKResults-STATUS_CODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/EMDKServiceConnection/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ACTION_KEY_CHAR/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-AIM_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ActivitySelection/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ActivitySelection-ActivityElement/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-BOOKLAND_FORMAT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-CHECK_DIGIT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-CHECK_DIGIT_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-CHECK_DIGIT_SCHEME/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-CODE_ID_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-COUPON_REPORT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DEVICETYPES/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Codabar/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Code11/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Code128/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Code39/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Code93/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Composite_AB/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Discrete_2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-EAN8/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Interleaved_2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-MSI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Matrix_2of5/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-Trioptic39/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-UK_Postal/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-UPCA/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-UPCE0/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-UPCE1/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-USPlanet/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-DecoderParams-USPostnet/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-Decoders/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-ReaderParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-ScanParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-Barcode-UpcEanParams/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-DataDelivery/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-DataDelivery-BasicDataFormatting/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-DataDelivery-Intent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-DataDelivery-Keystroke/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-DataCapture-MSR/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ENABLED_STATE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ILLUMINATION_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-INTENT_DELIVERY/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-INVERSE_1D_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-ISBT128_CONTACT_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-LCD_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-LINEAR_SECURITY_LEVEL/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-PICK_LIST/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-POWER_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-PREAMBLE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-SECURITY_LEVEL/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-SUPPLEMENTAL_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-UCC_LINK_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-VERIFY_CHECK_DIGIT/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-VIEWFINDER_MODE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileConfig-VOLUME_SLIDER_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileManager-DataListener/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileManager-PROFILE_FLAG/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/ProfileManager-ResultData/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/VersionManager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/api/core/VersionManager-VERSION_TYPE/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/about/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/emdksamples_androidstudio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/abouthelp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/emdksamples_eclipse/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/eula/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/gettingstarted/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/name_value_pair/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/extended_status/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/personalshopper/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profile-manager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profile-manager-guides/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/programming-guides/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/securenfc/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/setup/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/setupAndroidStudioMac/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/setupAndroidStudio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/setupDevice/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/setupEclipse/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/simulscan_guide/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/access/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/analytics/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/app/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/audio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/battery/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/camera/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/browser/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/cellular/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/cert/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/component/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/devadmin/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/dhcp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/display/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/encrypt/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/gprs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/keymap/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/persistence/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/power/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/powerkey/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profileIP/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profileactivity/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profilebarcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profileintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profilekeystroke/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/profilemsr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/sdcard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/settings/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/threat/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/touch/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/ui/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/usb/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/usingwizard/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/wireless/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/profiles-old/xml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/reference/refbatteryintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/reference/refdatacaptureintent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/reference/refnativeandroid/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/sample/emdksamples_androidstudio/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/guide/sample/emdksamples_eclipse/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/accessmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/analytics/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/appmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/audiomgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/batterymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/browsermgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/cameramgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/cellularmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/certmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/choosing-a-version/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/compatibility/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/componentmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/devadmin/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/dhcp/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/displaymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/encryptmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/feature-version-matrix/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/gprsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/keymappingmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/overview/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/persistence/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/powerkeymgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/powermgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/sdcardmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/settingsmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/threatmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/touchmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/uimgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/usbmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/version-on-device/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/wirelessmgr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/xml/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/IP/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/activity/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/barcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/intent/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/keystroke/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/3-1/mx/data-capture/msr/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/search/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/app-manager/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/barcode/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/bluetooth/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/clock/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/data-capture/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/gprs/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/payment/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/paymentpd40/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/personal-shopper/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/power/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/scanandpair/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/securenfc/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/serialcomm/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/simulscan/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/samples/wifi/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/tutAddProfileManagerFeature/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/tutAdvancedScanningAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/tutApplyProfileSilently/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/tutBasicScanningAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>
<url> <loc>http://zebra.github.io/emdk-for-android/4-0/tutorial/tutBluetoothScannerAPI/index.html</loc> <changefreq>weekly</changefreq> <priority>0.5</priority> </url>