-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathappfilter.xml
More file actions
2324 lines (2281 loc) · 186 KB
/
Copy pathappfilter.xml
File metadata and controls
2324 lines (2281 loc) · 186 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
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"?>
<resources>
<iconback img="iconback"/>
<iconupon img="iconupon"/>
<iconmask img="iconmask"/>
<scale factor="1.00" />
<!-- 0123456789 -->
<!-- 14px -->
<item component="ComponentInfo{com.drummerGames.px14/com.ansca.corona.CoronaActivity}" drawable="fourteen" />
<item component="ComponentInfo{com.drummerGames.px14/com.zong.android.engine.web.ZongWebView}" drawable="fourteen" />
<!-- 100 Floors -->
<item component="ComponentInfo{com.tobiapps.android_100fl/com.tobiapps.android_100fl.Loading}" drawable="floors"/>
<!-- 1Weather -->
<item component="ComponentInfo{com.handmark.expressweather/com.handmark.expressweather.MainActivity}" drawable="oneweather"/>
<!-- 3g Watchdog -->
<item component="ComponentInfo{net.rgruet.android.g3watchdog/net.rgruet.android.g3watchdog.Main}" drawable="watchdog"/>
<!-- 3g Watchdog Pro -->
<item component="ComponentInfo{net.rgruet.android.g3watchdogpro/net.rgruet.android.g3watchdogpro.Main}" drawable="watchdog"/>
<!-- 8Tracks -->
<item component="ComponentInfo{com.e8tracks/com.e8tracks.activity.LauncherActivity}" drawable="eighttracks"/>
<!-- A -->
<!-- AccuWeather -->
<item component="ComponentInfo{com.accuweather.android/com.accuweather.android.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweather/com.accuweather.android.simpleweather.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android/com.accuweather.android.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.paid.android/com.accuweather.paid.android.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.tablet/com.accuweather.android.tablet.Main}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.tablet/com.accuweather.android.tablet.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweather.paid/com.accuweather.android.simpleweather.paid.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android/com.accuweather.android.AccuWeather}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweatherlite_tcl/com.accuweather.android.simpleweatherlite_tcl.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweatherlite/com.accuweather.android.simpleweatherlite.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android/com.accuweather.android.MainMenuActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.amazon.android/com.accuweather.amazon.android.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.amazon.android/com.accuweather.amazon.android.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.amazon.paid.android/com.accuweather.amazon.paid.android.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.amazon.simpleweather/com.accuweather.android.amazon.simpleweather.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.motorola.notifier.plugin.accuweather/com.motorola.notifier.plugin.accuweather.activity.WelcomeScreen}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.tablet.sony/com.accuweather.android.tablet.sony.LauncherActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.tablet.sonys2/com.accuweather.android.tablet.sonys2.Main}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.tablet.sony/com.accuweather.android.tablet.sony.Main}" drawable="accuweather"/>
<item component="ComponentInfo{com.mob4.androidweather/com.mob4.androidweather.SplashDisplay}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.amazon.tablet/com.accuweather.android.amazon.tablet.Main}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweatherlite.dellstreak/com.accuweather.android.simpleweatherlite.dellstreak.MainActivity}" drawable="accuweather"/>
<item component="ComponentInfo{com.accuweather.android.simpleweatherlite.dellportrait/com.accuweather.android.simpleweatherlite.dellportrait.MainActivity}" drawable="accuweather"/>
<!-- Activate -->
<item component="ComponentInfo{com.telespree.android.client/com.telespree.android.client.ssa}" drawable="activate"/>
<!-- AdAway -->
<item component="ComponentInfo{org.adaway/org.adaway.ui.BaseActivity}" drawable="adaway"/>
<!--Adblocker Plus-->
<item component="ComponentInfo{org.adblockplus.android/org.adblockplus.android.Preferences}" drawable="adblock" />
<!-- AdFree -->
<item component="ComponentInfo{com.bigtincan.android.adfree/com.bigtincan.android.adfree.FreeMe}" drawable="adfree"/>
<item component="ComponentInfo{com.bigtincan.adfree/com.bigtincan.adfree.FreeMe}" drawable="adfree"/>
<!-- Adobe Flash RIP -->
<item component="ComponentInfo{com.adobe.flashplayer/com.adobe.flashplayer.SettingsManager}" drawable="adobeflash"/>
<!-- Adobe Reader -->
<item component="ComponentInfo{com.adobe.reader/com.adobe.reader.AdobeReader}" drawable="adobereader"/>
<!-- Adobe Air -->
<item component="ComponentInfo{com.adobe.air/com.adobe.air.AIRUpdateDialog}" drawable="adobeair" />
<item component="ComponentInfo{com.adobe.air/com.adobe.air.RemoteDebuggerListenerDialog}" drawable="adobeair" />
<!-- Advanced Task Killer -->
<item component="ComponentInfo{com.rechild.advancedtaskkiller/com.rechild.advancedtaskkiller.AdvancedTaskKiller}" drawable="atk" />
<item component="ComponentInfo{com.rechild.advancedtaskkillerpro/com.rechild.advancedtaskkillerpro.AdvancedTaskKiller}" drawable="atk" />
<!-- ADW Launcher -->
<item component="ComponentInfo{org.adw.launcher/org.adw.launcherlib.Launcher}" drawable="adw"/>
<!-- ADW Launcher EX -->
<item component="ComponentInfo{org.adwfreak.launcher/org.adw.launcherlib.Launcher}" drawable="adwex"/>
<!-- ADW Notifier -->
<item component="ComponentInfo{org.adw.launcher.notifications/org.adw.launcher.notifications.ADWNotifierSettings}" drawable="adwnotifier"/>
<!-- Afterfocus -->
<item component="ComponentInfo{com.motionone.afterfocus/com.motionone.afterfocus.TitleActivity}" drawable="afterfocus"/>
<!-- Aftermath XHD -->
<item component="ComponentInfo{com.jakyl.aftermathxhd/com.jakyl.aftermathxhd.aftermathxhd}" drawable="aftermath"/>
<!-- Agent Dash -->
<item component="ComponentInfo{com.fullfat.android.agentdash/com.fullfat.android.agentdash.RunnerActivity}" drawable="agentdash"/>
<!-- Aging Booth -->
<item component="ComponentInfo{com.piviandco.agingbooth/com.piviandco.app.activities.mHomeActivity}" drawable="agingbooth"/>
<!-- Airblocker -->
<item component="ComponentInfo{pl.byq.airblocker/pl.byq.airblocker.AirblockerActivity}" drawable="airblocker"/>
<!-- Aircalc -->
<item component="ComponentInfo{com.myboyfriendisageek.aircalc/com.myboyfriendisageek.aircalc.CalculatorActivity}" drawable="aircalc"/>
<!-- Air Control -->
<item component="ComponentInfo{dk.logisoft.aircontrol/dk.logisoft.aircontrol.LoadingActivity}" drawable="aircontrol"/>
<item component="ComponentInfo{dk.logisoft.aircontrolfull/dk.logisoft.aircontrolfull.LoadingActivity}" drawable="aircontrol"/>
<!-- AirDroid -->
<item component="ComponentInfo{com.sand.airdroid/com.sand.airdroid.Splash}" drawable="airdroid"/>
<!-- AirFreebox -->
<!-- AirG Chat -->
<item component="ComponentInfo{com.airg.virginuschat25/com.airg.virginuschat25.airGChat}" drawable="airg"/>
<!-- AlarmDroid -->
<item component="ComponentInfo{com.splunchy.android.alarmclock/com.splunchy.android.alarmclock.AlarmsActivity}" drawable="alarm"/>
<!-- Alarmplus -->
<item component="ComponentInfo{com.vp.alarmClockPlusDock/com.vp.alarmClockPlusDock.DeskClock}" drawable="alarmplus"/>
<item component="ComponentInfo{com.vp.alarmClockPlusV2/com.vp.alarmClockPlusV2.DeskClock}" drawable="alarmplus"/>
<!-- Alchemy -->
<item component="ComponentInfo{me.zed_0xff.android.alchemy/me.zed_0xff.android.alchemy.Main}" drawable="alchemy"/>
<!--Aldiko-->
<item component="ComponentInfo{com.android.aldiko/com.android.aldiko.ui.BookPickerActivity}" drawable="aldiko" />
<item component="ComponentInfo{com.android.aldiko/com.android.aldiko.reader.ReaderActivity}" drawable="aldiko" />
<item component="ComponentInfo{com.android.aldiko/com.android.aldiko.ui.ImportActivity}" drawable="aldiko" />
<item component="ComponentInfo{com.android.aldiko/com.android.aldiko.ui.AliasHomeScreen}" drawable="aldiko" />
<item component="ComponentInfo{com.android.aldiko/com.android.aldiko.ui.AliasImportActivity}" drawable="aldiko" />
<!-- All Recipes -->
<item component="ComponentInfo{com.allrecipes.spinner.free/com.allrecipes.spinner.free.activity.StartupActivity}" drawable="allrecipes"/>
<!-- Allshare Play -->
<item component="ComponentInfo{com.sec.android.allShareControl/com.sec.android.allShareControl.DeviceBrowserActivity}" drawable="allshareplay"/>
<item component="ComponentInfo{com.sec.pcw/com.sec.pcw.hybrid.CloudApp}" drawable="allshareplay"/>
<!-- aLogcat -->
<item component="ComponentInfo{org.jtb.alogcat/org.jtb.alogcat.LogActivity}" drawable="alogcat"/>
<!-- Amazing Alex -->
<item component="ComponentInfo{com.rovio.amazingalexHD/com.rovio.amazingalexHD.main}" drawable="amazingalex"/>
<item component="ComponentInfo{com.rovio.amazingalex.premium/com.rovio.amazingalex.AAActivity}" drawable="amazingalex"/>
<item component="ComponentInfo{com.rovio.amazingalex.trial/com.rovio.amazingalex.AAActivity}" drawable="amazingalex" />
<!-- Amazon -->
<item component="ComponentInfo{com.amazon.mShop.android/com.amazon.mShop.home.HomeActivity}" drawable="amazon"/>
<item component="ComponentInfo{de.amazon.mShop.android/com.amazon.mShop.android.home.HomeActivity}" drawable="amazon"/>
<item component="ComponentInfo{jp.amazon.mShop.android/com.amazon.mShop.android.AmazonActivity}" drawable="amazon"/>
<item component="ComponentInfo{cn.amazon.mShop.android/com.amazon.mShop.home.HomeActivity}" drawable="amazon"/>
<item component="ComponentInfo{uk.amazon.mShop.android/com.amazon.mShop.home.HomeActivity}" drawable="amazon"/>
<!-- Amazon App Store -->
<item component="ComponentInfo{com.amazon.venezia/com.amazon.venezia.Venezia}" drawable="amazonappstore"/>
<!-- Amazon MP3 -->
<item component="ComponentInfo{com.amazon.mp3/com.amazon.mp3.client.activity.LauncherActivity}" drawable="amazonmp3"/>
<!-- AmbiScience Pure Sleep -->
<item component="ComponentInfo{com.teslasoftware.android.ambiscience.puresleep/com.teslasoftware.android.ambiscience.puresleep.app.SplashScreen}" drawable="ambiescienceps"/>
<!-- Ambling Books -->
<item component="ComponentInfo{com.amblingbooks.bookplayerpro/com.amblingbooks.player.PlayControl}" drawable="amblingbooks"/>
<item component="ComponentInfo{com.amblingbooks.bookplayerlite/com.amblingbooks.player.PlayControl}" drawable="amblingbooks"/>
<!-- American Express -->
<item component="ComponentInfo{com.americanexpress.android.acctsvcs.us/com.americanexpress.activity.SplashActivity}" drawable="amex"/>
<!--Ancestry-->
<item component="ComponentInfo{com.ancestry.android.apps.ancestry/com.ancestry.android.apps.ancestry.WelcomeActivity}" drawable="ancestry"/>
<!-- Android Music -->
<item component="ComponentInfo{com.jrtstudio.music/com.android.music.MusicBrowserActivity}" drawable="androidmusic"/>
<!-- Andoid Pro Widgets -->
<item component="ComponentInfo{com.rdr.widgets.core/com.rdr.widgets.core.main.MainActivity}" drawable="androidprowidgets"/>
<!-- Android System Info -->
<!-- AndroZip -->
<item component="ComponentInfo{com.agilesoftresource/com.agilesoftresource.MainView}" drawable="androzip"/>
<item component="ComponentInfo{com.asrazpaid/com.asrazpaid.MainView}" drawable="androzip"/>
<!-- Angry Birds_Angry Birds Seasons_Angry Birds Space -->
<item component="ComponentInfo{com.rovio.angrybirds/com.rovio.angrybirds.ApplanetActivity}" drawable="angrybirds" />
<item component="ComponentInfo{com.rovio.angrybirds/com.rovio.ka3d.App}" drawable="angrybirds" />
<item component="ComponentInfo{com.rovio.angrybirdsseasons/com.rovio.fusion.App}" drawable="angrybirdsseasons"/>
<item component="ComponentInfo{com.rovio.angrybirdsspace.premium/com.rovio.ka3d.App}" drawable="angrybirdsspace" />
<item component="ComponentInfo{com.rovio.angrybirdsspace.premium/com.rovio.fusion.App}" drawable="angrybirdsspace" />
<item component="ComponentInfo{com.rovio.angrybirdsspace/com.rovio.ka3d.App}" drawable="angrybirdsspace"/>
<item component="ComponentInfo{com.rovio.angrybirdsspace.ads/com.rovio.fusion.App}" drawable="angrybirdsspace"/>
<item component="ComponentInfo{com.rovio.angrybirdsrio/com.rovio.ka3d.App}" drawable="angrybirdsrio"/>
<item component="ComponentInfo{com.rovio.angrybirdsrio/com.rovio.fusion.App}" drawable="angrybirdsrio"/>
<item component="ComponentInfo{com.rovio.angrybirdsstarwars.ads.iap/com.rovio.fusion.App}" drawable="angrybirdsstarwars"/>
<item component="ComponentInfo{com.rovio.angrybirds/com.rovio.fusion.App}" drawable="angrybirds"/>
<!-- Anomaly -->
<item component="ComponentInfo{com.elevenbitstudios.AnomalyWarzoneEarthHD/com.android.Game11Bits.MainActivity}" drawable="anomaly"/>
<!-- Antutu -->
<item component="ComponentInfo{com.antutu.ABenchMark/com.antutu.ABenchMark.ABenchMarkStart}" drawable="antutu"/>
<!-- Any Balance -->
<item component="ComponentInfo{com.dukei.android.apps.anybalance/com.dukei.android.apps.anybalance.AnyBalanceActivity}" drawable="anybalance"/>
<!-- Any.DO -->
<item component="ComponentInfo{com.anydo/com.anydo.activity.Main}" drawable="anydo"/>
<!-- ANZ goMoney -->
<item component="ComponentInfo{nz.co.anz.android.mobilebanking/nz.co.anz.android.mobilebanking.ui.LoginActivity}" drawable="anzgomoney"/>
<!-- Appalachian State -->
<item component="ComponentInfo{com.neulion.android.collegesports.asu.free/com.neulion.android.collegesports.activity.components.SplashActivity}" drawable="appalachianstate"/>
<!-- AOKP -->
<item component="ComponentInfo{com.aokp.ota/com.aokp.ota.main}" drawable="aokp"/>
<!-- AOKP Animation -->
<item component="ComponentInfo{com.aokp.animation.manager/com.aokp.animation.main}" drawable="aokpanimation"/>
<!-- Apex -->
<item component="ComponentInfo{com.anddoes.launcher/com.anddoes.launcher.Launcher}" drawable="apex"/>
<item component="ComponentInfo{com.anddoes.launcher.pro/com.anddoes.launcher.pro.ApexLauncherProActivity}" drawable="apex"/>
<!-- Apollo -->
<item component="ComponentInfo{com.andrew.apollo.play/com.andrew.apollo.ui.activities.HomeActivity}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.MusicLibrary}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.QueryBrowserActivity}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.AudioPlayerHolder}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.PlayExternal}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.TrackBrowser}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.activities.PlayListDialog}" drawable="apollo"/>
<item component="ComponentInfo{com.andrew.apollo/com.andrew.apollo.menu.PlayListPicker}" drawable="apollo"/>
<!-- App2SD -->
<item component="ComponentInfo{com.a0soft.gphone.app2sd/com.a0soft.gphone.app2sd.free.MainWnd}" drawable="app2sd"/>
<!-- Appaware -->
<item component="ComponentInfo{com.appaware/com.appaware.MainActivity}" drawable="appaware"/>
<!-- Apparatus -->
<item component="ComponentInfo{com.bithack.apparatuslite/com.bithack.apparatuslite.ApparatusApplication}" drawable="apparatus"/>
<item component="ComponentInfo{com.bithack.apparatus/com.bithack.apparatus.ApparatusApplication}" drawable="apparatus"/>
<!-- Appdrawer -->
<item component="ComponentInfo{JakedUp.AppDrawer/JakedUp.AppDrawer.Main}" drawable="apps"/>
<!-- AppMonster -->
<item component="ComponentInfo{de.android_telefonie.appmanager/de.android_telefonie.appmanager.MainActivity}" drawable="appmonster"/>
<item component="ComponentInfo{com.think_android.appmanagerpro/com.think_android.appmanagerpro.MainActivity}" drawable="appmonster"/>
<item component="ComponentInfo{com.think_android.appmanagerpro/com.think_android.appmanagerpro.AppMonsterPro}" drawable="appmonster"/>
<item component="ComponentInfo{de.android_telefonie.appmanager/de.android_telefonie.appmanager.AppMonsterFree}" drawable="appmonster"/>
<item component="ComponentInfo{com.think_android.appmanagerpro/com.think_android.appmanagerpro.AppManagerPro}" drawable="appmonster"/>
<item component="ComponentInfo{de.android_telefonie.appmanager/de.android_telefonie.appmanager.AppManager}" drawable="appmonster"/>
<!-- App Sales -->
<item component="ComponentInfo{net.tsapps.appsales/net.tsapps.appsales.MainActivity}" drawable="appssale"/>
<!-- Appzilla -->
<item component="ComponentInfo{com.fossil.appzilla/com.fossil.appzilla.AppZillaActivity}" drawable="appzilla"/>
<item component="ComponentInfo{com.fossil.appzillafree/com.fossil.appzillafree.AppZillaActivity}" drawable="appzilla"/>
<!-- Aptoide -->
<item component="ComponentInfo{cm.aptoide.pt/cm.aptoide.pt.start}" drawable="aptoide"/>
<!-- Aptoide Backups -->
<!-- Ashford University -->
<item component="ComponentInfo{edu.ashford.talon/edu.ashford.talon.EulaActivity}" drawable="ashford"/>
<!-- Astrid Tasks -->
<item component="ComponentInfo{com.timsu.astrid/com.todoroo.astrid.activity.TaskListActivity}" drawable="astrid"/>
<item component="ComponentInfo{com.timsu.astrid/com.todoroo.astrid.welcome.SplashScreenLauncher}" drawable="astrid"/>
<item component="ComponentInfo{com.timsu.astrid/com.todoroo.astrid.welcome.WelcomeScreen}" drawable="astrid"/>
<item component="ComponentInfo{com.timsu.astrid/com.todoroo.astrid.welcome.WelcomeLogin}" drawable="astrid"/>
<item component="ComponentInfo{com.timsu.astrid/com.timsu.astrid.activities.TaskList}" drawable="astrid"/>
<!-- Astro File Manager -->
<item component="ComponentInfo{com.metago.astro/com.metago.astro.SplashActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro/com.metago.astro.FileManagerActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro/com.metago.astro.MainActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro/com.metago.astro.tools.ProcessManagerLauncher}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro/com.metago.astro.tools.dirsize.DirSizeActivityLauncher}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro/com.metago.astro.tools.AppManagerLauncher}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.SplashActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.FileManagerActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.MainActivity}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.tools.ProcessManagerLauncher}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.tools.dirsize.DirSizeActivityLauncher}" drawable="astro"/>
<item component="ComponentInfo{com.metago.astro.pro/com.metago.astro.pro.tools.AppManagerLauncher}" drawable="astro"/>
<!-- Astro Bluetooth -->
<!-- ATT -->
<item component="ComponentInfo{com.att.myWireless/com.att.myWireless.activity.login.SplashScreenActivity}" drawable="att"/>
<!-- ATT Messages -->
<item component="ComponentInfo{com.att.android.mobile.attmessages/com.att.ui.screen.ConversationListScreen}" drawable="attmessages"/>
<!-- ATT Navigation -->
<item component="ComponentInfo{com.telenav.app.android.cingular/com.telenav.app.android.cingular.TeleNav}" drawable="attnav"/>
<!-- Audible -->
<item component="ComponentInfo{com.audible.application/com.audible.application.SplashScreen}" drawable="audible"/>
<!-- Audio Manager -->
<item component="ComponentInfo{com.smartandroidapps.audiowidget/com.smartandroidapps.audiowidget.MainActivity}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetpro.Console}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetlib.ActionBarTabsPager}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetlib.Console}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetlib.activities.MainActivity}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetpro.ActionBarTabsPager}" drawable="audiomanager"/>
<item component="ComponentInfo{com.smartandroidapps.audiowidgetpro/com.smartandroidapps.audiowidgetpro.MainActivity}" drawable="audiomanager"/>
<!-- Avast! Mobile Security -->
<item component="ComponentInfo{com.avast.android.mobilesecurity/com.avast.android.mobilesecurity.app.home.StartActivity}" drawable="avast"/>
<!-- AVG -->
<item component="ComponentInfo{com.antivirus/com.antivirus.ui.main.AntivirusMainScreen}" drawable="avg"/>
<!-- Avia Sales -->
<item component="ComponentInfo{ru.aviasales/ru.aviasales.ui.SplashActivity}" drawable="aviasales"/>
<!-- B -->
<!-- Babbel -->
<item component="ComponentInfo{com.babbel.mobile.android.en/com.babbel.mobile.android.SplashScreen}" drawable="babbelenglish"/>
<item component="ComponentInfo{com.babbel.mobile.android.fr/com.babbel.mobile.android.SplashScreen}" drawable="babbelfrench"/>
<item component="ComponentInfo{com.babbel.mobile.android.sv/com.babbel.mobile.android.SplashScreen}" drawable="babbelswedish"/>
<item component="ComponentInfo{com.babbel.mobile.android.tr/com.babbel.mobile.android.SplashScreen}" drawable="babbelturkish"/>
<item component="ComponentInfo{com.babbel.mobile.android.pt/com.babbel.mobile.android.SplashScreen}" drawable="babbelportuguese"/>
<item component="ComponentInfo{com.babbel.mobile.android.es/com.babbel.mobile.android.SplashScreen}" drawable="babbelspanish"/>
<item component="ComponentInfo{com.babbel.mobile.android.pl/com.babbel.mobile.android.SplashScreen}" drawable="babbelpolish"/>
<item component="ComponentInfo{com.babbel.mobile.android.de/com.babbel.mobile.android.SplashScreen}" drawable="babbelgerman"/>
<item component="ComponentInfo{com.babbel.mobile.android.it/com.babbel.mobile.android.SplashScreen}" drawable="babbelitalian"/>
<item component="ComponentInfo{com.babbel.mobile.android.id/com.babbel.mobile.android.SplashScreen}" drawable="babbelindonesian"/>
<item component="ComponentInfo{com.babbel.mobile.android.nl/com.babbel.mobile.android.SplashScreen}" drawable="babbeldutch"/>
<!--Backgammon Free -->
<item component="ComponentInfo{uk.co.aifactory.backgammonfree/uk.co.aifactory.backgammonfree.BackgammonFreeActivity}" drawable="backgammon"/>
<!-- Backgrounds HD -->
<item component="ComponentInfo{com.stylem.wallpapers/com.stylem.wallpapers.Main}" drawable="backgroundshd"/>
<!-- Bacon Reader -->
<item component="ComponentInfo{com.onelouder.baconreader/com.onelouder.baconreader.FrontPage}" drawable="baconreader"/>
<item component="ComponentInfo{com.onelouder.baconreader.premium/com.onelouder.baconreader.FrontPage}" drawable="baconreader"/>
<!-- Bad Piggies -->
<item component="ComponentInfo{com.rovio.BadPiggies/com.rovio.BadPiggies.PluginManager}" drawable ="badpiggies"/>
<item component="ComponentInfo{com.rovio.BadPiggiesHD/com.rovio.BadPiggies.PluginManager}" drawable="badpiggies"/>
<!-- Bald Booth -->
<item component="ComponentInfo{com.piviandco.baldbooth/com.piviandco.app.activities.mHomeActivity}" drawable="baldbooth"/>
<!-- Bank of America -->
<item component="ComponentInfo{com.tablet.bofa/com.tablet.bofa.StartupFragmentLayout}" drawable="bankofamerica" />
<item component="ComponentInfo{com.infonow.bofa/com.infonow.bofa.StartupActivity}" drawable="bankofamerica" />
<!-- Barcode Scanner -->
<item component="ComponentInfo{com.google.zxing.client.android/com.google.zxing.client.android.CaptureActivity}" drawable="barcodescanner"/>
<!-- Baseball -->
<item component="ComponentInfo{com.com2us.nipb2013.normal.freefull.google.global.android.common/com.com2us.nipb2013.normal.freefull.google.global.android.common.MainActivity}" drawable="baseball"/>
<!-- Basketball Mania-->
<item component="ComponentInfo{com.virgil.basketball/com.virgil.basketball.BasketBallActivity}" drawable="basketball"/>
<!-- Battery Calibration -->
<item component="ComponentInfo{com.nema.batterycalibration/com.nema.batterycalibration.myMain}" drawable="batterycalibration"/>
<!-- Battery Doctor -->
<item component="ComponentInfo{net.lepeng.batterydoctor/net.lepeng.batterydoctor.MainSettingsActivity}" drawable="batterydoctor"/>
<!-- Battery Doctor (Battery Saver) -->
<item component="ComponentInfo{com.ijinshan.kbatterydoctor_en/com.ijinshan.kbatterydoctor.SplashActivity}" drawable="batterydoctor"/>
<!-- Battery Stats Plus -->
<item component="ComponentInfo{com.rootuninstaller.bstats/com.rootunistaller.bstats.BattrStatActivity}" drawable="batterystatsplus"/>
<!-- Battery Widget -->
<item component="ComponentInfo{net.hubalek.android.reborn.beta/net.hubalek.android.apps.reborn.beta.activities.MainActivityBeta}" drawable="batterywidget"/>
<!-- Battlenet -->
<item component="ComponentInfo{com.blizzard.bma/com.blizzard.bma.SplashActivity}" drawable="battlenet"/>
<!-- BBC iPlayer -->
<item component="ComponentInfo{bbc.iplayer.android/bbc.iplayer.android.MainActivity}" drawable="bbciplayer"/>
<!-- BBC Media Player -->
<item component="ComponentInfo{air.uk.co.bbc.android.mediaplayer/air.uk.co.bbc.android.mediaplayer.AppEntry}" drawable="bbc"/>
<!-- BBC News -->
<item component="ComponentInfo{bbc.mobile.news.ww/bbc.mobile.news.ww.HomeWwActivity}" drawable="bbc"/>
<item component="ComponentInfo{bbc.mobile.news.uk/bbc.mobile.news.uk.HomeUkActivity}" drawable="bbc"/>
<!-- Beach Buggy Blitz -->
<item component="ComponentInfo{com.vectorunit.yellow/com.vectorunit.yellow.Yellow}" drawable="beachbuggy"/>
<!-- Beautiful Widget -->
<item component="ComponentInfo{com.levelup.beautifulwidgets/com.levelup.beautifulwidgets.BeautifulLauncher}" drawable="beautifulwidgets"/>
<item component="ComponentInfo{com.levelup.beautifulwidgets/com.levelup.beautifulwidgets.DefaultActivity}" drawable="beautifulwidgets"/>
<!-- Bebo -->
<item component="ComponentInfo{com.bebo.launcher.com/bebo.launcher.com.webkat}" drawable="bebo"/>
<item component="ComponentInfo{com.hutchison3g.bebo/com.hutchison3g.bebo.BeboActivity}" drawable="bebo"/>
<!-- BetterBatteryStats -->
<item component="ComponentInfo{com.asksven.betterbatterystats/com.asksven.betterbatterystats.StatsActivity}" drawable="betterbattery"/>
<!-- Better Keyboard -->
<!-- Beweather -->
<item component="ComponentInfo{com.bellshare.beweatherfree/com.bellshare.beweather.MainActivity}" drawable="beweather"/>
<item component="ComponentInfo{com.bellshare.beweather/com.bellshare.beweather.MainActivity}" drawable="beweather"/>
<!-- Beyondpod -->
<item component="ComponentInfo{mobi.beyondpod/mobi.beyondpod.ui.views.Splash}" drawable="beyondpod" />
<!-- Bible -->
<item component="ComponentInfo{com.sirma.mobile.bible.android/com.youversion.mobile.android.screens.activities.LoadingActivity}" drawable="bible"/>
<!-- Big news -->
<item component="ComponentInfo{com.reindeercrafts.bignews/com.reindeercrafts.bignews.MainActivity}" drawable="bignews" />
<!-- Big Win Football -->
<item component="ComponentInfo{com.hotheadgames.google.free.bigwinfootball/com.hotheadgames.android.horque.HorqueActivity}" drawable="yahoofootball2"/>
<!-- Blackmart Alpha -->
<item component="ComponentInfo{org.blackmart.market/org.blackmart.market.MainScreen}" drawable="blackmart"/>
<!-- Blind Ninja -->
<item component="ComponentInfo{com.EggBones.BlindNinjaLite/com.EggBones.BlindNinjaLite.MainActivity}" drawable="blindninja"/>
<item component="ComponentInfo{com.EggBones.BlindNinja/com.EggBones.BlindNinja.MainActivity}" drawable="blindninja"/>
<!-- Blogger -->
<item component="ComponentInfo{com.google.android.apps.blogger/com.google.android.apps.blogger.TosActivity}" drawable="blogger" />
<!-- Bluetooth GPS -->
<item component="ComponentInfo{googoo.android.btgps/googoo.android.btgps.BluetoothGPSActivity}" drawable="bluetooth"/>
<!-- Bluetooth File Transfer -->
<item component="ComponentInfo{it.medieval.blueftp/it.medieval.blueftp.AMain}" drawable="bluetoothfile"/>
<!-- Boat Browser -->
<item component="ComponentInfo{com.boatbrowser.free/com.boatbrowser.free.BrowserActivity}" drawable="boatbrowser"/>
<!-- Bonjour a Tous -->
<!-- Bonjour Madame -->
<!-- Booking -->
<item component="ComponentInfo{com.booking/com.booking.activity.SplashActivity}" drawable="bookingcom"/>
<!-- Box -->
<item component="ComponentInfo{com.box.android/com.box.android.activities.phone.MainPhone}" drawable="box"/>
<item component="ComponentInfo{com.box.android/com.box.android.activities.tablet.MainTablet}" drawable="box"/>
<item component="ComponentInfo{com.box.android/com.box.android.activities.phone.MainFromWidgetPhone}" drawable="box"/>
<item component="ComponentInfo{com.box.android/com.box.android.widget.FileActionsDialogActivity}" drawable="box"/>
<item component="ComponentInfo{com.box.android/com.box.android.widget.FolderActionsDialogActivity}" drawable="box"/>
<item component="ComponentInfo{com.box.android/com.box.android.activities.SplashScreenActivity}" drawable="box"/>
<!-- Brightest Flashlight -->
<item component="ComponentInfo{goldenshorestechnologies.brightestflashlight.free/goldenshorestechnologies.brightestflashlight.free.BrightestFlashlightMain}" drawable="brightestflash"/>
<!-- Broken Sword -->
<item component="ComponentInfo{uk.co.revolution.bs1dc/uk.co.revolution.bs1dc.BS1DCLaunchActivity}" drawable="brokensword"/>
<!-- Browser -->
<item component="ComponentInfo{com.android.browser/com.android.browser.BrowserActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.BrowserLauncher}" drawable="browser" />
<item component="ComponentInfo{com.google.android.browser/com.android.browser.BrowserActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.ui.BrowserActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.WoActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.WoHallActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.Browser9130MainView}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.MonternetLauncherActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.BrowserDownloadPage}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.motorola.android.browser.ChinaMobileActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.CombinedBookmarkHistoryActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.BaiduShortcutActivity}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.yulong.android.browser.BrowserStartPage}" drawable="browser" />
<item component="ComponentInfo{com.android.browser/com.android.browser.LoginBrowserActivity}" drawable="browser" />
<!-- Bubble Worlds -->
<item component="ComponentInfo{com.hapogames.BubbleParadise/com.hapogames.BubbleParadise.main}" drawable="bubbleworlds"/>
<!-- Buddy painting -->
<!-- Busy Box -->
<item component="ComponentInfo{stericson.busybox/stericson.busybox.Activity.MainActivity}" drawable="busybox"/>
<item component="ComponentInfo{stericson.busybox.donate/stericson.busybox.donate.Activity.MainActivity}" drawable="busybox"/>
<!-- Busy Box Installer -->
<item component="ComponentInfo{com.jrummy.busybox.installer/com.jrummy.busybox.installer.BusyboxActivity}" drawable="busyboxinstaller"/>
<item component="ComponentInfo{com.jrummy.busybox.installer.pro/com.jrummy.busybox.installer.pro.MainActivity}" drawable="busyboxinstaller"/>
<!-- Bump -->
<item component="ComponentInfo{com.bumptech.bumpga/com.bump.app.HomeActivity}" drawable="bump" />
<!-- C -->
<!-- Calculations -->
<item component="ComponentInfo{com.whitegorilla.calculations/com.whitegorilla.calculations.MainActivity}" drawable="calculations"/>
<item component="ComponentInfo{com.apextechnology.calculations/com.apextechnology.calculations.CalculatorActivity}" drawable="calculations"/>
<item component="ComponentInfo{com.apextechnology.calculations/com.apextechnology.calculations.MainActivity}" drawable="calculations"/>
<!-- Calculator -->
<item component="ComponentInfo{com.android.calculator2/com.android.calculator2.Calculator}" drawable="calculator"/>
<item component="ComponentInfo{com.sec.android.app.calculator/com.sec.android.app.calculator.Calculator}" drawable="calculator"/>
<item component="ComponentInfo{com.sec.android.app.popupcalculator/com.sec.android.app.popupcalculator.Calculator}" drawable="calculator"/>
<!-- Calendar -->
<item component="ComponentInfo{com.android.calendar/com.android.calendar.LaunchActivity}" drawable="calendar" />
<item component="ComponentInfo{com.android.calendar/com.android.calendar.AllInOneActivity}" drawable="calendar" />
<item component="ComponentInfo{com.google.android.calendar/com.android.calendar.AllInOneActivity}" drawable="calendar" />
<item component="ComponentInfo{com.android.calendar/com.android.calendar.CalendarTabActivity}" drawable="calendar" />
<item component="ComponentInfo{com.android.calendar/com.android.calendar.MonthActivity}" drawable="calendar" />
<item component="ComponentInfo{com.android.calendar/com.android.calendar.AgendaActivity}" drawable="calendar" />
<item component="ComponentInfo{com.android.calendar/com.android.calendar.EventInfoActivity}" drawable="calendar"/>
<item component="ComponentInfo{com.android.calendar/com.android.calendar.EditEventActivity}" drawable="calendar"/>
<item component="ComponentInfo{com.htc.calendar/com.htc.calendar.MonthActivity}" drawable="calendar"/>
<item component="ComponentInfo{com.htc.calendar/com.htc.calendar.LaunchActivity}" drawable="calendar"/>
<item component="ComponentInfo{com.htc.calendar/com.htc.calendar.CalendarActivityMain}" drawable="calendar"/>
<item component="ComponentInfo{com.google.android.calendar/com.android.calendar.LaunchActivity}" drawable="calendar"/>
<item component="ComponentInfo{com.google.android.calendar/com.android.calendar.HtcCalendarProvider}" drawable="calendar"/>
<item component="ComponentInfo{com.android.calendar/com.android.calendar.timeline.EventListWithStartTime}" drawable="calendar"/>
<item component="ComponentInfo{com.android.calendar/com.android.calendar.ChooserActivity}" drawable="calendar"/>
<!-- Call Informer -->
<item component="ComponentInfo{com.jestasfunhouse.callinformer.demo/com.jestasfunhouse.callinformer.library.CallInformerPrefs}" drawable="callinformer"/>
<item component="ComponentInfo{com.jestasfunhouse.callinformer/com.jestasfunhouse.callinformer.library.CallInformerPrefs}" drawable="callinformer"/>
<!-- Call Logs Backup and Restore -->
<item component="ComponentInfo{com.riteshsahu.CallLogBackupRestore/com.riteshsahu.CallLogBackupRestore.FreeMainActivity}" drawable="calllogs"/>
<!-- Call Stats -->
<item component="ComponentInfo{com.movinapp.calls/com.movinapp.calls.Main}" drawable="callstats"/>
<!-- Camcorder -->
<item component="ComponentInfo{com.android.camera/com.android.camera.CamcorderEntry}" drawable="camcorder"/>
<item component="ComponentInfo{com.android.camera/com.android.camera.VideoCamera}" drawable="camcorder"/>
<!-- Camera -->
<item component="ComponentInfo{com.motorola.camera/com.motorola.camera.Camera}" drawable="camera"/>
<item component="ComponentInfo{com.android.camera/com.android.camera.CameraEntry}" drawable="camera"/>
<item component="ComponentInfo{com.android.gallery3d/com.android.camera.CameraLauncher}" drawable="camera"/>
<item component="ComponentInfo{com.sec.android.app.camera/com.sec.android.app.camera.Camera}" drawable="camera"/>
<item component="ComponentInfo{com.google.android.camera/com.android.camera.Camera}" drawable="camera"/>
<item component="ComponentInfo{com.android.camera/com.android.camera.Camera}" drawable="camera"/>
<item component="ComponentInfo{com.sonyericsson.android.camera/com.sonyericsson.android.camera.CameraActivity}" drawable="camera"/>
<item component="ComponentInfo{com.google.android.gallery3d/com.android.camera.CameraLauncher}" drawable="camera"/>
<!-- Camera360 -->
<item component="ComponentInfo{vStudio.Android.Camera360Memento/vStudio.Android.Camera360Memento.GPhotoMain}" drawable="camera360"/>
<item component="ComponentInfo{vStudio.Android.Camera360/vStudio.Android.Camera360.GPhotoMain}" drawable="camera360"/>
<!-- Camera Pro -->
<item component="ComponentInfo{com.tequnique.camerax/com.tequnique.camerax.CameraProActivity}" drawable="camerapro"/>
<!-- Camerazoom FX -->
<item component="ComponentInfo{slide.cameraZoom/slide.cameraZoom.CameraZoomActivity}" drawable="camerazoomfx"/>
<!-- Camscanner -->
<item component="ComponentInfo{com.intsig.camscanner/com.intsig.camscanner.MainMenuActivity}" drawable="camscanner"/>
<item component="ComponentInfo{com.intsig.lic.camscanner/com.intsig.lic.camscanner.CamScannerLicense}" drawable="camscanner"/>
<item component="ComponentInfo{com.intsig.camscanner/com.intsig.camscanner.WelcomeActivity}" drawable="camscanner"/>
<item component="ComponentInfo{com.intsig.camscannerhd/com.intsig.camscannerhd.MainMenuActivity}" drawable="camscanner"/>
<item component="ComponentInfo{com.intsig.lic.camscannerhd/com.intsig.camscannerhd.license.CamScannerLicense}" drawable="camscanner"/>
<item component="ComponentInfo{com.intsig.camscannerhd/com.intsig.camscannerhd.PadMainMenuActivity}" drawable="camscanner"/>
<!-- Can Knockdown 2-->
<item component="ComponentInfo{pl.idreams.CanKnockdown2/pl.idreams.CanKnockdown2.CanKnockdown2Activity}" drawable="canknockdown2"/>
<!-- Capital One -->
<item component="ComponentInfo{com.konylabs.capitalone/com.konylabs.capitalone.EnterpriseMobileBanking}" drawable="capitalone"/>
<!-- Carbon -->
<item component="ComponentInfo{com.koushikdutta.backup/com.koushikdutta.backup.MainActivity}" drawable="carbon" />
<item component="ComponentInfo{com.koushikdutta.backup/com.dropbox.client2.android.AuthActivity}" drawable="carbon" />
<!-- Car Home -->
<item component="ComponentInfo{com.google.android.carhome/com.google.android.carhome.CarHome}" drawable="carhome"/>
<!-- Carmax -->
<item component="ComponentInfo{air.com.carmax.android/air.com.carmax.android.appentry}" drawable="carmax"/>
<!-- Catch -->
<item component="ComponentInfo{com.threebanana.notes/com.threebanana.notes.Notes}" drawable="catchnotes"/>
<!-- Caynax A6W -->
<item component="ComponentInfo{com.caynax.a6w/com.caynax.a6w.free.l}" drawable="caynaxa6w"/>
<!-- CDMA Tools -->
<item component="ComponentInfo{org.teameos.settings.device/org.teameos.settings.device.DeviceSettings}" drawable="sprinttools"/>
<!-- Cerberus -->
<item component="ComponentInfo{com.lsdroid.cerberus/com.lsdroid.cerberus.StartActivity}" drawable="cerberus"/>
<!-- Chaos Rings -->
<item component="ComponentInfo{com.square_enix.chaosrings.googleplay/com.square_enix.chaosrings.googleplay.AuthActivity}" drawable="chaosrings"/>
<item component="ComponentInfo{com.square_enix.chaosrings/com.square_enix.chaosrings.SqmkLoginActivity}" drawable="chaosrings"/>
<!-- Chase -->
<item component="ComponentInfo{com.chase.sig.android/com.chase.sig.android.activity.HomeActivity}" drawable="chase"/>
<!-- Chaton -->
<item component="ComponentInfo{com.sec.chaton/com.sec.chaton.HomeActivity}" drawable="chaton"/>
<!-- Cheezburger -->
<item component="ComponentInfo{com.cheezburger.icanhas/com.cheezburger.icanhas.activities.SiteGridActivity}" drawable="cheezburger"/>
<!-- Chess For Android -->
<item component="ComponentInfo{com.google.android.chess/com.google.android.chess.Chess}" drawable="chess"/>
<!-- Chess Free -->
<item component="ComponentInfo{uk.co.aifactory.chessfree/uk.co.aifactory.chessfree.ChessFreeActivity}" drawable="chess"/>
<!-- Chess Live -->
<item component="ComponentInfo{com.leagem.chesslive/com.leagem.chesslive.ActivityNewChessMain}" drawable="chess2"/>
<!--Chomp SMS-->
<item component="ComponentInfo{com.p1.chompsms/com.p1.chompsms.activities.MainActivity}" drawable="chompsms" />
<!-- Chrome -->
<item component="ComponentInfo{com.android.chrome/com.google.android.apps.chrome.Main}" drawable="chrome"/>
<item component="ComponentInfo{com.android.chrome/com.android.chrome.Main}" drawable="chrome"/>
<!-- Chrome to Phone -->
<item component="ComponentInfo{com.google.android.apps.chrometophone/com.google.android.apps.chrometophone.HistoryActivity}" drawable="chrometophone"/>
<!-- City Guide -->
<item component="ComponentInfo{cityguide.probki.net/cityguide.probki.net.CityGuide}" drawable="cityguide"/>
<item component="ComponentInfo{cityguide.probki.net.lk/cityguide.probki.net.CityGuide}" drawable="cityguide"/>
<item component="ComponentInfo{cityguide.probki.net.pe/cityguide.probki.net.CityGuide}" drawable="cityguide"/>
<!-- Clear Vision -->
<item component="ComponentInfo{air.clearvision12plus/air.clearvision12plus.AppEntry}" drawable="clearvision"/>
<item component="ComponentInfo{air.clearvision17plus/air.clearvision17plus.AppEntry}" drawable="clearvision"/>
<!-- Clock -->
<item component="ComponentInfo{com.android.alarmclock/com.android.alarmclock.AlarmClock}" drawable="clock1"/>
<item component="ComponentInfo{com.htc.android.worldclock/com.htc.android.worldclock.WorldClockTabControl}" drawable="clock1"/>
<item component="ComponentInfo{com.sec.android.app.clockpackage/com.sec.android.app.clockpackage.ClockPackage}" drawable="clock1"/>
<item component="ComponentInfo{com.google.android.deskclock/com.android.deskclock.DeskClock}" drawable="clock1"/>
<item component="ComponentInfo{com.android.deskclock/com.android.deskclock.DeskClock}" drawable="clock1"/>
<item component="ComponentInfo{com.motorola.blur/com.motorola.blur.alarmclock.AlarmClock}" drawable="clock1"/>
<!-- Clock Sync -->
<item component="ComponentInfo{ru.org.amip.ClockSync/ru.org.amip.ClockSync.view.Main}" drawable="clocksync"/>
<!-- CNN -->
<item component="ComponentInfo{com.cnn.mobile.android.phone/com.cnn.mobile.android.phone.HeadlineActivity}" drawable="cnn"/>
<!-- COD Elite -->
<item component="ComponentInfo{com.activision.elite/com.activision.elite.login.LoginActivity_}" drawable="codelite"/>
<!-- Coin Dozer -->
<item component="ComponentInfo{com.leftover.CoinDozer/com.unity3d.player.UnityPlayerActivity}" drawable="coindozer"/>
<!-- Colors -->
<item component="ComponentInfo{com.citc.colors/com.citc.colors.activities.ColorsActivity}" drawable="colors"/>
<!-- Color Note -->
<item component="ComponentInfo{com.socialnmobile.dictapps.notepad.color.note/com.socialnmobile.colornote.activity.NoteList}" drawable="colornote"/>
<item component="ComponentInfo{com.socialnmobile.dictapps.notepad.color.note/com.socialnmobile.colornote.activity.Main}" drawable="colornote"/>
<!-- Compass -->
<item component="ComponentInfo{com.apksoftware.compass/com.apksoftware.compass.Compass}" drawable="compass"/>
<!-- ConTacTs -->
<item component="ComponentInfo{com.brainworks.contacts/com.brainworks.contacts.ui.Main}" drawable="phonebook"/>
<!-- Contacts -->
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsContactsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.activities.TwelveKeyDialer}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.sec.android.app.contacts.DialerEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.sec.android.app.contacts.ContactsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.sec.android.app.contacts.PhoneBookTopMenuActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.activities.PeopleActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsCallLogEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.activities.ContactsFrontDoor}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.sec.android.app.contacts.PhoneBookSplitTopMenuActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.PhoneContactsActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.activities.ContactTabBrowserActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsRecentCallsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.sec.android.app.contacts.RecntcallEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.PhoneDialtactsActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.RecentCallsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.activities.PhoneFrontDoor}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsPhoneEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.tmo.LaunchCommunityActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.BbDialtactsMainFrameActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactsActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactsListActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.SmartDialerActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactHostActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsRecentEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsCallListEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsRecentCallEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.CallLogShortcut}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsDialerEntryActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialtactsCallsEntryActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.CallLog}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactsMainFromHomeActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.DialerActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.RecentCallLogLaunchActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.dialer.DialerPhoneActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.TransparentActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.SmartDialerListActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.BaiJiaXingActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.SmartDailerActivity}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactsListActivityLauncher}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.ContactsListActivityEx}" drawable="contacts" />
<item component="ComponentInfo{com.android.contacts/com.android.contacts.TwelveKeyDialer}" drawable="phone" />
<item component="ComponentInfo{com.motorola.blur/com.motorola.blur.ViewIdentitiesFacetActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.htccontacts/com.android.htccontacts.ContactsTabActivity}" drawable="phone" />
<item component="ComponentInfo{com.android.htccontacts/com.android.htccontacts.ContactsSearch}" drawable="phone" />
<item component="ComponentInfo{com.android.htccontacts/com.android.htccontacts.BrowseLayerCarouselActivity}" drawable="contacts4"/>
<!-- Contre Jour -->
<item component="ComponentInfo{com.chillingo.contrejour.android.rowgplay/contrejour.android.ContreJourGameActivity}" drawable="contre"/>
<!-- Convertor Pro -->
<item component="ComponentInfo{name.udell.convertor/name.udell.convertor.ProConvertActivity}" drawable="convertorpro"/>
<!-- Convertpad -->
<item component="ComponentInfo{com.mathpad.mobile.android.wt.unit/com.mathpad.mobile.android.wt.unit.UnitActivity}" drawable="convertpad"/>
<item component="ComponentInfo{com.convertpad.mobile.android.wt.unit/com.convertpad.mobile.android.wt.unit.UnitActivity}" drawable="convertpad"/>
<!-- Convertr -->
<item component="ComponentInfo{com.vervv.convertr/com.vervv.convertr.activity.Main}" drawable="convertr"/>
<!-- Cool Tool -->
<item component="ComponentInfo{ds.cpuoverlay/ds.cpuoverlay.MagicCPUActivity}" drawable="cooltool"/>
<!-- Cordy -->
<item component="ComponentInfo{com.silvertree.cordy/com.unity3d.player.UnityPlayerActivity}" drawable="cordy"/>
<!-- CPUspy -->
<item component="ComponentInfo{com.bvalosek.cpuspy/com.bvalosek.cpuspy.ui.HomeActivity}" drawable="cpuspy" />
<!-- Craigslist -->
<item component="ComponentInfo{com.duduapps.craigslistfree/com.duduapps.craigslist.CraigslistStartup}" drawable="craigslist" />
<!-- Critical Strike Portable -->
<item component="ComponentInfo{com.studioonmars.csportable/com.unity3d.player.unityplayerproxyactivity}" drawable="criticalstrike" />
<!-- Cures A-Z -->
<item component="ComponentInfo{com.cures.naturalcures/com.cures.naturalcures.NaturalCuresActivity}" drawable="cures" />
<!-- Currents -->
<item component="ComponentInfo{com.google.android.apps.currents/com.google.apps.dots.android.app.activity.CurrentsStartActivity}" drawable="googlecurrents"/>
<!-- Cut The Rope-->
<item component="ComponentInfo{com.zeptolab.ctr.paid/com.zeptolab.ctr.paid.CtrAppPaid}" drawable="cuttherope" />
<item component="ComponentInfo{com.zeptolab.ctrexperiments.google.paid/com.zeptolab.ctrexperiments.google.paid.main}" drawable="cuttherope" />
<item component="ComponentInfo{com.zeptolab.ctr.lite.google/com.zeptolab.ctr.CtrApp}" drawable="cuttherope" />
<item component="ComponentInfo{com.zeptolab.ctr.paid/com.zeptolab.ctr.paid.Applanet_2}" drawable="cuttherope" />
<item component="ComponentInfo{com.zeptolab.ctr.paid/com.zeptolab.ctr.paid.CuttheRopeActivity}" drawable="cuttherope" />
<!-- D -->
<!-- Dark Summoner -->
<item component="ComponentInfo{com.darksummoner/com.darksummoner.activity.MainActivity}" drawable="darksummoner" />
<!-- Daroon -->
<item component="ComponentInfo{com.daroonplayer.dsplayer/com.daroonplayer.dsplayer.HomeActivity}" drawable="daroon" />
<!-- DB Navigator -->
<item component="ComponentInfo{de.hafas.android.db/de.hafas.j2me.Hafas}" drawable="dbnavigator"/>
<!-- Dcikonz -->
<item component="ComponentInfo{com.czarnomorski.theme.dcikonz/com.czarnomorski.theme.dcikonz.MainActivity}" drawable="dcikonz" />
<!-- Dead Space -->
<item component="ComponentInfo{com.ea.deadspace_row/com.ea.deadspace_row.DeadSpaceActivity}" drawable="deadspace"/>
<!-- Dead Trigger -->
<item component="ComponentInfo{com.madfingergames.deadtrigger/com.unity3d.player.UnityPlayerProxyActivity}" drawable="deadtrigger"/>
<!-- Defense Zone Two -->
<item component="ComponentInfo{net.defensezone2/com.unity3d.player.UnityPlayerProxyActivity}" drawable="defensezone2"/>
<!-- Defense Zone Two -->
<item component="ComponentInfo{net.defensezone2/com.unity3d.player.UnityPlayerProxyActivity}" drawable="defensezone2"/>
<item component="ComponentInfo{net.defensezone2.lite/com.unity3d.player.UnityPlayerProxyActivity}" drawable="defensezone2"/>
<!-- Desktop VisualizeR -->
<item component="ComponentInfo{jp.co.bii.android.app.dskvzr/jp.co.bii.android.app.dskvzr.DesktopVisualizerActivity}" drawable="desktopvisualizer"/>
<!-- Deviantart -->
<item component="ComponentInfo{com.deviantart/com.deviantart.BannerEssentials}" drawable="deviantart"/>
<item component="ComponentInfo{com.webviewer.deviantart/com.webviewer.deviantart.SplashScreen}" drawable="deviantart"/>
<!-- Device Help -->
<item component="ComponentInfo{com.sec.android.devicehelp/com.sec.android.devicehelp.DeviceHelp}" drawable="devicehelp"/>
<!-- Device Frame Generator -->
<item component="ComponentInfo{com.psrivastava.deviceframegenerator/com.psrivastava.deviceframegenerator.MainActivity}" drawable="deviceframe"/>
<!-- Dev Tools -->
<item component="ComponentInfo{com.android.development/com.android.development.Development}" drawable="devtools"/>
<!-- Dice Player -->
<item component="ComponentInfo{com.inisoft.mediaplayer.a/com.inisoft.mediaplayer.a.SplashActivity}" drawable="diceplayer"/>
<item component="ComponentInfo{com.inisoft.mediaplayer.a/com.inisoft.mediaplayer.mediapathactivity}" drawable="diceplayer"/>
<item component="ComponentInfo{com.inisoft.mediaplayer.a/com.inisoft.mediaplayer.commonlistactivity}" drawable="diceplayer"/>
<!-- Dict.cc -->
<item component="ComponentInfo{cc.dict.dictcc/cc.dict.dictcc.DictCcActivity}" drawable="dict" />
<!-- Dictionary -->
<item component="ComponentInfo{com.dictionary/com.dictionary.Splash}" drawable="dictionary"/>
<!-- Digg -->
<item component="ComponentInfo{com.synerzip.android.digg/com.synerzip.android.digg.CategoriesList}" drawable="digg"/>
<!-- Digical -->
<item component="ComponentInfo{com.digibites.calendar/com.digibites.calendar.WeekAgendaActivity}" drawable="digical"/>
<!-- Discount Calculator -->
<item component="ComponentInfo{com.mobilelive.percentage/com.mobilelive.percentage.PercentageActivity}" drawable="discount" />
<!--Discover Card-->
<item component="ComponentInfo{com.discoverfinancial.mobile/com.discoverfinancial.mobile.DiscoverMobileActivity}" drawable="discover" />
<!-- Documents to go -->
<item component="ComponentInfo{com.dataviz.docstogo/com.dataviz.dxtg.common.launcher.android.LauncherActivity}" drawable="docstogo"/>
<!-- Dolphin Browser-->
<item component="ComponentInfo{mobi.mgeek.TunnyBrowser/mobi.mgeek.TunnyBrowser.BrowserActivity}" drawable="dolphinbrowser"/>
<!-- Dolphin Jetpack -->
<item component="ComponentInfo{com.dolphin.browser.engine/com.dolphin.browser.engine.AboutActivity}" drawable="dolphinjetpack"/>
<!-- Doodle Jump Deluxe -->
<item component="ComponentInfo{com.realarcade.DOJ/com.realarcade.DOJ.MrGame}" drawable="doodlejump"/>
<!-- Doors 2013 -->
<item component="ComponentInfo{com.gipnetix.stages/com.gipnetix.stages.MainActivity}" drawable="doors2013"/>
<!-- Doubletwist Alarm -->
<item component="ComponentInfo{com.doubleTwist.alarmClock/com.doubleTwist.alarmClock.AlarmListActivity}" drawable="doubletwistalarm"/>
<item component="ComponentInfo{com.doubleTwist.androidPlayer/com.doubleTwist.androidPlayer.HomePagerActivity}" drawable="doubletwistmusic"/>
<!-- Downloads -->
<item component="ComponentInfo{com.android.providers.downloads.ui/com.android.providers.downloads.ui.DownloadList}" drawable="downloads"/>
<item component="ComponentInfo{com.android.providers.downloads.ui/com.android.providers.downloads.ui.DownloadsListTab}" drawable="downloads" />
<item component="ComponentInfo{com.android.providers.downloads.ui/com.android.providers.downloads.ui.DownloadTabActivity}" drawable="downloads" />
<item component="ComponentInfo{com.cellmania.android.storefront.webview.vmu/com.cellmania.android.storefront.webview.vmu.CM_WebView_StorefrontActivity}" drawable="downloads"/>
<!-- Downtown -->
<item component="ComponentInfo{com.archetyping.downtown/com.archetyping.downtown.view.FirstLoadActivity}" drawable="dribbble"/>
<!-- Drag Racing -->
<item component="ComponentInfo{com.creativemobile.DragRacing/com.creativemobile.DragRacing.menus.MainMenu}" drawable="dragracing" />
<!-- Draw Something -->
<item component="ComponentInfo{com.omgpop.dstfree/com.omgpop.dstfree.Main}" drawable="drawsomething"/>
<!-- Drippler -->
<item component="ComponentInfo{com.drippler.android.updates/com.drippler.android.updates.PreSplash}" drawable="drippler"/>
<item component="ComponentInfo{drippler.samsung.galaxy.siii/drippler.samsung.galaxy.siii.splash}" drawable="drippler"/>
<item component="ComponentInfo{drippler.google.nexus7/drippler.google.nexus7.splash}" drawable="drippler"/>
<item component="ComponentInfo{drippler.samsung.galaxy.noteii/drippler.samsung.galaxy.noteii.splash}" drawable="drippler"/>
<item component="ComponentInfo{drippler.samsung.galaxy.note/drippler.samsung.galaxy.note.splash}" drawable="drippler"/>
<!-- Droid Overclock -->
<!-- Dropbox -->
<item component="ComponentInfo{com.dropbox.android/com.dropbox.android.activity.DropboxBrowser}" drawable="dropbox"/>
<!-- Duke Nukem 3D -->
<item component="ComponentInfo{com.machineworksnorthwest.duke3d/com.machineworksnorthwest.duke3d.Main}" drawable="dukenukem" />
<!-- DSP Manager -->
<item component="ComponentInfo{com.bel.android.dspmanager/com.bel.android.dspmanager.activity.DSPManager}" drawable="dsp"/>
<!-- E -->
<!-- Easy Mute -->
<item component="ComponentInfo{com.familylabs.easymute/com.familylabs.easymute.MainActivity}" drawable="easymute"/>
<!-- Ebay -->
<item component="ComponentInfo{com.ebay.mobile/com.ebay.mobile.activities.eBay}" drawable="ebay"/>
<!-- Ebay Germany -->
<item component="ComponentInfo{com.ebay.kleinanzeigen/com.ebay.kleinanzeigen.SplashScreenActivity}" drawable="ebaygermany"/>
<!-- Ebuddy -->
<item component="ComponentInfo{com.ebuddy.android/com.ebuddy.android.ui.StartupActivity}" drawable="ebuddy"/>
<!-- Echofon -->
<item component="ComponentInfo{com.echofon/com.echofon.EchofonMain}" drawable="echofon"/>
<!-- Electrodroid -->
<item component="ComponentInfo{it.android.demi.elettronica/it.android.demi.elettronica.MainElectroFree}" drawable="electrodroid"/>
<!-- Elixir 2 -->
<item component="ComponentInfo{com.bartat.android.elixir/com.bartat.android.elixir.MainActivity}" drawable="elixir2"/>
<!-- Email -->
<item component="ComponentInfo{com.android.email/com.android.email.activity.Welcome}" drawable="email"/>
<item component="ComponentInfo{com.htc.android.mail/com.htc.android.mail.MailListTab}" drawable="email"/>
<item component="ComponentInfo{com.google.android.email/com.android.email.activity.Welcome}" drawable="email"/>
<item component="ComponentInfo{com.motorola.blur.email/com.motorola.blur.email.mailbox.MailListActivity}" drawable="email"/>
<!-- Endomondo -->
<item component="ComponentInfo{com.endomondo.android/com.endomondo.android.EndoSplash}" drawable="endomodo"/>
<item component="ComponentInfo{com.endomondo.android.pro/com.endomondo.android.EndoSplash}" drawable="endomodo"/>
<!-- Engadget -->
<item component="ComponentInfo{com.aol.mobile.engadget/com.aol.mobile.engadget.splashscreen.SplashScreen}" drawable="engadget" />
<!-- EOS Settings -->
<item component="ComponentInfo{org.eos.controlcenter/org.eos.controlcenter.Main}" drawable="eossettings"/>
<!-- ES File Explorer -->
<item component="ComponentInfo{com.estrongs.android.pop/com.estrongs.android.pop.view.FileExplorerActivity}" drawable="esfileexplorer"/>
<item component="ComponentInfo{com.estrongs.android.pop/com.estrongs.android.pop.resmanager.view.FileExplorerActivity}" drawable="esfileexplorer" />
<!-- ESPN ScoreCenter -->
<item component="ComponentInfo{com.espn.score_center/com.espn.score_center.ui.StartupActivity}" drawable="espn" />
<!-- ES Task Manager -->
<item component="ComponentInfo{com.estrongs.android.taskmanager/com.estrongs.android.taskmanager.HomeActivity}" drawable="estaskmanager" />
<!-- Eternity Warriors 2 -->
<item component="ComponentInfo{com.glu.ewarriors2/com.google.android.vending.expansion.downloader_impl.DownloaderActivity}" drawable="eternitywarriors2" />
<!-- Etsy -->
<item component="ComponentInfo{com.etsy.android/com.etsy.android.HomeActivity}" drawable="etsy" />
<!-- EuroSport -->
<item component="ComponentInfo{com.eurosport/com.eurosport2.ui.SplashscreenActivity}" drawable="eurosport"/>
<item component="ComponentInfo{com.red.eurosport/com.red.eurosport.SplashScreen}" drawable="eurosport"/>
<item component="ComponentInfo{com.red.eurosport/com.red.eurosport.Newsactivity}" drawable="eurosport"/>
<!-- Eventbrite -->
<item component="ComponentInfo{com.eventbrite.attendee/com.eventbrite.attendee.activities.MainTabActivity}" drawable="eventbrite" />
<!-- Evernote -->
<item component="ComponentInfo{com.evernote/com.evernote.LauncherActivity}" drawable="evernote"/>
<item component="ComponentInfo{com.evernote/com.evernote.ui.HomeActivity}" drawable="evernote"/>
<item component="ComponentInfo{com.evernote/com.evernote.ui.LaunchActivity}" drawable="evernote"/>
<item component="ComponentInfo{com.evernote/com.evernote.ui.MainActivity}" drawable="evernote"/>
<item component="ComponentInfo{com.evernote/com.evernote.ui.MainView}" drawable="evernote"/>
<!-- exDialer -->
<item component="ComponentInfo{com.modoohut.dialer/com.modoohut.dialer.DialActivity}" drawable="exdialer"/>
<item component="ComponentInfo{com.modoohut.dialer/com.android.internal.app.ResolverActivity}" drawable="exdialer2"/>
<!-- Expedia -->
<item component="ComponentInfo{com.expedia.bookings/com.expedia.bookings.activity.SearchActivity}" drawable="expedia"/>
<!-- Extweaks -->
<item component="ComponentInfo{com.darekxan.extweaks.app/com.darekxan.extweaks.app.ExTweaksActivity}" drawable="extweaks"/>
<!-- ezPDF Reader -->
<item component="ComponentInfo{udk.android.reader/udk.android.reader.ApplicationActivity}" drawable="ezpdf"/>
<item component="ComponentInfo{udk.android.reader.az/udk.android.reader.az.ApplicationActivity}" drawable="ezpdf"/>
<item component="ComponentInfo{udk.android.reader.ts/udk.android.reader.ts.ApplicationActivity}" drawable="ezpdf"/>
<item component="ComponentInfo{udk.android.reader/udk.android.reader.Application}" drawable="ezpdf"/>
<!-- F -->
<!-- Fab -->
<item component="ComponentInfo{com.fab/com.fab.views.activities.NonDrawerActivity}" drawable="fab" />
<!-- Fabric -->
<item component="ComponentInfo{com.fabriclondon.fabric/com.fabriclondon.fabric.FabricActivity}" drawable="fabric"/>
<!-- Facebook -->
<item component="ComponentInfo{com.facebook.katana/com.facebook.katana.LoginActivity}" drawable="facebook"/>
<!-- Facebook Contacts Sync -->
<item component="ComponentInfo{ro.weednet.contactssync/ro.weednet.contactssync.activities.Preferences}" drawable="fbcontactsync"/>
<!-- Facebook Messenger -->
<item component="ComponentInfo{com.facebook.orca/com.facebook.orca.auth.StartScreenActivity}" drawable="facebookmessenger" />
<!-- Falcon Pro -->
<item component="ComponentInfo{com.jv.falcon.pro/com.jv.falcon.pro.activities.TweetListActivity}" drawable="falconpro" />
<!-- Falcon Widget -->
<item component="ComponentInfo{com.jv.falcon/com.jv.falcon.MainAppActivity}" drawable="falconwidget" />
<!-- Family Fued -->
<item component="ComponentInfo{com.ludia.familyfeudandfriends.free/com.ludia.gameengine.GameActivity}" drawable="familyfued"/>
<!-- Fancy -->
<item component="ComponentInfo{com.thefancy.app/com.thefancy.app.common.Main}" drawable="fancy" />
<!-- Fancy Widgets -->
<item component="ComponentInfo{com.anddoes.fancywidgets/com.anddoes.fancywidgets.PreferencesActivity}" drawable="fancywidgets"/>
<!-- Fast Reboot -->
<item component="ComponentInfo{com.greatbytes.fastreboot/com.greatbytes.fastreboot.FastReboot}" drawable="fastreboot"/>
<item component="ComponentInfo{com.greatbytes.fastrebootpro/com.greatbytes.fastrebootpro.FastRebootPro}" drawable="fastreboot"/>
<!-- Fatbooth -->
<item component="ComponentInfo{com.piviandco.fatbooth/com.piviandco.app.activities.mHomeActivity}" drawable="fatbooth"/>
<!-- FC Barcelona -->
<!-- Feedly -->
<item component="ComponentInfo{com.devhd.feedly/com.devhd.feedly.Main}" drawable="feedly"/>
<!-- File Explorer -->
<item component="ComponentInfo{com.motorola.filemanager/com.motorola.filemanager.FileManagerActivity}" drawable="filemanager" />
<item component="ComponentInfo{org.openintents.filemanager/org.openintents.filemanager.FileManagerActivity}" drawable="filemanager" />
<item component="ComponentInfo{com.android.fileexplorer/com.android.fileexplorer.FileExplorerTabActivity}" drawable="filemanager" />
<item component="ComponentInfo{com.mars.miuifilemanager/com.mars.miuifilemanager.ui.FileExplorerTabActivity}" drawable="filemanager"/>
<item component="ComponentInfo{com.cyanogenmod.filemanager/com.cyanogenmod.filemanager.activities.NavigationActivity}" drawable="filemanager"/>
<item component="ComponentInfo{org.openintents.cmfilemanager/org.openintents.cmfilemanager.FileManagerActivity}" drawable="filemanager"/>
<item component="ComponentInfo{com.sec.android.app.myfiles/com.sec.android.app.myfiles.MainActivity}" drawable="filemanager"/>
<!-- Final Fantasy III -->
<item component="ComponentInfo{com.square_enix.android_googleplay.FFIII_GP/com.square_enix.android_googleplay.FFIII_GP.BootActivity}" drawable="finalfantasy"/>
<!-- Find Say -->
<item component="ComponentInfo{pes.vres/pes.vres.PesVres233Activity}" drawable="findsay" />
<!-- Firefox -->
<item component="ComponentInfo{org.mozilla.firefox/org.mozilla.firefox.App}" drawable="firefox" />
<item component="ComponentInfo{org.mozilla.firefox_beta/org.mozilla.firefox_beta.App}" drawable="firefoxbeta" />
<!-- First Aid -->
<item component="ComponentInfo{com.usa.health.ifitness.firstaid/com.usa.health.ifitness.firstaid.Welcome}" drawable="firstaid"/>
<item component="ComponentInfo{com.cube.arc.fa/com.cube.arc.fa.FASplashView}" drawable="firstaid"/>
<!-- Flashlight -->
<item component="ComponentInfo{com.htc.flashlight/com.htc.flashlight.FlashlightActivity}" drawable="torch"/>
<!-- Flickr -->
<item component="ComponentInfo{com.dreamstep.wFlickr/com.dreamstep.wFlickr.MainNavigationActivity}" drawable="flickr"/>
<item component="ComponentInfo{com.mohlendo.flickr/com.mohlendo.flickr.StartScreen}" drawable="flickr"/>
<item component="ComponentInfo{com.yahoo.mobile.client.android.flickr/com.yahoo.mobile.client.android.flickr.ui.misc.LoginActivity}" drawable="flickr"/>
<!-- Flight Tracker -->
<item component="ComponentInfo{com.exelentia.flights/com.exelentia.flights.WebViewTemplate}" drawable="flighttracker"/>
<!-- Flipboard -->
<item component="ComponentInfo{flipboard.app/flipboard.activities.TOCActivity}" drawable="flipboard" />
<item component="ComponentInfo{flipboard.app/flipboard.activities.LaunchActivity}" drawable="flipboard"/>
<!-- Flixster -->
<item component="ComponentInfo{net.flixster.android/com.flixster.android.bootstrap.BootstrapActivity}" drawable="flixter" />
<!-- Flowfree -->
<item component="ComponentInfo{com.bigduckgames.flow/com.bigduckgames.flow.flow}" drawable="flowfree"/>
<!-- Flowfree Bridges -->
<item component="ComponentInfo{com.bigduckgames.flowbridges/com.bigduckgames.flowbridges.flow}" drawable="flowfreebridges"/>
<!-- FM Radio -->
<item component="ComponentInfo{com.sec.android.app.fm/com.sec.android.app.fm.MainActivity}" drawable="radio"/>
<item component="ComponentInfo{com.miui.fmradio/com.miui.fmradio.FMRadioMain}" drawable="radio"/>
<item component="ComponentInfo{com.motorola.fmradio/com.motorola.fmradio.FMRadioMain}" drawable="radio"/>
<item component="ComponentInfo{com.htc.fm/com.htc.fm.FMRadioMain}" drawable="radio"/>
<!-- FolderSync -->
<item component="ComponentInfo{dk.tacit.android.foldersync.lite/dk.tacit.android.foldersync.HomeActivity}" drawable="foldersync"/>
<item component="ComponentInfo{dk.tacit.android.foldersync/dk.tacit.android.foldersync.HomeActivity}" drawable="foldersync"/>
<!-- Fonts -->
<item component="ComponentInfo{com.jrummy.font.installer/com.jrummy.font.installer.FontInstaller}" drawable="fonts"/>
<!-- Four in a Line -->
<item component="ComponentInfo{uk.co.aifactory.fialfree/uk.co.aifactory.fialfree.FIALFreeActivity}" drawable="fourinaline"/>
<!-- Foursquare -->
<item component="ComponentInfo{com.joelapenna.foursquared/com.joelapenna.foursquared.MainActivity}" drawable="foursquare"/>
<item component="ComponentInfo{com.foursquare.android.tablet/com.foursquare.android.tablet.MainActivity}" drawable="foursquare"/>
<!-- Fox News -->
<item component="ComponentInfo{com.foxnews.android/com.foxnews.android.MainActivity}" drawable="foxnews"/>
<!-- FPse -->
<item component="ComponentInfo{com.emulator.fpse/com.emulator.fpse.Main}" drawable="fpse" />
<!-- Franco Kernel -->
<item component="ComponentInfo{com.franco.kernel.free/com.francokernel.Main}" drawable="francokernel"/>
<item component="ComponentInfo{com.franco.kernel/com.marclandis.francokernel.Main}" drawable="francokernel"/>
<item component="ComponentInfo{com.franco.kernel/com.marclandis.francokernel.LicenseCheck}" drawable="francokernel"/>
<item component="ComponentInfo{com.franco.kernel.note/com.franco.kernel.note.Main}" drawable="francokernel"/>
<item component="ComponentInfo{com.franco.kernel/com.license.check.LicenseCheckz}" drawable="francokernel"/>
<!-- Frandroid -->
<!-- Free Mobile -->
<!-- Free Mobile TV -->
<!-- Free Music Pro -->
<item component="ComponentInfo{com.sp.free.music/com.sp.free.music.TabWidgetActivity}" drawable="freemusicpro" />
<!-- Free News -->
<!-- Fruit Ninja -->
<item component="ComponentInfo{com.halfbrick.fruitninja/com.halfbrick.fruitninja.FruitNinjaActivity}" drawable="fruitninja" />
<item component="ComponentInfo{com.halfbrick.fruitninja/cn.emagsoftware.autopackagebilling.GameInitialization}" drawable="fruitninja" />
<item component="ComponentInfo{com.halfbrick.fruitninja/com.halfbrick.fruitninja.Applanet_2}" drawable="fruitninja" />
<item component="ComponentInfo{com.halfbrick.fruitninja/com.halfbrick.fruitninja.ApplanetActivity}" drawable="fruitninja" />
<item component="ComponentInfo{com.halfbrick.fruitninja/com.strastar.game.SKTARMLauncher}" drawable="fruitninja" />
<item component="ComponentInfo{com.halfbrick.fruitninjafree/com.halfbrick.fruitninja.FruitNinjaActivity}" drawable="fruitninja"/>
<!-- FSNB -->
<item component="ComponentInfo{com.fsnb/com.fsnb.BankActivity}" drawable="fsnb"/>
<!-- Fuel Log -->
<!-- Funky Smugglers -->
<item component="ComponentInfo{com.elevenbitstudios.FunkySmugglers/com.elevenbitstudios.FunkySmugglers.MainActivity}" drawable="funkysmugglers"/>
<!-- Funrun -->
<item component="ComponentInfo{no.dirtybit.funrun/com.ansca.corona.CoronaActivity}" drawable="funrun"/>
<!-- Fun Photo -->
<item component="ComponentInfo{com.kauf.imagefaker.funphotoboothfakeimages/com.kauf.imagefaker.funphotoboothfakeimages.StartActivity}" drawable="funphoto"/>
<!-- FV-5 Camera -->
<item component="ComponentInfo{com.flavionet.android.camera.pro/com.flavionet.android.camera.Main}" drawable="fv5camera" />
<item component="ComponentInfo{com.flavionet.android.camera.lite/com.flavionet.android.camera.Main}" drawable="fv5camera" />
<!-- G -->
<!-- Gadu-Gadu -->
<item component="ComponentInfo{pl.gadugadu/pl.gadugadu.komunikator.app.ContactListActivity}" drawable="gadugadu"/>
<item component="ComponentInfo{pl.gadugadu/pl.gadugadu.contactslist.ContactListActivity}" drawable="gadugadu"/>
<item component="ComponentInfo{pl.gadugadu.openfm/pl.gadugadu.openfm.app.OpenFMActivity}" drawable="gadugadu"/>
<!-- Gallery -->
<item component="ComponentInfo{com.cooliris.media/com.cooliris.media.Gallery}" drawable="gallery"/>
<item component="ComponentInfo{com.htc.album/com.htc.album.AlbumTabSwitchActivity}" drawable="gallery"/>
<item component="ComponentInfo{com.google.android.gallery3d/com.cooliris.media.Gallery}" drawable="gallery"/>
<item component="ComponentInfo{com.android.gallery3d/com.android.gallery3d.app.Gallery}" drawable="gallery"/>
<item component="ComponentInfo{com.htc.album/com.htc.album.AlbumMain.ActivityMainDropList}" drawable="gallery"/>
<item component="ComponentInfo{com.htc.album/com.htc.album.AlbumMain.ActivityMainCarousel}" drawable="gallery"/>
<item component="ComponentInfo{com.sec.android.gallery3d/com.sec.android.gallery3d.app.Gallery}" drawable="gallery"/>
<item component="ComponentInfo{com.android.camera/com.android.camera.GalleryPicker}" drawable="gallery"/>
<item component="ComponentInfo{com.motorola.gallery/com.motorola.gallery.TopScreen}" drawable="gallery"/>
<item component="ComponentInfo{com.google.android.gallery3d/com.android.gallery3d.app.Gallery}" drawable="gallery"/>
<!-- Gamefly -->
<item component="ComponentInfo{com.gamefly.android.gamecenter/com.gamefly.android.gamecenter.LoadingScreenActivity}" drawable="gamefly"/>
<!-- Gamestop -->
<item component="ComponentInfo{com.gamestop.powerup/com.gamestop.powerup.GamestopActivity}" drawable="gamestop"/>
<!-- Ganalytics -->
<!-- Gas Buddy -->
<item component="ComponentInfo{gbis.gbandroid/gbis.gbandroid.InitScreen}" drawable="gas"/>
<!-- Gauge Battery Widget -->
<item component="ComponentInfo{net.hubalek.android.gaugebattwidget/net.hubalek.android.gaugebattwidget.activity.MainActivity}" drawable="gaugebattery"/>
<!-- Gentle Alarm -->
<item component="ComponentInfo{com.mobitobi.android.gentlealarm/com.mobitobi.android.gentlealarm.Activity_Switchboard}" drawable="gentlealarm"/>
<item component="ComponentInfo{com.mobitobi.android.gentlealarm/com.mobitobi.android.gentlealarm.Activity_Main}" drawable="gentlealarm"/>
<item component="ComponentInfo{com.mobitobi.android.gentlealarmtrial/com.mobitobi.android.gentlealarmtrial.Activity_Switchboard}" drawable="gentlealarm"/>
<!-- Get Glue -->
<item component="ComponentInfo{com.adaptiveblue.GetGlue/com.adaptiveblue.GetGlue.GetGlueActivity}" drawable="getglue"/>
<!-- GetRIL -->
<item component="ComponentInfo{com.sibbor.getril/com.sibbor.getril.StartActivity}" drawable="getril"/>
<!-- Get Taxi -->
<item component="ComponentInfo{com.gettaxi.android/com.gettaxi.android.activities.login.LoadingActivity}" drawable="gettaxi"/>
<!--Glympse -->
<item component="ComponentInfo{com.glympse.android.glympse/com.glympse.android.glympse.ActivitySplash}" drawable="glympse"/>
<!-- GMail -->
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.ConversationListActivityGmail}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.AutoSendActivity}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.GmailActivity}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.ComposeActivityGmail}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.Preference.GmailPreferenceActivity}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.MailboxSelectionActivity}" drawable="gmail"/>
<item component="ComponentInfo{com.google.android.gm/com.google.android.gm.MailboxSelectionActivityGoogleMail}" drawable="gmail"/>
<!-- Gnome Village -->
<item component="ComponentInfo{air.com.disney.GnomeVillage.GooglePlay/air.com.disney.GnomeVillage.GooglePlay.AppEntry}" drawable="gnomevillage"/>
<!-- Go Backup -->
<item component="ComponentInfo{com.jiubang.go.backup.ex/com.jiubang.go.backup.pro.StartupPageActivity}" drawable="gobackup"/>
<!-- Go Chat for Facebook -->
<item component="ComponentInfo{com.spartancoders.gtok/com.spartancoders.gtok.GoChatFBLoginActivity}" drawable="gochat"/>
<!-- Go Contacts -->
<item component="ComponentInfo{com.jbapps.contactpro/com.jbapps.contactpro.ui.ContactListLaunch}" drawable="gocontacts"/>
<!-- Go Dialer EX -->
<item component="ComponentInfo{com.jbapps.contactpro/com.jbapps.contactpro.ui.MainEntry}" drawable="godialer"/>
<!-- Go Launcher EX -->
<item component="ComponentInfo{com.gau.go.launcherex/com.jiubang.ggheart.apps.desks.diy.GoLauncher}" drawable="golauncher"/>
<!-- Go Launcher Notifications -->
<item component="ComponentInfo{com.gau.golauncherex.notification/com.gau.golauncherex.notification.NotificationActivity}" drawable="golaunchernotification"/>
<!-- GO Locker -->
<item component="ComponentInfo{com.jiubang.goscreenlock/com.jiubang.goscreenlock.theme.mythemes.GOLauncherGuider}" drawable="golocker"/>
<!-- Go Power -->
<item component="ComponentInfo{com.gau.go.launcherex.gowidget.gopowermaster/com.gau.go.launcherex.gowidget.powersave.activity.EnterActivity}" drawable="gopower"/>
<!-- GO SMS -->
<item component="ComponentInfo{com.jb.gosms/com.jb.gosms.ui.mainscreen.GoSmsMainActivity}" drawable="gosms"/>
<!-- Go Task Manager -->
<item component="ComponentInfo{com.gau.go.launcherex.gowidget.taskmanagerex/com.gau.go.launcherex.gowidget.taskmanagerex.activity.ProcessManagerActivity}" drawable="gotaskmanager"/>
<!-- Go Weather -->
<item component="ComponentInfo{com.mediawoz.goweather/com.mediawoz.goweather.WeatherApp}" drawable="goweather"/>
<item component="ComponentInfo{com.gau.go.launcherex.gowidget.weatherwidget/com.gau.go.launcherex.gowidget.framework.GoWidgetActivity}" drawable="goweather"/>
<!-- GOO Manager -->
<item component="ComponentInfo{com.s0up.goomanager/com.s0up.goomanager.GooManagerActivity}" drawable="goo"/>
<!-- Google Authenticator -->
<item component="ComponentInfo{com.google.android.apps.authenticator2/com.google.android.apps.authenticator.AuthenticatorActivity}" drawable="googleauthenticator"/>
<!-- Google Books -->
<item component="ComponentInfo{com.google.android.apps.books/com.google.android.apps.books.app.HomeActivity}" drawable="googlebooks"/>
<item component="ComponentInfo{com.google.android.apps.books/com.google.android.apps.books.app.BooksActivity}" drawable="googlebooks"/>
<!-- Google Drive -->
<item component="ComponentInfo{com.google.android.apps.docs/com.google.android.apps.docs.app.NewMainProxyActivity}" drawable="googledrive"/>
<!-- Google Earth -->
<item component="ComponentInfo{com.google.earth/com.google.earth.EarthActivity}" drawable="googleearth"/>
<item component="ComponentInfo{com.google.earth/com.google.earth.MainActivity}" drawable="googleearth"/>
<!-- Google Finance -->
<item component="ComponentInfo{com.google.android.apps.finance/com.google.android.apps.finance.HomeActivity}" drawable="googlefinance"/>
<!-- Google Goggles -->
<item component="ComponentInfo{com.google.android.apps.unveil/com.google.android.apps.unveil.SearchHistoryActivity}" drawable="googlegoggles"/>
<!--Google Keep-->
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.BrowseActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.AnimatingListDetailsEditActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.ListDetailsActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.NoteToSelfActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.IntentResolverActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.activities.IntentResolverWithMimeTypeActivity}" drawable="keep" />
<item component="ComponentInfo{com.google.android.keep/com.google.android.keep.homescreenwidget.WidgetIntentResolverActivity}" drawable="keep" />
<!-- Google Maps -->
<item component="ComponentInfo{com.google.android.apps.maps/com.google.android.maps.MapsActivity}" drawable="googlemaps"/>
<item component="ComponentInfo{com.google.android.apps.maps/com.google.android.maps.PlacesActivity}" drawable="local"/>
<!-- Google Nav -->
<item component="ComponentInfo{com.google.android.apps.maps/com.google.android.maps.driveabout.app.DestinationActivity}" drawable="navigation"/>
<!-- Google Plus -->
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plusone.app.HomeScreenActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.HomeActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.StreamOneUpActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.settings.SettingsActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.PhotoOneUpActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.SignOnActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.ProfilActionGatewayActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.ViewStreamItemActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.ViewStreamItemPhotoActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.ViewCircleActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.widget.EsWidgetConfigurationActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.settings.SettingsActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.InviteContactActivity}" drawable="gplus"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.plus.phone.ConversationListActivity}" drawable="googlepluschat"/>
<item component="ComponentInfo{com.google.android.apps.plus/com.google.android.apps.circles.realtimechat.ConversationListActivity}" drawable="googlepluschat"/>
<!-- Google Search -->
<item component="ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.SearchActivity}" drawable="googlesearch"/>
<item component="ComponentInfo{com.google.android.googlequicksearchbox/com.google.android.googlequicksearchbox.VoiceSearchActivity}" drawable="voicesearch"/>
<item component="ComponentInfo{com.google.android.voicesearch/com.google.android.voicesearch.RecognitionActivity}" drawable="voicesearch" />
<item component="ComponentInfo{com.google.android.voicesearch/com.google.android.voicesearch.RecognitionActivityReal}" drawable="voicesearch" />
<item component="ComponentInfo{com.google.android.voicesearch/com.google.android.voicesearch.performanceanalysis.LogFilesViewer}" drawable="voicesearch" />
<!-- Google Sky Map -->
<item component="ComponentInfo{com.google.android.stardroid/com.google.android.stardroid.activities.SplashScreenActivity}" drawable="googleskymap"/>
<!-- Google Translate -->
<item component="ComponentInfo{com.google.android.apps.translate/com.google.android.apps.translate.HomeActivity}" drawable="translate"/>
<!-- Google Voice -->
<item component="ComponentInfo{com.google.android.apps.googlevoice/com.google.android.apps.googlevoice.SplashActivity}" drawable="googlevoice"/>
<!-- Translate -->
<item component="ComponentInfo{com.google.android.apps.translate/com.google.android.apps.translate.HomeActivity}" drawable="translate"/>
<!-- Google Wallet -->
<!-- Gospel Library -->
<item component="ComponentInfo{org.lds.ldssa/org.lds.ldssa.Main}" drawable="gospellibrary"/>
<!-- GPS Status -->
<item component="ComponentInfo{com.eclipsim.gpsstatus2/com.eclipsim.gpsstatus2.GPSStatus}" drawable="gpsstatus"/>
<!-- GTunes Music Downloader -->
<item component="ComponentInfo{easy.mp3.dlv6/easy.mp3.dlv6.MainActivity}" drawable="gtunes"/>
<item component="ComponentInfo{free.mp3.dlv6/free.mp3.dlv6.MainActivity}" drawable="gtunes"/>
<item component="ComponentInfo{org.newgtlive.gtmusiclive/org.newgtlive.gtmusiclive.HomeActivity}" drawable="gtunes"/>
<!-- Grand Theft Auto III -->
<item component="ComponentInfo{com.rockstar.gta3/com.rockstar.gta3.DefaultActivity}" drawable="gta"/>