-
Notifications
You must be signed in to change notification settings - Fork 28
/
log
4004 lines (3939 loc) · 560 KB
/
log
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
____
/ _ | Frida 16.1.3 - A world-class dynamic instrumentation toolkit
| (_| |
> _ | Commands:
/_/ |_| help -> Displays the help system
. . . . object? -> Display information about 'object'
. . . . exit/quit -> Exit
. . . .
. . . . More info at https://frida.re/docs/home/
. . . .
. . . . Connected to MI 6 (id=b9fa3f84)
Spawning `com.mobile.legends`...
Spawned `com.mobile.legends`. Resuming main thread!
[MI 6::com.mobile.legends ]->
zh-CN
zh-CN
my.devices.null.widthPixels
my.devices.null.heightPixels
my.devices.null.density
my.devices.null.densityDpi
my.devices.null.xdpi
my.devices.null.ydpi
zh-CN
/data/user/0/com.mobile.legends/cache
/data/user_de/0/com.mobile.legends/code_cache
/data/user_de/0/com.mobile.legends/code_cache/com.android.opengl.shaders_cache
/data/user_de/0/com.mobile.legends/code_cache/com.android.skia.shaders_cache
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm:/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a
android.security.net.config.RootTrustManagerFactorySpi
putProviderProperty.AndroidNSSP
putProviderProperty.AndroidNSSP
设置Tool的包名为:com.mobile.legends---获取了appContext:有值-----》com.mobile.legends---选择的 SO 文件版本: lib/armeabi-v7a/
VM with version 2.1.0 has multidex support
com.mobile.legends.Gumiho.R
zip file "/system/framework/org.apache.http.legacy.jar"
[zip file "/system/framework/org.apache.http.legacy.jar"]
[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]
DexPathList[[zip file "/system/framework/org.apache.http.legacy.jar"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
Didn't find class "com.mobile.legends.Gumiho.R" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.jar"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"
[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"]
[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]
DexPathList[[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
Didn't find class "com.mobile.legends.Gumiho.R" on path: DexPathList[[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
No resource references to update in package com.mobile.legends.Gumiho
com.mobile.legends.Danmaku.R
zip file "/system/framework/org.apache.http.legacy.jar"
[zip file "/system/framework/org.apache.http.legacy.jar"]
[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]
DexPathList[[zip file "/system/framework/org.apache.http.legacy.jar"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
Didn't find class "com.mobile.legends.Danmaku.R" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.jar"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"
[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"]
[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]
DexPathList[[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
Didn't find class "com.mobile.legends.Danmaku.R" on path: DexPathList[[zip file "/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk"],nativeLibraryDirectories=[/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm, /data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /vendor/lib]]
No resource references to update in package com.mobile.legends.Danmaku
/data/user/0/com.mobile.legends/shared_prefs
__SharedPreference__.xml
/data/user/0/com.mobile.legends/shared_prefs/__SharedPreference__.xml
/data/user/0/com.mobile.legends/shared_prefs/__SharedPreference__.xml.bak
0
1
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/armeabi-v7a/liblogic.bytes
18589312
1
1
/storage/emulated/0/Android
/storage/emulated/0/Android/data
/storage/emulated/0/Android/data/com.mobile.legends
5c561677-4db3-4470-a6bb-47aedaeaec42
5c561677-4db3-4470-a6bb-47aedaeaec42_18589312(1.8.58.9312)_1.8.58.931.2_2019.4.33-2.01.0040
/storage/emulated/0/Android/data/com.mobile.legends/files
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/version/android/realversion.xml
0
1
29cf4a05-8ecb-6b80-24b4-06f3bcbd1761
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
/storage/emulated/0/Android/data/com.mobile.legends/files
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
23.01
5c561677-4db3-4470-a6bb-47aedaeaec42
1024,1
28380-28380-2
1
142879204
7014c60c-f376-4ce4-aa78-9e6a75f53845
6772|1579061620|0
0
Init, sandbox: false, channel: and_usa, APKVersionCode: 18589312, clientVersion: 18589312, externalClientVersion: 1.8.58.931.2, engineVersion: 2019.4.33(2.01.0040), OSVersion: 10, GPSAdId:
zh-CN
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
/storage/emulated/0/Android
/storage/emulated/0/Android/data
/storage/emulated/0/Android/data/com.mobile.legends
/storage/emulated/0/Android/data/com.mobile.legends/cache
/storage/emulated/0/Android/data/com.mobile.legends/cache/agentweb-cache
zh-CN
zh-CN
/data/user/0/com.mobile.legends/cache
/data/user/0/com.mobile.legends/files
/storage/emulated/0/HighlightsGSDKVideo-MobileLegends
/storage/emulated/0/SimpleVideo-MobileLegends
/storage/emulated/0/Android
/storage/emulated/0/Android/data
/storage/emulated/0/Android/data/com.mobile.legends
/storage/emulated/0/Android/data/com.mobile.legends/cache
/.
com.mobile.legends.apm
zh-CN
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
zh-CN
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
zh-CN
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
my.devices.com.mobile.legends.widthPixels
my.devices.com.mobile.legends.heightPixels
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
zh-CN
zh-CN
zh-CN
settings
my.devices.com.mobile.legends.android_id
com.mobile.legends/com.moba.unityplugin.MobaGameMainActivityWithExtractor
__LAST_APK_UUID_true__
InitActivity, isMain: true, LastAPKUUId: 5c561677-4db3-4470-a6bb-47aedaeaec42, APKUUId: 5c561677-4db3-4470-a6bb-47aedaeaec42
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
29576-29576-2
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
2008439c-93d3-462e-991a-d3a6fe7e9628
InitActivity, isMain: true, InstallUUID: 7014c60c-f376-4ce4-aa78-9e6a75f53845, LastAPKUUId: 5c561677-4db3-4470-a6bb-47aedaeaec42, APKUUId: 5c561677-4db3-4470-a6bb-47aedaeaec42, AppBeginTime: 1708930135765, LaunchCount: 8, SceneName: MobaGameMainActivityWithExtractor, SceneProcessId: 29576-29576-2, SceneSessionId: 2008439c-93d3-462e-991a-d3a6fe7e9628, ExtractUUId: 5c561677-4db3-4470-a6bb-47aedaeaec42&7014c60c-f376-4ce4-aa78-9e6a75f53845&27a5d2e3-d33a-4602-b90d-2ec2338bcb14
/sys/devices/system/cpu/cpu0
/sys/devices/system/cpu/cpu1
/sys/devices/system/cpu/cpu2
/sys/devices/system/cpu/cpu3
/sys/devices/system/cpu/cpu4
/sys/devices/system/cpu/cpu5
/sys/devices/system/cpu/cpu6
/sys/devices/system/cpu/cpu7
/sys/devices/system/cpu/cpufreq
/sys/devices/system/cpu/cpuidle
/sys/devices/system/cpu/power
/sys/devices/system/cpu/modalias
/sys/devices/system/cpu/kernel_max
/sys/devices/system/cpu/possible
/sys/devices/system/cpu/online
/sys/devices/system/cpu/offline
/sys/devices/system/cpu/isolated
/sys/devices/system/cpu/uevent
/sys/devices/system/cpu/core_ctl_isolated
/sys/devices/system/cpu/present
/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_max_freq
Main-OnCreate|2457600|5724|3508
-
/sys/classet/wlan0/address
4c:49:e3:f6:9b:a3
java.security.MessageDigestSpi
%032x
0
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
settings
my.devices.com.mobile.legends.android_id
18589312|18589312|0
Main-OnCreate|2457600|5724|3508||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
Thread-4
__gpm__.xml
/data/user/0/com.mobile.legends/shared_prefs/__gpm__.xml
/data/user/0/com.mobile.legends/shared_prefs/__gpm__.xml.bak
18589312
1.8.58
MobileLegends
6571
and_usa
1858
6772
1579061620
18589312
https://gpm-mon-va.bytegsdk.com/monitor/collect/c/exception/dump_collection
https://gpm-mon-va.bytegsdk.com/monitor/collect/c/custom_exception/zip
51a30977be23f032-1708930135810-29576G
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm/libnpth.so
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm:/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm/libnpth_tools.so
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm:/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm/libnpth_tools.so
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm/libnpth_dumper.so
npth/RuntimeContext/
npth/CrashLogJava
npth/CrashLogSimple
npth/CrashLogNative
npth/procanr
npth/CrashCommonLog
npthative_uuid
npth/alogCrash
npth/issueCrashTimes
npth/availableCheck
npth/killHistory
npth/monitorLog
npth/asan
npth/crashCommand
pth/selflib/
pth
npth/ProcessTrack/
npth/configCrash/configFile
npth/configCrashetworkState
npth/configCrash/configInvalid
npth/configCrash/configFile
npth/configCrash/configNative
npth/configCrash/oldConfigFile
npth/configCrash/
npth/has_anr_signal_
npth/configCrash/keyEvents
npth/tmp/logerr.txt
npth/configCrash/
npth/tmpFiles
npth/GwpReport
npth/configCrash/
/data/user/0/com.mobile.legends/filespth
npth init total cost : 12 ms
npth init, native = true
log.looper.10146.default_npth_thread.slow
/data/user/0/com.mobile.legends/filespth/native_uuid
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929364551_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929400090_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929484774_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929832387_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929914346_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708929980833_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708930102247_nativeuuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid
1708930135810_native_uuid.txt
/data/user/0/com.mobile.legends/filespth/native_uuid/1708930135810_native_uuid.txt
/data/user/0/com.mobile.legends/filespth/configCrash/configInvalid
open failed: ENOENT (No such file or directory)
/data/user/0/com.mobile.legends/filespth/configCrash/configInvalid: open failed: ENOENT (No such file or directory)
/data/user/0/com.mobile.legends/filespth/configCrash/configFile
log.looper.10146.TeaThread.slow
applog_stats.xml
/data/user/0/com.mobile.legends/shared_prefs/applog_stats.xml
npth/RuntimeContext/main
/data/user/0/com.mobile.legends/filespth/RuntimeContext/main
Unable to resolve host "report.ml.youngjoygame.com": No address associated with hostname
/data/user/0/com.mobile.legends/shared_prefs/applog_stats.xml.bak
java.net.UnknownHostException: Unable to resolve host "report.ml.youngjoygame.com": No address associated with hostname
/data/user/0/com.mobile.legends/filespth/RuntimeContext/did
/data/user/0/com.mobile.legends/filespth/RuntimeContext/device_uuid
/data/user/0/com.mobile.legends/filespth/RuntimeContext/main/1708929980306-1708929983914.ctx2
{"session_id":"5e0f6c2f-62c3-4e24-83d2-96839048ebc3","cnt_success":0,"cnt_failure":0}
java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:156)
at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:156)
{"session_id":"5e0f6c2f-62c3-4e24-83d2-96839048ebc3","cnt_success":0,"cnt_failure":0}
java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:103)
/data/user/0/com.mobile.legends/filespth/RuntimeContext/main/1708929980306-1708929983924.ctx2
log.looper.10146.queued-work-looper.slow
device_register_migrate_detector.xml
com.ss.android.common.applog.AppLog@963e032
AppLog = com.ss.android.common.applog.AppLog@963e032 pid = 29576
/data/user/0/com.mobile.legends/filespth/RuntimeContext/main/1708930101469-1708930102885.ctx2
/data/user/0/com.mobile.legends/shared_prefs/device_register_migrate_detector.xml
/data/user/0/com.mobile.legends/shared_prefs/device_register_migrate_detector.xml.bak
Main-InitGPMDone|2457600|5724|3507
/sys/classet/wlan0/address
/data/user/0/com.mobile.legends/filespth/RuntimeContext/main/1708930101469-1708930102906.ctx2
at java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:103)
4c:49:e3:f6:9b:a3
npth_logcat.so
%032x
java.net.InetAddress.getAllByName(InetAddress.java:1152)
0
at java.net.InetAddress.getAllByName(InetAddress.java:1152)
0e76352fcb0597673bc1003665fdf010
androidx.multidex.MultiDexApplication@3884de7
#isNewUserMode false. context=androidx.multidex.MultiDexApplication@3884de7 isDebugChannel()=false
/data/user/0/com.mobile.legends/filespth/killHistory
MigrateDetector#isMigrateInternal cs=STATE_DISABLED ss=STATE_DISABLED
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info
proc/29576
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
MigrateDetector#constructor migrate=false
snssdk_openudid.xml
my.devices.com.mobile.legends.android_id
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576
java.net.Socket.<init>(Socket.java:218)
at java.net.Socket.<init>(Socket.java:218)
18589312|18589312|0
Main-InitGPMDone|2457600|5724|3507||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576/cmd
/data/user/0/com.mobile.legends/shared_prefs/snssdk_openudid.xml
com.moba.unityplugin.SDKCommonReport$SendReportThread.run(SDKCommonReport.java:79)
at com.moba.unityplugin.SDKCommonReport$SendReportThread.run(SDKCommonReport.java:79)
/data/user/0/com.mobile.legends/shared_prefs/snssdk_openudid.xml.bak
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576/app_start_time
android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
android.system.GaiException: android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
Caused by: android.system.GaiException: android_getaddrinfo failed: EAI_NODATA (No address associated with hostname)
/data/user/0/com.mobile.legends/filespth/killHistory/pid_tid
current be worker com.mobile.legends
getCachedString key = device_id value = null
libcore.io.Linux.android_getaddrinfo(Native Method)
at libcore.io.Linux.android_getaddrinfo(Native Method)
getCachedString key = device_id value = null
/data/user/0/com.mobile.legends/filespth/killHistory/proc
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380
是否限定重试次数 isRetryLimit: true
fc301f46-4f0c-402c-ab47-c22d16064298
libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:74)
at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:74)
libcore.io.BlockGuardOs.android_getaddrinfo(BlockGuardOs.java:200)
at libcore.io.BlockGuardOs.android_getaddrinfo(BlockGuardOs.java:200)
libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:74)
at libcore.io.ForwardingOs.android_getaddrinfo(ForwardingOs.java:74)
proc/29576
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576
process 28471 is killed
java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:135)
init fail empty field: appkey
at java.net.Inet6AddressImpl.lookupHostByName(Inet6AddressImpl.java:135)
1080x1920
... 4 more
android:fragment:0
/data/user/0/com.mobile.legends/filespth/configCrash/keyEvents
proc/28471
en-US
/data/user/0/com.mobile.legends/filespth/configCrash/networkState
/data/user/0/com.mobile.legends/filespth/configCrash
en-US
/data/user/0/com.mobile.legends/filespth/configCrash/disasterLock
getprop ro.build.version.emui
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471
my.devices.com.mobile.legends.widthPixels
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/app_start_time
my.devices.com.mobile.legends.heightPixels
1708930102247
my.devices.com.mobile.legends.density
my.devices.com.mobile.legends.densityDpi
my.devices.com.mobile.legends.xdpi
my.devices.com.mobile.legends.ydpi
-28471
zh-CN
/storage/emulated/0/Android
/storage/emulated/0/Android/data
/storage/emulated/0/Android/data/com.mobile.legends
/storage/emulated/0/Android/data/com.mobile.legends/files
/storage/emulated/0/Android/data/com.mobile.legends/files/fastbot
/data/user/0/com.mobile.legends/filespth/CrashLogJava
/data/user/0/com.mobile.legends/filespth/CrashLogNative
/data/user/0/com.mobile.legends/filespth/killHistory/proc/29576/procHistory.txt
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/cmd
DecorView[]
com.mobile.legends:UnityKillsMe
android.widget.LinearLayout
android.widget.ViewStub
android.webkit.ViewStub
android.app.ViewStub
android.view.ViewStub
android.widget.FrameLayout
Thread[main,5,main]
zh_CN@numbers=default
android/icu/impl/data/icudt63b/zh_CN.res
android/icu/impl/data/icudt63b/zh_CN.res#0#zh_CN
com.bytedance.crash.java.a@3f0b9e2
com.moba.unityplugin.ExceptionHandler$1@cee3173
ExceptionHandler, pid: 29576, thread: Thread[main,5,main], tid: 2, default uncaught exception handler: com.bytedance.crash.java.a@3f0b9e2, current uncaught exception handler: com.moba.unityplugin.ExceptionHandler$1@cee3173
Timer-0
npth/ProcessTrack/19779
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779
Thread-5
android/icu/impl/data/icudt63b/zh_CN.res
getprop ro.build.version.emui
zh_CN@numbers=default
Thread[main,5,main]
com.moba.unityplugin.MobaGameMainActivityWithExtractor@c73438a
zh_Hans_CN
com.bytedance.crash.java.a@3f0b9e2
com.moba.unityplugin.ExceptionHandler$1@cee3173
android/icu/impl/data/icudt63b/zh_CN.res
com.moba.unityplugin.ExceptionHandler$1@cee3173
install, pid: 29576, thread: Thread[main,5,main], tid: 2, context: com.moba.unityplugin.MobaGameMainActivityWithExtractor@c73438a, default uncaught exception handler: com.bytedance.crash.java.a@3f0b9e2, current uncaught exception handler: com.moba.unityplugin.ExceptionHandler$1@cee3173
android/icu/impl/data/icudt63b/zh_Hans_CN.res
android/icu/impl/data/icudt63b/zh_Hans_CN.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_CN.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_Hans_CN.res
android/icu/impl/data/icudt63b/zh_Hans_CN.res#0#zh_CN
pool-1-thread-
pool-1-thread-1
android/icu/impl/data/icudt63b/zh_Hans_CN.res
android/icu/impl/data/icudt63b/zh_Hans_CN.res
android/icu/impl/data/icudt63b/zh_Hans.res
/sys/classet/wlan0/address
29
4c:49:e3:f6:9b:a3
%040x
android/icu/impl/data/icudt63b/zh_Hans.res
android/icu/impl/data/icudt63b/zh_Hans.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_Hans.res
android/icu/impl/data/icudt63b/zh.res
android/icu/impl/data/icudt63b/zh.res#0#zh_CN
android/icu/impl/data/icudt63b/zh.res
android/icu/impl/data/icudt63b/root.res
com.facebook.katana.provider.AttributionIdProvider
android/icu/impl/data/icudt63b/zh_Hans.res#0#zh_CN
0
android/icu/impl/data/icudt63b/zh.res
b18a08a96df7f579400b8d440d24af3aac7902b4
Failed to find provider info for com.facebook.katana.provider.AttributionIdProvider
b18a08a96df7f579400b8d440d24af3aac7902b4
b18a08a96df7f579400b8d440d24af3aac7902b4
android/icu/impl/data/icudt63b/root.res#0#zh_CN
%032x
android/icu/impl/data/icudt63b/zh_Hans.res
+0800
android/icu/impl/data/icudt63b/zh.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_Hans.res
android/icu/impl/data/icudt63b/zh_Hans.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_CN.res
android/icu/impl/data/icudt63b/zh_CN.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_Hans.res#0#zh_CN
android/icu/impl/data/icudt63b/zh_CN.res
android/icu/impl/data/icudt63b/zh_CN.res#0#zh_CN
hm zh-CN
eng.thouge.20240222.120057
getprop ro.build.version.emui
+0800
hm zh-CN
0
Hm zh-CN
0e76352fcb0597673bc1003665fdf010
Hm zh-CN
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
hms zh-CN
hms zh-CN
%032x
0
fe8dd37b6aefaeb87bc0f8d12607ecda
fe8dd37b6aefaeb87bc0f8d12607ecda
Hms zh-CN
fe8dd37b6aefaeb87bc0f8d12607ecda
/data/user/0/com.mobile.legends/shared_prefs
DeviceSettings.xml
/data/user/0/com.mobile.legends/shared_prefs/DeviceSettings.xml
Hms zh-CN
/data/user/0/com.mobile.legends/shared_prefs/DeviceSettings.xml.bak
/storage/emulated/0/Android/data/com.mobile.legends/files
CNY
/storage/emulated/0/Android/data/com.mobile.legends/files/____x_y_z____
XiaomiXiaomi
getprop ro.letv.release.version
CNY
CNX
CNH
GetPersistentDataPath, cached path: /storage/emulated/0/Android/data/com.mobile.legends/files
CNX
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/
android/icu/impl/data/icudt63b/curr/zh_CN.res
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets
android/icu/impl/data/icudt63b/curr/zh_CN.res#0#zh_CN
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/_extractor_
android/icu/impl/data/icudt63b/curr/zh_CN.res
zh_Hans_CN
Main-InitReportDone|2457600|5724|3502
android/icu/impl/data/icudt63b/curr/zh_Hans_CN.res
/sys/classet/wlan0/address
android/icu/impl/data/icudt63b/curr/zh_CN.res
android/icu/impl/data/icudt63b/curr/zh_Hans_CN.res#0#zh_CN
android/icu/impl/data/icudt63b/curr/zh_Hans_CN.res
android/icu/impl/data/icudt63b/curr/zh_Hans.res
android/icu/impl/data/icudt63b/curr/zh_Hans.res#0#zh_CN
android/icu/impl/data/icudt63b/curr/zh_Hans.res
android/icu/impl/data/icudt63b/curr/zh.res
android/icu/impl/data/icudt63b/curr/zh.res#0#zh_CN
android/icu/impl/data/icudt63b/curr/zh.res
android/icu/impl/data/icudt63b/curr/zh_CN.res#0#zh_CN
android/icu/impl/data/icudt63b/curr/root.res
android/icu/impl/data/icudt63b/curr/root.res#0#zh_CN
android/icu/impl/data/icudt63b/curr/zh_Hans.res
android/icu/impl/data/icudt63b/curr/zh_Hans.res#0#zh_CN
Currencies/USD
US$
美元
zh_CN@numbers=default
android/icu/impl/data/icudt63b/zh_CN.res
android/icu/impl/data/icudt63b/zh_CN.res#0#zh_CN
NumberElements/latn/symbols
Currencies/CNY
¥
android/icu/impl/data/icudt63b/curr/zh_Hans_CN.res
4c:49:e3:f6:9b:a3
人民币
com.ss.android.deviceregister.utils.Cdid.xml
%032x
0
Currencies/USD
0e76352fcb0597673bc1003665fdf010
/data/user/0/com.mobile.legends/shared_prefs/com.ss.android.deviceregister.utils.Cdid.xml
0e76352fcb0597673bc1003665fdf010
android/icu/impl/data/icudt63b/curr/zh_Hans_CN.res#0#zh_CN
-
/data/user/0/com.mobile.legends/shared_prefs/com.ss.android.deviceregister.utils.Cdid.xml.bak
0e76352fcb0597673bc1003665fdf010
android/icu/impl/data/icudt63b/curr/zh_Hans.res
android/icu/impl/data/icudt63b/curr/zh_Hans.res#0#zh_CN
en-US
Currencies/USD
18589312|18589312|0
Currencies/USD
Main-InitReportDone|2457600|5724|3502||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
bfb6d9e8-c383-4a11-aa47-ff56db9a3ff9
29576 afterNpthInit noValue 2024-02-26@14-48-55.972
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm/libil2cpp.so
/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/lib/arm:/data/app/com.mobile.legends-mXfPBskqadZ7OPredSR1Lg==/base.apk!/lib/armeabi-v7a
Currencies/CNY
afterNpthInit delay:0
Currencies/USD
MobaGameMainActivity, onCreate, This is Repack IL2CPP version: 2010033
TTDefaultExecutors-1-Thread-
MobaGameMainActivity, onCreate, This is Repack IL2CPP version: 2010033
TTCpuExecutors-2-Thread-
TTScheduledExecutors-3-Thread-
open failed: ENOENT (No such file or directory)
Thread-6
TTDownLoadExecutors-4-Thread-
/data/user/0/com.mobile.legends/filespth/configCrash/configInvalid: open failed: ENOENT (No such file or directory)
Main-Load_il2cppDone|2457600|5724|3502
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings
getCachedString key = device_id value = null
TTSerialExecutors-5-Thread-
getDeviceId() called,return value :
/sys/classet/wlan0/address
4c:49:e3:f6:9b:a3
-
TTBackgroundExecutors-1-Thread-
%032x
0
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
com.mobile.legends_UnityKillsMe_2024-02-26@14-48-22_28471
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_UnityKillsMe_2024-02-26@14-48-22_28471
TTDefaultExecutors-1-Thread-1
getCachedString key = device_id value = null
0e76352fcb0597673bc1003665fdf010
getDeviceId() called,return value :
18589312|18589312|0
Main-Load_il2cppDone|2457600|5724|3502||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/cmd
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/version/android/realversion.xml
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_UnityKillsMe_2024-02-26@14-48-22_28471/cmd
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/armeabi-v7a/liblogic.bytes
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/app_start_time
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/arm64-v8a/liblogic.bytes
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_UnityKillsMe_2024-02-26@14-48-22_28471/app_start_time
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/x86/liblogic.bytes
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata/global-metadata.dat
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/armeabi-v7a/liblogic.bytes.new
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/arm64-v8a/liblogic.bytes.new
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/procHistory.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/x86/liblogic.bytes.new
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata/global-metadata.dat.new
18589312
18589312(1.8.58.9312)
2019.4.33-2.01.0040
5c561677-4db3-4470-a6bb-47aedaeaec42_18589312(1.8.58.9312)_1.8.58.931.2_2019.4.33-2.01.0040
checkOverrideInstall, isMain: true, cached UUID: 5c561677-4db3-4470-a6bb-47aedaeaec42_18589312(1.8.58.9312)_1.8.58.931.2_2019.4.33-2.01.0040
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_UnityKillsMe_2024-02-26@14-48-22_28471/procHistory.txt
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/armeabi-v7a/liblogic.bytes
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/procHistory.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/arm64-v8a/liblogic.bytes
npth/ProcessTrack/19779
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/x86/liblogic.bytes
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata/global-metadata.dat
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release&aid=2010
com.mobile.legends_UnityKillsMe.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Metadata/global-metadata.dat
global-metadata.dat
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_UnityKillsMe.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/global-metadata.dat
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/cmd
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/app_start_time
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28471/procHistory.txt
global-metadata.dat.patch
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/global-metadata.dat.patch
global-metadata.dat.patch_rename
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/global-metadata.dat.patch_rename
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release&aid=2010&crash=npth
process 28380 is killed
liblogic.bytes
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/liblogic.bytes
proc/28380
liblogic.bytes.patch
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/liblogic.bytes.patch
liblogic.bytes.patch_rename
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/app_start_time
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/liblogic.bytes.patch_rename
1708930101469
logic.unity3d
java.security.KeyStoreSpi
-28380
/data/user/0/com.mobile.legends/filespth/CrashLogJava
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/logic.unity3d
/system/etc/security/cacerts
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/cmd
logic.unity3d.patch
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/logic.unity3d.patch
/data/misc
/data/misc/user
/data/misc/user/0
/data/misc/user/0/cacerts-removed
com.mobile.legends
npth/ProcessTrack/19779
logic.unity3d.patch_rename
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/logic.unity3d.patch_rename
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779
ArtResource.unity3d
com.mobile.legends_2024-02-26@14-48-21_28380
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_2024-02-26@14-48-21_28380
/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release&aid=2010&crash=npth
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/ArtResource.unity3d
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/cmd
class com.android.org.conscrypt.OpenSSLSocketFactoryImpl is loaded
ArtResource.unity3d.patch
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_2024-02-26@14-48-21_28380/cmd
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/ArtResource.unity3d.patch
java.lang.IllegalAccessException: java.lang.Class<com.android.org.conscrypt.OpenSSLSocketFactoryImpl> is not accessible from java.lang.Class<javax.net.ssl.SSLSocketFactory>
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/app_start_time
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_2024-02-26@14-48-21_28380/app_start_time
SSLSocketFactory instantiation failed: java.lang.IllegalAccessException: java.lang.Class<com.android.org.conscrypt.OpenSSLSocketFactoryImpl> is not accessible from java.lang.Class<javax.net.ssl.SSLSocketFactory>
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/procHistory.txt
ArtResource.unity3d.patch_rename
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/ArtResource.unity3d.patch_rename
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_2024-02-26@14-48-21_28380/procHistory.txt
Document.unity3d
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/Document.unity3d
Document.unity3d.patch
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/28603_lock
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/Document.unity3d.patch
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends_2024-02-26@14-48-21_28380/28603_lock
Document.unity3d.patch_rename
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/procHistory.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/Document.unity3d.patch_rename
npth/ProcessTrack/19779
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779
com.mobile.legends.txt
Main-CheckAssetsAndFileDone|2457600|5724|3503
/data/user/0/com.mobile.legends/filespth/ProcessTrack/19779/com.mobile.legends.txt
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release&aid=2010&crash=npth
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/cmd
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/app_start_time
/sys/classet/wlan0/address
https://mon-va.tiktokv.com/monitor/appmonitor/v3/settings?update_version_code=30106117&os=Android&app_version=3.1.6-rc.67-g.oversea&device_id=&channel=release&aid=2010&crash=npth
4c:49:e3:f6:9b:a3
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/procHistory.txt
%032x
/data/user/0/com.mobile.legends/filespth/killHistory/proc/28380/28603_lock
0
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
https://mon-va.tiktokv.com/
https://mon-va.tiktokv.com/
https.proxyHost
proxyHost
0e76352fcb0597673bc1003665fdf010
socksProxyHost
18589312|18589312|0
Main-CheckAssetsAndFileDone|2457600|5724|3503||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/comlibs/armeabi-v7a/liblogic.bytes
logicLastModified: 1708929362000, length: 142879204, appLastUpdateTime: 1708929074444, appFirstInstallTime: 1708929074444
canStartUnity, logicLastModified: 1708929362000, length: 142879204, appLastUpdateTime: 1708929074444, appFirstInstallTime: 1708929074444
Main-RenameUnityDataStart|2457600|5724|3503
/sys/classet/wlan0/address
4c:49:e3:f6:9b:a3
%032x
0
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
0e76352fcb0597673bc1003665fdf010
18589312|18589312|0
Main-RenameUnityDataStart|2457600|5724|3503||0e76352fcb0597673bc1003665fdf010|38d03a6f83ac0280|and_usa&7014c60c-f376-4ce4-aa78-9e6a75f53845|armeabi-v7a|MI 6&Xiaomi|10|2019.4.33|2.01.0040|0|8
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata/global-metadata.dat
global-metadata length:29061940
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Metadata
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Resources
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/mconfig
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/browscap.ini
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/web.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/Browsers/Compat.browser
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/web.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/Browsers/Compat.browser
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/web.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/Browsers/Compat.browser
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/mconfig/config.xml
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Metadata/global-metadata.dat
Unable to resolve host "mon-va.tiktokv.com": No address associated with hostname
java.net.UnknownHostException: Unable to resolve host "mon-va.tiktokv.com": No address associated with hostname
serviceName npthStart not sampled
com.mobile.legends.BuildConfig
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Resources/I18N.CJK.dll-resources.dat
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Resources/mscorlib.dll-resources.dat
{"header":{"sdk_version":30106117,"sdk_version_name":"3.1.6-rc.67-g.oversea","bytrace_id":"1dfdfdb4-6fb7-4ed8-ae27-36849b2fa2ed-28380","update_version_code":18589312,"channel":"and_usa","version_code":1858,"app_version":"1.8.58","aid":6571,"first_update_launch":0,"manifest_version_code":1858,"version_get_time":0},"mira_init":true,"filters":{},"miniapp_id":0}
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Resources/System.dll-resources.dat
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Resources/System.Runtime.Serialization.dll-resources.dat
getCachedString key = device_id value = null
getDeviceId() called,return value :
RenameUnityData, delete elapsed time: 27 milliseconds, FROM: /storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/
com.bytedance.services.slardar.config.IConfigManager__ServiceProxy
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Resources
com.moba.unityplugin.MobaGameMainActivityWithExtractor.onCreate@c73438a
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc
29576 startAnrInfoMonitor currentProcess 2024-02-26@14-48-56.071
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono
29576 activityLifeCycle com.moba.unityplugin.MobaGameMainActivityWithExtractor.onCreate@c73438a 2024-02-26@14-48-55.873
npth/has_anr_signal_com.mobile.legends
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono
/data/user/0/com.mobile.legends/filespth/has_anr_signal_com.mobile.legends
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/1.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/mconfig
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/browscap.ini
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog
/data/user/0/com.mobile.legends/filespth/CrashLogJava
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0
/data/user/0/com.mobile.legends/filespth/CrashCommonLog
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/1.0/machine.config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/asdawd
/data/user/0/com.mobile.legends/filespth/CrashLogJava
/data/user/0/com.mobile.legends/filespth/CrashLogSimple
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/1.0/machine.config
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G/deleted
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G/flog.txt
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G/header.bin
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G/tombstone.txt
/data/user/0/com.mobile.legends/filespth/CrashLogNative/97f0cb02a82f458e-1708929831900-8673G/minidump
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/machine.config
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G/deleted
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/web.config
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G/flog.txt
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G/header.bin
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G/tombstone.txt
/data/user/0/com.mobile.legends/filespth/CrashLogNative/3562604a492b7d07-1708929913836-14915G/minidump
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/Browsers
/data/user/0/com.mobile.legends/filespth/procanr
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/2.0/Browsers/Compat.browser
/data/user/0/com.mobile.legends/filespth/GwpReport
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929398502
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929398502/info.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/Browsers/Compat.browser
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929398502/hasJavaCrash
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929398502/hasNativeCrash
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929398502/hashAnrCrash
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929912723
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929912723/info.txt
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929912723/hasJavaCrash
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/machine.config
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929912723/hasNativeCrash
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708929912723/hashAnrCrash
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708930135105
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708930135105/info.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/settings.map
/data/user/0/com.mobile.legends/filespth/killHistory/kill_info/1708930135105/logcat.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/2.0/web.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/machine.config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/threads.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/web.config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/meminfo.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/Browsers
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.0/Browsers/Compat.browser
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/fds.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/threads.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/Browsers/Compat.browser
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/meminfo.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/fds.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/fds.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/machine.config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/pthreads.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/rountines.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/settings.map
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
arm64-v8a, armeabi-v7a, armeabi
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.0/web.config
arm64-v8a, armeabi-v7a, armeabi
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/settings.map
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/web.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/Browsers
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/4.5/Browsers/Compat.browser
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/Browsers/Compat.browser
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/machine.config
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/settings.map
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/map_size.txt
SYSTEM:278814720
APK:1417216
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/4.5/web.config
NATIVE_HEAP:17207296
ANON:136744960
ASHMEM:12288
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/mconfig
OTHER:16269312
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/etc/mono/mconfig/config.xml
DATA:33058816
DEVICES:6135808
NAMELESS:11321344
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/mconfig/config.xml
SHARED_MEMORY:0
JAVA_RUNTIME:759951360
DMABUF:0
THREAD_STACK:44167168
GPU:1200128
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/browscap.ini
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/3562604a492b7d07-1708929913836-14915G/external_files
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/threads.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/meminfo.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/etc/mono/config
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/fds.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/threads.txt
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Metadata
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData/Managed/Metadata/global-metadata.dat
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/meminfo.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/storage/emulated/0/Android/data/com.mobile.legends/files/dragon2017/assets/UnityData_NEW/Managed/Metadata/global-metadata.dat
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G/fds.txt
/data/user/0/com.mobile.legends/filespth/CrashCommonLog/97f0cb02a82f458e-1708929831900-8673G