-
Notifications
You must be signed in to change notification settings - Fork 0
/
datadescr.txt
executable file
·9576 lines (8795 loc) · 514 KB
/
datadescr.txt
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
Profile: 🚦📱⚡█ (2)
Priority: 50 Restore: no Notification: no
State: Power [ Source:Any ]
Enter: Anon (68)
Exit: Anon (67)
Profile: 🚦⌚⚡█ (4)
Cooldown: 60 Priority: 50 Restore: no
State: Android Wear [ Configuration:Charging ]
Enter: AUT_zzz_DummyTask (93)
Profile: 🧩🔢█ (6)
Priority: 50 Restore: no Notification: no
State: Variable Value [ %AUT_Version !~ %AUT_VersionMajor.%AUT_VersionMinor.%AUT_VersionPatch%AUT_VersionRelease ]
Enter: AUT_SetVersion (7)
Profile: _🛏️█ (8)
Priority: 50 Restore: no Enforce: no
Time: From 10:00pm Till 8:00am
State: Profile Active [ Name:🚦📱⌚⚡█ ]
Enter: AUT_selectProfile (164)
Exit: Anon (56)
Profile: AUT_COMM_Forward_SmsReceived (10)
Notification: no
Event: Received Text [ Type:SMS Sender:* Content:* SIM Card:* ]
Enter: AUT_COMM_Forward_SMS (11)
Profile: 🚦🎧ᛒ█ (15)
Cooldown: 60 Priority: 50 Restore: no
State: BT Connected [ Name:* Address:* ]
Enter: AUT_headsetConnected (103)
Exit: AUT_headsetConnected (103)
Profile: ▶️🎵☎️🔊 (19)
Priority: 50 Restore: no Enforce: no Notification: no
Event: Variable Set [ Variable:%VOLM Value:* User Variables Only:Off ]
State: Not Profile Active [ Name:_🛏️█ ]
Enter: AUT_RingVolBasedOnMediaVol (46)
Profile: ⚙️ (22)
Cooldown: 300 Priority: 50 Restore: no Notification: no
State: Not Task Running [ Name:cron ]
State: Variable Value [ %PENABLED ~ *__⚙️✔️* ]
Enter: AUT_daemon (122)
Profile: _🎮█ (23)
Cooldown: 300 Priority: 50 Restore: no
Application: Merge Dragons!
Enter: Anon (100)
Exit: Anon (101)
Profile: 🚦⌚🔌█ (25)
Cooldown: 60 Priority: 50 Restore: no Enforce: no
State: AutoWear State [ Configuration:Connected: true ]
Enter: AUT_zzz_DummyTask (93)
Profile: AutoBackup (31)
Priority: 50 Restore: no Notification: no
Event: Variable Set [ Variable:%AUT_Version Value:* User Variables Only:Off ]
Enter: Anon (32)
Profile: SMSP - SMS (received) v1.0 (39)
Restore: no
Event: Received Text [ Type:Any Sender:numer_to_filter Content:* SIM Card:* ]
Enter: AUT_comm_parse_sms (36)
Profile: 🚦📱⌚⚡█ (44)
Priority: 50 Restore: no Notification: no
State: Profile Active [ Name:🚦📱⚡█ ]
State: Variable Value [ %PACTIVE ~ *🚦⌚⚡█* | %PACTIVE !~ *🚦⌚🔌█* ]
Enter: AUT_zzz_DummyTask (93)
Profile: 🚦📡🏡🔭█ (45)
Cooldown: 900 Priority: 50 Restore: no
State: Wifi Near [ SSID:%AUT_Cfg_WifiHome MAC:* Capabilities:* Min. Activate Signal Level:0 Channel:0 Toggle Wifi:Off ]
Enter: AUT_zzz_DummyTask (93)
Profile: _🏡█ (49)
Cooldown: 300 Priority: 50 Restore: no Enforce: no
State: Profile Active [ Name:🚦📡🏡🔭█/🛰️🏡█ ]
State: Profile Active [ Name:🚦📡🔌█ ]
Enter: AUT_selectProfile (164)
Profile: _🏢█ (50)
Priority: 50 Restore: no Enforce: no
State: Profile Active [ Name:🛰️🏢█/🚦📡🏢🔭█ ]
Enter: AUT_selectProfile (164)
Profile: 🚦📡🏢🔭█ (51)
Cooldown: 900 Priority: 50 Restore: no
State: Wifi Near [ SSID:%AUT_Cfg_WifiWork MAC:* Capabilities:* Min. Activate Signal Level:0 Channel:0 Toggle Wifi:Off ]
Enter: AUT_zzz_DummyTask (93)
Profile: AUT_UI_Bars_Watch_Timer_3mins (55)
Time: Every 3m
Enter: AUT_UI_Bars_Watch_Blink (12)
Profile: AUT_UI_Landscape (58)
State: Display Orientation [ Is:Landscape ]
Enter: AUT_UI_Bars_Start (54)
Profile: AUT_UI_Bars_HideWhenAppActive (59)
Application: Telegram
Enter: AUT_UI_Bars_Pause (48)
Exit: AUT_UI_Bars_Resume (35)
Profile: AUT_UI_Bars_Phone_Timer_5mins (60)
Time: Every 5m
Enter: AUT_UI_Bars_Phone_Blink (52)
Profile: AUT_UI_Startup (61)
Event: Device Boot
Enter: AUT_UI_Bars_Startup (57)
Profile: AUT_UI_Bars_Phone (62)
Event: Battery Changed
Enter: AUT_UI_Bars_Phone (40)
Profile: AUT_UI_Portrait (63)
State: Display Orientation [ Is:Portrait ]
Enter: AUT_UI_Bars_Start (54)
Profile: AUT_UI_Shutdown (64)
Event: Device Shutdown
Enter: AUT_UI_Bars_Shutdown (41)
Profile: AUT_UI_Bars_Phone_Timer_3mins (65)
Time: Every 3m
Enter: AUT_UI_Bars_Phone_Blink (52)
Profile: AUT_UI_Bars_Watch_Timer_5mins (69)
Time: Every 5m
Enter: AUT_UI_Bars_Watch_Blink (12)
Profile: AUT_UI_Bars_Headset_Timer_3mins (70)
Time: Every 3m
Enter: AUT_UI_Bars_Headset_Blink (72)
Profile: AUT_UI_Bars_Headset (71)
State: Variable Value [ %AUT_UI_Headset_Battery != %AUT_headset_battery ]
Enter: AUT_UI_Bars_Headset (66)
Profile: _🚲🚙█ (73)
Priority: 50 Restore: no Enforce: no
State: Not Profile Active [ Name:🚦📡🔌█ ]
State: Not Profile Active [ Name:_🏡█ ]
State: Not Profile Active [ Name:_🏢█ ]
Enter: AUT_selectProfile (164)
Profile: AUT_UI_Bars_Watch (74)
Event: Battery Changed
Enter: AUT_UI_Bars_Watch (9)
Profile: AUT_UI_Bars_Headset_Timer_5mins (77)
Time: Every 5m
Enter: AUT_UI_Bars_Headset_Blink (72)
Profile: AUT_AW_init (85)
Priority: 50 Restore: no Notification: no
State: Variable Value [ %AUT_Plugins_AutoWear !Set ]
Enter: AUT-WEAR_Init (14)
Profile: __⚙️✔️ (91)
Priority: 50 Restore: no Notification: no
State: Variable Value [ %NULL !Set ]
Enter: AUT_zzz_DummyTask (93)
Profile: 🛰️🏢█ (92)
Cooldown: 300 Priority: 50 Restore: no Enforce: no Notification: no
State: AutoLocation Geofences [ Configuration:Geofence Name: work
Status: Inside ]
Enter: AUT_LogWorkHours (27)
Exit: AUT_LogWorkHours (27)
Profile: 🚦📆🧮█ (107)
Priority: 50 Restore: no Enforce: no Notification: no
Day: Sun, Mon, Tue, Wed or Thu
State: Not Calendar Entry [ Title:*vakantie Location:* Description:* Available:Any Calendar:Google:Samen Op Weg/Google:Dylan/Google:[email protected] ]
Time: From 6:00am
Enter: AUT_zzz_DummyTask (93)
Profile: Google Reminder Intercept (112)
Restore: no
Event: AutoNotification Intercept [ Configuration:Event Behaviour: true
Notification Type: Only Created Notifications
Package Name: com.google.android.googlequicksearchbox ]
Enter: Reminder WearOS fix (102)
Profile: Wear Reminder Notification Button 1 (113)
Restore: no
Event: AutoWear Command [ Configuration:Command Filter: grbutton1 ]
Enter: Reminder Watch Button 1 (110)
Profile: Wear Reminder Notification Button 2 (115)
Restore: no
Event: AutoWear Command [ Configuration:Command Filter: grbutton2 ]
Enter: Reminder Warch Button 2 (111)
Profile: ▶️⌚♻️ (123)
Priority: 50 Enforce: no Notification: no
Day: Sun
Time: 7:00am
Enter: Anon (124)
Profile: Reminders - AutoApps Commands (139)
Priority: 40
Event: AutoApps Command [ Configuration:Command Filter: Reminders ]
Enter: Anon (81)
Profile: Reminders - JSON Variable Monitor (140)
Priority: 35
State: Variable Value [ %Rem_JSON !Set ]
Enter: Refresh JSON (82)
Profile: Reminders - Alert Reminders Due (141)
Priority: 30
Time: Every 30m
State: Variable Value [ %Rem_Morning < %TIME & %Rem_Evening > %TIME & %Rem_Due Set ]
Enter: Anon (87)
Profile: Reminders - Delete Previous Backups (142)
Priority: 30
Time: From 1:50am Till 1:55am
Enter: Anon (134)
Profile: LFVCD - Volume Changed v1.0 (147)
Restore: no
Event: Intent Received [ Action:android.media.VOLUME_CHANGED_ACTION Cat:None Cat:None Scheme:* Mime Type:* Stop Event: On ]
Enter: Anon (146)
Profile: 🛰️🏡█ (163)
Priority: 50 Restore: no Enforce: no Notification: no
State: AutoLocation Geofences [ Configuration:Geofence Name: home
Status: Inside ]
Enter: AUT_zzz_DummyTask (93)
Profile: _🎬 (165)
Priority: 50 Enforce: no Notification: no
Event: Device Boot
Enter: AUT__init (167)
Profile: CAAB - Sensor (shake) (169)
Restore: no
Event: Shake [ Axis:Left-Right Sensitivity:Medium Duration:Medium ]
Enter: CAAB - Get Data (159)
Profile: CAAB - Monitor (A) (170)
Restore: no
Event: Logcat Entry [ Output Variables:* Component:ActivityManager Filter:* Grep Filter (Check Help):Off ]
Enter: CAAB - Get App Activity (168)
Profile: CAAB - Monitor (B) (171)
Restore: no
Event: Logcat Entry [ Output Variables:* Component:ActivityTrigger Filter:* Grep Filter (Check Help):Off ]
Enter: CAAB - Get App Activity (168)
Profile: 🚦📆🏢█ (172)
Priority: 50 Restore: no Enforce: no Notification: no
Day: Mon, Tue, Thu or Fri
State: Not Calendar Entry [ Title:%AUT_WorkDayOff Location:* Description:* Available:Any Calendar:%AUT_WorkCalendar ]
Enter: Anon (18)
Exit: Anon (43)
Profile: CAAB - Notification (click) (174)
Restore: no
Event: Notification Click [ Owner Application:Tasker Title:Current App Activity ]
Enter: CAAB - Stop (166)
Profile: Sunrise (177)
Time: From %SunRise Till %SunRise
Enter: Sunrise (156)
Profile: Get Daily Datas (178)
Time: 12:01am
Enter: Get Daily Data (121)
Profile: SolarNoon (180)
Time: From %SolarNoon Till %SolarNoon
Enter: SolarNoon (154)
Profile: Sunset (181)
Time: From %SunSet Till %SunSet
Enter: Sunset (155)
Profile: 🧉🕰️ (210)
Priority: 50 Notification: no
State: Display State [ Is:On ]
Event: Display Unlocked
State: Variable Value [ %AUT_GoodMorningHasRun !Set | %AUT_GoodMorningHasRun ~ false ]
Enter: GoodMorning (209)
Profile: 🚦🎧🔌█ (216)
Cooldown: 60 Priority: 50 Restore: no
State: Headset Plugged [ Type:Any ]
Enter: AUT_headsetConnected (103)
Exit: AUT_headsetConnected (103)
Profile: XML Copied (223)
Priority: 8
State: Variable Value [ %CLIP ~R <TaskerData(.|\s)*?</TaskerData> ]
Event: Variable Set [ Variable:%CLIP Value:* User Variables Only:Off ]
Enter: Create File (221)
Profile: AA Tasker Import (224)
Event: AutoApps Command [ Configuration:Command Filter: import
Variable Names: file ]
Enter: Import (213)
Profile: Project DLd (225)
Event: File Modified [ File:Tasker/projects/ Event:* ]
Enter: New XML Detected (218)
Profile: Scenes DLd (226)
Event: File Modified [ File:Tasker/scenes/ Event:* ]
Enter: New XML Detected (218)
Profile: Profile DLd (227)
Event: File Modified [ File:Tasker/profiles/ Event:* ]
Enter: New XML Detected (218)
Profile: Task DLd (228)
Event: File Modified [ File:Tasker/tasks/ Event:* ]
Enter: New XML Detected (218)
Profile: New Tasker Files (230)
Event: File Modified [ File:Download/ Event:* ]
Enter: Move Tasker Files (212)
Profile: 🚦📡🔌█ (231)
Priority: 50 Restore: no Notification: no
State: Wifi Connected [ SSID:* MAC:* IP:* Active:Any ]
Enter: Anon (117)
Exit: Anon (233)
Profile: Scene Exported (238)
Event: File Modified [ File:Tasker/scenes/ Event:* ]
Enter: Scene Exported (237)
Profile: AUT_COMM_init (243)
State: Variable Value [ %PSF_myname !Set | %PSF_language !Set | %PSF_senders !Set | %PSF_receipients !Set ]
Enter: AUT_comm_init (234)
Exit: Anon (246)
Profile: AW_Voice (294)
Event: AutoVoice Recognized [ Configuration:* ]
Enter: AUT-WEAR-AW_VoiceCommands (293)
Profile: IBMA - 138 (324)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.net.wifi.supplicant.CONNECTION_CHANGE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 139 (325)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.net.wifi.supplicant.STATE_CHANGE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 140 (326)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.net.wifi.WIFI_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 141 (327)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.speech.tts.engine.CHECK_TTS_DATA Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 142 (328)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.speech.tts.engine.GET_SAMPLE_TEXT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 143 (329)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.speech.tts.engine.TTS_DATA_INSTALLED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 144 (330)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.speech.tts.TTS_QUEUE_PROCESSING_COMPLETED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 1 (331)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.accounts.LOGIN_ACCOUNTS_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 2 (332)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.ACTION_PASSWORD_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 3 (333)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.ACTION_PASSWORD_EXPIRING Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 4 (334)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.ACTION_PASSWORD_FAILED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 5 (335)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.ACTION_PASSWORD_SUCCEEDED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 6 (336)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.DEVICE_ADMIN_DISABLE_REQUESTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 7 (337)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.DEVICE_ADMIN_DISABLED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 8 (338)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.DEVICE_ADMIN_ENABLED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 9 (339)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.app.action.NEXT_ALARM_CLOCK_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
State: Variable Value [ %NULL eq 1 ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 10 (340)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.a2dp.profile.action.ACTIVE_DEVICE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 11 (341)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.a2dp.profile.action.AVRCP_CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 12 (342)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.a2dp.profile.action.CODEC_CONFIG_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 13 (343)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 14 (344)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 15 (345)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 16 (346)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.DISCOVERY_FINISHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 17 (347)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.DISCOVERY_STARTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 18 (348)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.LOCAL_NAME_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 19 (349)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.SCAN_MODE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 20 (350)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.adapter.action.STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 21 (351)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.ACL_CONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 22 (352)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 23 (353)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.ACL_DISCONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 24 (354)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.ALIAS_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 25 (355)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.BATTERY_LEVEL_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 26 (356)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.BOND_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 27 (357)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.CLASS_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 28 (358)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.FOUND Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 29 (359)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.NAME_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 30 (360)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.device.action.UUID Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 31 (361)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.devicepicker.action.DEVICE_SELECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 32 (362)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.devicepicker.action.LAUNCH Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 33 (363)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.headset.action.HF_INDICATORS_VALUE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 34 (364)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 35 (365)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.headset.profile.action.ACTIVE_DEVICE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 36 (366)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 37 (367)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 38 (368)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 39 (369)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.HANDSHAKE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 40 (370)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.IDLE_TIME_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 41 (371)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.PROTOCOL_MODE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 42 (372)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.REPORT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 43 (373)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.input.profile.action.VIRTUAL_UNPLUG_STATUS Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 44 (374)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.bluetooth.pan.profile.action.CONNECTION_STATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 45 (375)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.action.NEW_PICTURE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 46 (376)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.action.NEW_VIDEO Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 47 (377)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 48 (378)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.usb.action.USB_ACCESSORY_ATTACHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 49 (379)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.usb.action.USB_ACCESSORY_DETACHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 50 (380)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.usb.action.USB_DEVICE_ATTACHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 51 (381)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.usb.action.USB_DEVICE_DETACHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 52 (382)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.hardware.usb.action.USB_STATE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 53 (383)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.ACTION_POWER_CONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 54 (384)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.ACTION_POWER_DISCONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 55 (385)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.ACTION_SHUTDOWN Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 56 (386)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.AIRPLANE_MODE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 57 (387)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.ALARM_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 58 (388)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.BATTERY_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 59 (389)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.BATTERY_LOW Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 60 (390)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.BATTERY_OKAY Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 61 (391)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.BOOT_COMPLETED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 62 (392)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.CAMERA_BUTTON Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 63 (393)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.CONFIGURATION_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 64 (394)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DATE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 65 (395)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DEVICE_STORAGE_LOW Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 66 (396)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DEVICE_STORAGE_OK Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 67 (397)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DOCK_EVENT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 68 (398)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DREAMING_STARTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 69 (399)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DREAMING_STOPPED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 70 (400)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.DROPBOX_ENTRY_ADDED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 71 (401)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 72 (402)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 73 (403)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.FETCH_VOICEMAIL Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 74 (404)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.GTALK_CONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 75 (405)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.GTALK_DISCONNECTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 76 (406)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.HEADSET_PLUG Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 77 (407)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.INPUT_METHOD_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 78 (408)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.LOCALE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 79 (409)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MANAGE_PACKAGE_STORAGE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 80 (410)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_BAD_REMOVAL Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 81 (411)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_BUTTON Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 82 (412)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_CHECKING Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 83 (413)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_EJECT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 84 (414)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_MOUNTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 85 (415)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_NOFS Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 86 (416)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_REMOVED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 87 (417)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_SCANNER_FINISHED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 88 (418)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_SCANNER_SCAN_FILE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 89 (419)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_SCANNER_STARTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 90 (420)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_SHARED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 91 (421)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_UNMOUNTABLE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 92 (422)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MEDIA_UNMOUNTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 93 (423)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.MY_PACKAGE_REPLACED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 94 (424)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.NEW_OUTGOING_CALL Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 95 (425)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.NEW_VOICEMAIL Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 96 (426)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_ADDED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 97 (427)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 98 (428)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_DATA_CLEARED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 99 (429)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_FIRST_LAUNCH Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 100 (430)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_FULLY_REMOVED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 101 (431)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_INSTALL Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 102 (432)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_NEEDS_VERIFICATION Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 103 (433)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_REMOVED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 104 (434)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_REPLACED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 105 (435)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_RESTARTED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 106 (436)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PACKAGE_VERIFIED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 107 (437)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PHONE_STATE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 108 (438)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PROVIDER_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 109 (439)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.PROXY_CHANGE Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 110 (440)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.REBOOT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 111 (441)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.SCREEN_OFF Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 112 (442)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.SCREEN_ON Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 113 (443)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.TIME_SET Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 114 (444)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.TIME_TICK Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 115 (445)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.TIMEZONE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 116 (446)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.UID_REMOVED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 117 (447)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.USER_PRESENT Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 118 (448)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.intent.action.WALLPAPER_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 119 (449)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.media.ACTION_SCO_AUDIO_STATE_UPDATED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 120 (450)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 121 (451)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 122 (452)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.media.AUDIO_BECOMING_NOISY Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 123 (453)
Cooldown: 1 Restore: no
Event: Intent Received [ Action:android.media.RINGER_MODE_CHANGED Cat:None Cat:None Scheme:* Mime Type:* ]
Enter: IBMA - Get Intent Extras (312)
Profile: IBMA - 124 (454)