-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadbloat.sh
executable file
·1316 lines (1307 loc) · 77.7 KB
/
adbloat.sh
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
#!/usr/bin/env bash
start() {
adb shell pm list packages -3 |
cut -d ':' -f 2 |
tr -d '\r' |
xargs -L1 -t adb shell pm uninstall -k --user 0
adb shell pm list packages -s |
cut -d ':' -f 2 |
tr -d '\r' |
xargs -L1 -t adb shell pm clear --user 0
adb shell pm list packages |
cut -d ':' -f 2 |
tr -d '\r' |
xargs -L1 -t adb shell pm reset-permissions -p
}
tweaks() {
echo -e "Applying Tweaks ..."
adb shell device_config put runtime_native_boot pin_camera false
adb shell device_config put launcher ENABLE_QUICK_LAUNCH_V2 true
adb shell device_config put launcher enable_quick_launch_v2 true
adb shell device_config put privacy location_access_check_enabled false
adb shell device_config put privacy location_accuracy_enabled false
adb shell device_config put privacy safety_protection_enabled true
adb shell device_config put activity_manager use_compaction true
adb shell device_config put activity_manager set_sync_disabled_for_tests persistent
adb shell device_config put activity_manager enable_background_cpu_boost true
adb shell device_config put activity_manager force_high_refresh_rate true
adb shell device_config put graphics render_thread_priority high
adb shell device_config put graphics enable_gpu_boost true
adb shell device_config put graphics enable_cpu_boost true
adb shell device_config put surfaceflinger set_max_frame_rate_multiplier 0.5
adb shell device_config put systemui window_cornerRadius 0
adb shell device_config put systemui window_blur 0
adb shell device_config put systemui window_shadow 0
adb shell dumpsys deviceidle whitelist +com.android.systemui
adb shell dumpsys power set_sampling_rate 0
adb shell cmd shortcut reset-all-throttling
adb shell cmd power set-fixed-performance-mode-enabled true
adb shell cmd power set-adaptive-power-saver-enabled false
adb shell cmd power set-mode 0
adb shell cmd netpolicy set restrict-background true
adb shell cmd appops set com.google.android.gms START_FOREGROUND ignore
adb shell cmd appops set com.google.android.gms INSTANT_APP_START_FOREGROUND ignore
adb shell cmd appops set com.google.android.ims START_FOREGROUND ignore
adb shell cmd appops set com.google.android.ims INSTANT_APP_START_FOREGROUND ignore
adb shell cmd activity idle-maintenance
adb shell cmd thermalservice override-status 1
adb shell cmd looper_stats disable
adb shell cmd display ab-logging-disable
adb shell cmd display dwb-logging-disable
adb shell pm trim-caches 999999M
adb shell pm compile -a -f --check-prof false -m speed
adb shell pm compile -a -f --secondary-dex --check-prof false -m speed
adb shell pm compile -a -f --check-prof false --compile-layouts
adb shell pm trim-caches 999999M
adb shell wipe cache
adb shell recovery --wipe_cache
adb shell rm -rf /cache/*.apk
adb shell rm -rf /cache/*.tmp
adb shell rm -rf /cache/*.log
adb shell rm -rf /data/log/*
adb shell rm -rf /data/*.log
adb shell rm -rf /data/mlog/*
adb shell rm -rf /data/klog/*
adb shell rm -rf /data/ap-log/*
adb shell rm -rf /data/cp-log/*
adb shell rm -rf /data/last_alog
adb shell rm -rf /data/last_kmsg
adb shell rm -rf /data/dontpanic/*
adb shell rm -rf /data/memorydump/*
adb shell rm -rf /data/dumplog/*
adb shell rm -rf /data/rdr/*
adb shell rm -rf /data/adb/*
adb shell rm -rf /data/tombstones/*
adb shell rm -rf /data/backup/pending/*
adb shell rm -rf /data/system/dropbox/*
adb shell rm -rf /data/system/usagestats/*
adb shell rm -rf /data/anr/*
adb shell rm -rf /data/crashdata/*
adb shell rm -rf /data/dalvik-cache/*
adb shell rm -rf /data/data/*/cache/*
adb shell rm -rf /data/cache/*.*
adb shell rm -rf /data/resource-cache/*
adb shell rm -rf /data/local/*
adb shell rm -rf /data/clipboard/*
adb shell rm -rf /dev/log/main/*
adb shell rm -rf /sdcard/log/*
adb shell rm -rf /sdcard/LogService/*
adb shell rm -rf /storage/sdcard0/LogService/*
adb shell rm -rf /storage/sdcard1/LogService/*
adb shell rm -rf /storage/sdcard0/LOST.DIR/*
adb shell rm -rf /storage/sdcard1/LOST.DIR/*
adb shell pm trim-caches 999999M
adb shell sm fstrim
adb shell logcat -P ""
adb shell logcat -c
adb shell setprop persist.log.tag S
#adb shell wm size 1080x1920
#adb shell wm density 390
adb shell settings put global DEVICE_PROVISIONED 1
adb shell settings put global ro.revision 0
adb shell settings put global ro.rom.zone 2
adb shell settings put global ro.config.rom_lite_old_features true
adb shell settings put global ro.setupwizard.enterprise_mode 1
adb shell settings put global ro.fps_enable 1
adb shell settings put global ro.fps.capsmin 60
adb shell settings put global debug.fps.render.fast 1
adb shell settings put global dont.lower.fps true
adb shell settings put global stabilizer.fps true
adb shell settings put global stable.fps.enable true
adb shell settings put global ro.vendor.display.touch.idle.enable true
adb shell settings put global persist.vendor.disable_idle_fps true
adb shell settings put global vendor.display.enable_default_color_mode 1
adb shell settings put global vendor.display.disable_scaler 0
adb shell settings put global vendor.display.disable_excl_rect 0
adb shell settings put global vendor.display.disable_excl_rect_partial_fb 1
adb shell settings put global vendor.display.enable_async_powermode 1
adb shell settings put global vendor.display.disable_inline_rotator 1
adb shell settings put global vendor.display.disable_ext_anim 1
adb shell settings put global vendor.display.idle_time 0
adb shell settings put global vendor.display.idle_time_inactive 0
adb shell settings put global vendor.display.enhance_idle_time 1
adb shell settings put global vendor.display.enable_optimize_refresh 1
adb shell settings put global vendor.display.disable_metadata_dynamic_fps 1
adb shell settings put global vendor.display.use_smooth_motion 1
adb shell settings put global vendor.display.enable_camera_smooth 1
adb shell settings put global camera.disable_zsl_mode 1
adb shell settings put global debug.refresh_rate.view_override 1
adb shell settings put global debug.threadedOpt 1
adb shell settings put secure thread_priority highest HIGHEST
adb shell settings put secure support_highfps 1
adb shell settings put secure refresh_rate_mode 2
adb shell settings put secure user_wait_timeout 0
adb shell settings put system thermal_limit_refresh_rate 0
adb shell settings put system min_frame_rate 60.0
adb shell settings put system min_refresh_rate 60.0
adb shell settings put system display_color_mode 0
adb shell settings put system remove_animations 1
adb shell settings put system reduce_animations 1
adb shell settings put system slider_animation_duration 250
adb shell settings put global window_animation_scale 0.25
adb shell settings put global transition_animation_scale 0.25
adb shell settings put global animator_duration_scale 0.0
adb shell settings put global remove_animations 1
adb shell settings put global fancy_ime_animations 0
adb shell settings put global visual_bars false
adb shell settings put global reduce_transitions 1
adb shell settings put global shadow_animation_scale 0
adb shell settings put global render_shadows_in_compositor true
adb shell settings put global window_focus_timeout 250
adb shell settings put global ro.launcher.anim.app.exit false
adb shell settings put global ro.launcher.anim.launchtask false
adb shell settings put global persist.sys.rotationanimation false
adb shell settings put global sys.rotation.animscale 0.25
adb shell settings put global sys.disable_ext_animation 1
adb shell settings put global sys.enable_grip_rejection 1
adb shell settings put global sys.refresh.dirty 0
adb shell settings put global ro.input.noresample 1
adb shell settings put global ro.config.enable_touchboost true
adb shell settings put global ro.vendor.touchfeature.gamemode.enable true
adb shell settings put global ro.floatingtouch.available 1
adb shell settings put global ro.toastshow.enable false
adb shell settings put global view.touch_slop 1
adb shell settings put global view.scroll_friction 0
adb shell settings put global view.fading_edge_length 1
adb shell settings put global persist.touch_vsync_opt 1
adb shell settings put global persist.touch_move_opt 1
adb shell settings put global touch_calibration 1
adb shell settings put global touch.size.bias 0
adb shell settings put global touch.size.isSummed 0
adb shell settings put global touch.size.scale 1
adb shell settings put global touch.pressure.scale 0.1
adb shell settings put global touch.distance.scale 0
adb shell settings put secure touch_blocking_period 0.0
adb shell settings put secure tap_duration_threshold 0.0
adb shell settings put secure long_press_timeout 250
adb shell settings put secure multi_press_timeout 250
adb shell settings put secure speed_mode_enable 1
adb shell settings put system speed_mode 1
adb shell settings put global speed_mode_on 1
adb shell settings put global enable_hardware_acceleration 1
adb shell settings put global hardware_accelerated_rendering_enabled 1
adb shell settings put global hardware_accelerated_graphics_decoding 1
adb shell settings put global hardware_accelerated_video_decode 1
adb shell settings put global hardware_accelerated_video_encode 1
adb shell settings put global media.sf.hwaccel 1
adb shell settings put global video.accelerate.hw 1
adb shell settings put global ro.config.enable.hw_accel true
adb shell settings put global ro.config.hw_voicerecord true
adb shell settings put global hwui.private_hal_readback 1
adb shell settings put global debug.hwui.render_priority 1
adb shell settings put global debug.hwui.use_partial_updates false
adb shell settings put global debug.hwui.show_layers_updates false
adb shell settings put global debug.hwui.show_layer_grid 0
adb shell settings put global debug.hwui.show_layer_bounds 0
adb shell settings put global debug.hwui.overdraw false
adb shell settings put global debug.hwui.profile false
adb shell settings put global debug.hwui.use_d2d 1
adb shell settings put global debug.hwui.use_hint_manager false
adb shell settings put global ro.vendor.hwui.platform 1
adb shell settings put global ro.hwui.renderer.disable_opaque true
adb shell settings put global ro.hwui.disable_scissor_opt false
adb shell settings put global ro.hwui.texture_cache_size 20
adb shell settings put global ro.hwui.texture_cache_flush_rate 0.5
adb shell settings put global ro.hwui.gradient_cache_size 0.1
adb shell settings put global ro.hwui.drop_shadow_cache_size 1
adb shell settings put global ro.hwui.shape_cache_size 1
adb shell settings put global ro.hwui.r_buffer_cache_size 1
adb shell settings put global ro.hwui.path_cache_size 1
adb shell settings put global ro.hwui.disable_asset_atlas true
adb shell settings put global ro.hwui.layer_cache_size 1
adb shell settings put global persist.texture_cache_opt 1
adb shell settings put global disable_hw_overlays 1
adb shell settings put global overlay_disable_force_hwc 1
adb shell settings put global renderthread.skia.reduceopstasksplitting true
adb shell settings put global skia.force_gl_texture 1
adb shell settings put global omap.enhancement true
adb shell settings put global ENFORCE_PROCESS_LIMIT false
adb shell settings put global enhanced_processing 1
adb shell settings put global restricted_device_performance 1,0
adb shell settings put global sem_enhanced_cpu_responsiveness 1
adb shell settings put global debug.multicore.processing 1
adb shell settings put global GPUTURBO_SWITCH 1
adb shell settings put global GPUTUNER_SWITCH 1
adb shell settings put global game_low_latency_mode 1
adb shell settings put global game_driver_mode 1
adb shell settings put global game_driver_all_apps 1
adb shell settings put global game_driver_opt_out_apps 1
adb shell settings put global updatable_driver_all_apps 1
adb shell settings put global updatable_driver_production_opt_out_apps 1
adb shell settings put global persist.sys.cfu_auto 1
adb shell settings put global wifi.supplicant_scan_interval 300
adb shell settings put global wifi_scan_always_enabled 0
adb shell settings put global ble_scan_always_enabled 0
adb shell settings put global mobile_data_always_on 0
adb shell settings put global background_data 0
adb shell settings put global data_saver_mode 1
adb shell settings put global ro.wifi.signal.optimized true
adb shell settings put global ro.sf.wifi_sleep_policy_default 2
adb shell settings put global ro.mds.enable true
adb shell settings put global ro.ril.hep 1
adb shell settings put global ro.mtk_lte_support 1
adb shell settings put global persist.radio.lte_enabled true
adb shell settings put global ro.config.hw_lte_support true
adb shell settings put global ro.config.hw_volte_on true
adb shell settings put global ro.config.hw_volte_dyn true
adb shell settings put global ro.config.full_network_support true
adb shell settings put global persist.eons.enabled true
adb shell settings put global persist.cust.tel.eons 1
adb shell settings put global persist.sys.klo on
adb shell settings put global persist.sys.once_scan true
adb shell settings put global persist.mot.gps.conf.from.sim false
adb shell settings put global persist.mot.gps.smart_battery 1
adb shell settings put global persist.mot.gps.assisted false
adb shell settings put global ro.mot.proximity.jitter false
adb shell settings put global ro.mot.eri.losalert.delay 1000
adb shell settings put global ro.telephony.call_ring.delay 0
adb shell settings put global persist.sys.job_delay false
adb shell settings put global persist.sys.memopt.switch 1
adb shell settings put global persist.sys.fuse.passthrough.enable true
adb shell settings put global persist.sys.art.opt.enable true
adb shell settings put global persist.sys.dalvik.multithread true
adb shell settings put global persist.sys.dalvik.hyperthreading true
adb shell settings put global dalvik.vm.dex2oat64.enabled true
adb shell settings put global dalvik.vm.heaputilization 0.25
adb shell settings put global dalvik.vm.heaptargetutilization 0.25
adb shell settings put global dalvik.vm.heapminfree 1m
adb shell settings put global dalvik.vm.dex2oat-swap true
adb shell settings put global dalvik.vm.verify-bytecode false
adb shell settings put global dalvik.vm.usejit true
adb shell settings put global dalvik.vm.usejitprofiles true
adb shell settings put global dalvik.vm.checkjni false
adb shell settings put global dalvik.vm.check-dex-sum false
adb shell settings put global dalvik.vm.debug.alloc 0
adb shell settings put global dalvik.vm.dexopt-data-only 1
adb shell settings put global dalvik.vm.dexopt-flags m=y,v=n,o=y,u=n
adb shell settings put global dalvik.vm.execution-mode int:jit
adb shell settings put global dalvik.vm.dexopt.secondary true
adb shell settings put global dalvik.vm.dexopt.thermal-cutoff 2
adb shell settings put global dalvik.vm.dex2oat-filter interpret-only
adb shell settings put global dalvik.vm.deadlock-predict off
adb shell settings put global dalvik.vm.dex2oat-backend Quick
adb shell settings put global dalvik.vm.dex2oat-minidebuginfo false
adb shell settings put global dalvik.vm.dex2oat-resolve-startup-strings false
adb shell settings put global dalvik.vm.madvise-random true
adb shell settings put global dalvik.vm.foreground-heap-growth-multiplier 1.0
adb shell settings put global dalvik.vm.jit.codecachesize 1
adb shell settings put global dalvik.vm.appimageformat lz4
adb shell settings put global dalvik.vm.systemservercompilerfilter speed
adb shell settings put global dalvik.vm.systemuicompilerfilter speed
adb shell settings put global dalvik.vm.houdini on
adb shell settings put global dalvik.vm.zygotemaxfailedboots 3
adb shell settings put global persist.vm.stackdump.threshold 0
adb shell settings put global vm.scan_unevictable_pages 0
adb shell settings put global dalvik.gc.type precise
adb shell settings put global top_app_dexopt_with_speed_profile true
adb shell settings put global pm.dexopt.nsys-library quicken
adb shell settings put global pm.dexopt.core-app quicken
adb shell settings put global pm.dexopt.shared quicken
adb shell settings put global pm.dexopt.boot verify-at-runtime
adb shell settings put global pm.dexopt.first-boot quicken
adb shell settings put global pm.dexopt.install quicken
adb shell settings put global pm.dexopt.bg-dexopt quicken
adb shell settings put global pm.dexopt.ab-ota quicken
adb shell settings put global pm.dexopt.forced-dexopt quicken
adb shell settings put global ro.dex.async.opt 1
adb shell settings put global ro.config.vm_prioritymode 2
adb shell settings put global ro.dalvik.vm.native.bridge 0
adb shell settings put global persist.sys.nativebridge 1
adb shell settings put global ro.malloc.impl jemalloc
adb shell settings put global ro.maple.enable 1
adb shell settings put global tombstoned.max_tombstone_count 20
adb shell settings put global sys.hwsholder.count 0
adb shell settings put global vnswap.enabled false
adb shell settings put global cgroup_disable memory
adb shell settings put global ro.systemui.burn_in_protection true
adb shell settings put global ro.config.hw_simpleui_enable 1
adb shell settings put global ro.config.hw_dsda true
adb shell settings put global ro.config.hw_dts true
adb shell settings put global ro.config.hw_disable_cops true
adb shell settings put global ro.config.hw_accesscontrol false
adb shell settings put global ro.config.hw_restrict_gps true
adb shell settings put global ro.config.updatelocation false
adb shell settings put global ro.config.delay_send_signal false
adb shell settings put global sys_traced 0
adb shell settings put global persist.traced.enable 0
adb shell settings put global persist.traced_perf.enable 0
adb shell settings put global wifi_verbose_logging_enabled 0
adb shell settings put global send_action_app_error 0
adb shell settings put global send_action_app_error_native 0
adb shell settings put global foreground_service_starts_logging_enabled 0
adb shell settings put global enable_diskstats_logging 0
adb shell settings put global activity_starts_logging_enabled 0
adb shell settings put global ro.config.nocheckin 1
adb shell settings put global profiler.force_disable_err_rpt 1
adb shell settings put global profiler.force_disable_ulog 1
adb shell settings put global profiler.debugmonitor false
adb shell settings put global profiler.launch false
adb shell settings put global logcat.live disable
adb shell settings put global config.disable_consumerir true
adb shell settings put global ro.debuggable 0
adb shell settings put global debug.mdpcomp.logs 0
adb shell settings put global ro.kernel.checkjni 0
adb shell settings put global debug.atrace.tags.enableflags 0
adb shell settings put global logd.kernel false
adb shell settings put global vendor.display.disable_hw_recovery_dump 1
adb shell settings put global profiler.hung.dumpdobugreport false
adb shell settings put global trustkernel.log.state disable
adb shell settings put global debug.systemui.latency_tracking 0
adb shell settings put global persist.sample.eyetracking.log 0
adb shell settings put global media.metrics.enabled 0
adb shell settings put global media.metrics 0
adb shell settings put global debug.brcm.mm.logs 0
adb shell settings put global persist.sys.miui_optimization true
adb shell settings put global sys.miui.ndcd off
adb shell settings put global sys.debug.watchdog 0
adb shell settings put global logd.logpersistd.enable false
adb shell settings put global logd.statistics 0
adb shell settings put global config.stats 0
adb shell settings put global persist.sys.watchdog_enhanced false
adb shell settings put global persist.sys.oom_crash_on_watchdog false
adb shell settings put global persist.sys.logging 0
adb shell settings put global persist.sys.loglevel 0
adb shell settings put global sys.log.app 0
adb shell settings put global ro.logd.size 0
adb shell settings put global ro.logd.size.stats 0
adb shell settings put global ro.logdumpd.enabled 0
adb shell settings put global persist.anr.dumpthr 0
adb shell settings put global persist.vendor.dpm.loglevel 0
adb shell settings put global persist.vendor.dpmhalservice.loglevel 0
adb shell settings put global persist.vendor.sys.core.enabled 0
adb shell settings put global persist.vendor.sys.modem.logging.enable false
adb shell settings put global debug.enable.wl_log 0
adb shell settings put global debug.als.logs 0
adb shell settings put global debug.svi.logs 0
adb shell settings put global log.tag.stats_log 0
adb shell settings put global ro.lmk.debug false
adb shell settings put global ro.lmk.log_stats false
adb shell settings put global sys.lmk.reportkills false
adb shell settings put global persist.sys.lmk.reportkills false
adb shell settings put global ro.config.hw.logsystem.send 0
adb shell settings put global show_non_market_apps_error 0
adb shell settings put global anr_show_error_cause false
adb shell settings put global debug.hwui.skia_atrace_enabled false
adb shell settings put global persist.sys.mdlog_dumpback 0
adb shell settings put global persist.vendor.mdlog.need_dump 0
adb shell settings put global vendor.swvdec.log.level 0
adb shell settings put global debug.sf.enable_transaction_tracing false
adb shell settings put global persist.vendor.console.silent.config 1
adb shell settings put global persist.vendor.recovery_update false
adb shell settings put global persist.binder.check.enable false
adb shell settings put global ro.statsd.enable false
adb shell settings put global ro.systemui.debug false
adb shell settings put global ro.have_aee_feature 0
adb shell settings put global ro.aee.enforcing no
adb shell settings put global ro.aee.enperf off
adb shell settings put global ro.vendor.tran_perf_plus 1
adb shell settings put global persist.vendor.product.perf 1
adb shell settings put global persist.debug.sf.statistics 0
adb shell settings put global persist.sys.crash_dumps 0
adb shell settings put global persist.sys.pstore_dumps 0
adb shell settings put global persist.debug.host.ramdump 0
adb shell settings put global persist.radio.ramdump 0
adb shell settings put global persist.ims.disableDebugLogs 1
adb shell settings put global persist.ims.disableDebugDataPathLogs 1
adb shell settings put global persist.ims.disableADBLogs 1
adb shell settings put global persist.ims.disableQXDMLogs 1
adb shell settings put global persist.ims.disableIMSLogs 1
adb shell settings put global persist.ims.disableSigHandler 1
adb shell settings put global persist.sys.qxdm no
adb shell settings put global persist.sys.qxdm_logs 0
adb shell settings put global app_usage_enabled 0
adb shell settings put global package_usage_stats_enabled 0
adb shell settings put global recent_usage_data_enabled 0
adb shell settings put global persist.service.debuggable 0
adb shell settings put global persist.logd.limit off
adb shell settings put global persist.logd.size 0
adb shell settings put global persist.bt.iot.enablelogging false
adb shell settings put global vendor.bluetooth.startbtlogger false
adb shell settings put global ro.vendor.connsys.dedicated.log 0
adb shell settings put global ro.hw_disable_instantonline true
adb shell settings put global sys.wifitracing.started 0
adb shell settings put global persist.zygote.core_dump 0
adb shell settings put global persist.ai.timedebug.enable false
adb shell settings put global persist.sys.qlogd 0
adb shell settings put global persist.sys.hw_statistics 0
adb shell settings put global persist.sys.apps_statistics 0
adb shell settings put global persist.sys.apr.enabled 0
adb shell settings put global persist.vendor.aprservice.enabled 0
adb shell settings put global persist.vendor.verbose_logging_enabled false
adb shell settings put global persist.vendor.sys.fp.dump_data 0
adb shell settings put global persist.debug.xlog.enable 0
adb shell settings put global persist.meta.dumpdata 0
adb shell settings put global persist.oem.dump 0
adb shell settings put global persist.service.crash.enable 0
adb shell settings put global persist.sys.perfettologging.enable 0
adb shell settings put global persist.sys.perf.debug false
adb shell settings put global persist.sys.offlinelog.kernel false
adb shell settings put global persist.sys.offlinelog.logcat false
adb shell settings put global persist.sys.offlinelog.logcatkernel false
adb shell settings put global persist.sys.log.user 0
adb shell settings put global persist.sys.log-main.enable 0
adb shell settings put global persist.sys.log-system.enable 0
adb shell settings put global persist.sys.log-events.enable 0
adb shell settings put global persist.sys.log-radio.enable 0
adb shell settings put global persist.sys.tcpdump.lognum 0
adb shell settings put global persist.sys.tcpdump.logsize 0
adb shell settings put global persist.sys.wifipacketlog.state false
adb shell settings put global persist.net.monitor false
adb shell settings put global persist.debug.wfd.enable 0
adb shell settings put global persist.data.qmi.adb_logmask 0
adb shell settings put global sys.deepdiagnose.support 0
adb shell settings put global ro.bionic.ld.warning 0
adb shell settings put global ro.platform.has.systemlog false
adb shell settings put global ro.vendor.qfusion_use_report_period false
adb shell settings put system status_logging_cnt 0
adb shell settings put system anr_debugging_mechanism 0
adb shell settings put system anr_debugging_mechanism_status 0
adb shell settings put system send_security_reports 0
adb shell settings put system remote_control 0
adb shell settings put system dk_log_level 0
adb shell settings put system user_log_enabled 0
adb shell settings put system window_orientation_listener_log 0
adb shell settings put system rakuten_denwa 0
adb shell settings put system mcf_continuity 0
adb shell settings put system mcf_continuity_permission_denied 1
adb shell settings put system mcf_permission_denied 1
adb shell settings put system multicore_packet_scheduler 1
adb shell settings put secure limit_ad_tracking 1
adb shell settings put secure usage_metrics_marketing_enabled 0
adb shell settings put secure USAGE_METRICS_UPLOAD_ENABLED 0
adb shell settings put secure upload_debug_log_pref 0
adb shell settings put secure upload_log_pref 0
adb shell settings put secure location_providers_allowed -network
adb shell settings put secure adaptive_connectivity_enabled 0
adb shell settings put secure ssl_session_cache null
adb shell settings put global multipath-tcp-enable 1
adb shell settings put global sys.net.support.netprio true
adb shell settings put global dns_resolvability_required 0
adb shell settings put global net.dns1 9.9.9.11
adb shell settings put global net.dns2 149.112.112.11
adb shell settings put global private_dns_mode hostname
adb shell settings put global private_dns_specifier dns11.quad9.net
adb shell settings put global wifi_mac_randomization 2
adb shell settings put global wifi_connected_mac_randomization_supported 2
adb shell settings put global wifi_safe_mode 1
adb shell settings put global wifi_stability 1
adb shell settings put global wifi_suspend_optimizations_enabled 2
adb shell settings put global persist.mm.sta.enable 0
adb shell settings put global ro.data.large_tcp_window_size true
adb shell settings put global persist.data.tcp_rst_drop true
adb shell settings put global ro.config.hw_new_wifitopdp 1
adb shell settings put global ro.config.hw_wifipro_enable true
adb shell settings put global ro.config.wifi_fast_bss_enable true
adb shell settings put global config.disable_rtt true
adb shell settings put global ro.config.hw_privacymode true
adb shell settings put global ro.config.hw_perfhub true
adb shell settings put global ro.config.hw_perfgenius true
adb shell settings put global ro.config.enable_perfhub_fling true
adb shell settings put global persist.perf.level 2
adb shell settings put global vidc.debug.perf.mode 2
adb shell settings put global vidc.debug.level 0
adb shell settings put global libc.debug.malloc 0
adb shell settings put global debug.syncopts 3
adb shell settings put global debug.hwc.logvsync 0
adb shell settings put global debug.hwc.nodirtyregion 1
adb shell settings put global debug.hwc.force_gpu 1
adb shell settings put global debug.hwc.force_gpu_vsync 1
adb shell settings put global debug.hwc.fakevsync 1
adb shell settings put global debug.hwc.otf 1
adb shell settings put global debug.hwc.winupdate 1
adb shell settings put global debug.hwc.disabletonemapping true
adb shell settings put global debug.hwui.use_buffer_age false
adb shell settings put global persist.alloc_buffer_sync true
adb shell settings put global CPU_MIN_CHECK_DURATION false
adb shell settings put global MIN_CRASH_INTERVAL false
adb shell settings put global GC_MIN_INTERVAL false
adb shell settings put global GC_TIMEOUT false
adb shell settings put global SERVICE_TIMEOUT false
adb shell settings put global PROC_START_TIMEOUT false
adb shell settings put global MAX_PROCESSES false
adb shell settings put global MAX_ACTIVITIES false
adb shell settings put global MAX_SERVICE_INACTIVITY false
adb shell settings put global MIN_RECENT_TASKS false
adb shell settings put global MAX_RECENT_TASKS false
adb shell settings put global ACTIVITY_INACTIVITY_RESET_TIME false
adb shell settings put global APP_SWITCH_DELAY_TIME false
adb shell settings put global CONTENT_APP_IDLE_OFFSET false
adb shell settings put global ro.FOREGROUND_APP_ADJ 0
adb shell settings put global ro.HOME_APP_ADJ 1
adb shell settings put global ro.VISIBLE_APP_ADJ 2
adb shell settings put global ro.PERCEPTIBLE_APP_ADJ 3
adb shell settings put global ro.HEAVY_WEIGHT_APP_ADJ 4
adb shell settings put global ro.app.optimization true
adb shell settings put global ro.launcher.dynamic true
adb shell settings put global ro.launcher.label.fastupdate true
adb shell settings put global device_idle_constants idle_duration=0
adb shell settings put global hidden_api_policy 1
adb shell settings put global hidden_api_policy_p_apps 1
adb shell settings put global hidden_api_policy_pre_p_apps 1
adb shell settings put global persist.omh.enabled 0
adb shell settings put global persist.service.lgospd.enable 0
adb shell settings put global persist.service.pcsync.enable 0
adb shell settings put global persist.sys.ssr.enable_debug 0
adb shell settings put global persist.sys.ssr.enable_ramdumps 0
adb shell settings put global persist.sys.ssr.restart_level 1
adb shell settings put global persist.sys.ap.restart_level 1
adb shell settings put global persist.sys.enable_strategy true
adb shell settings put global persist.rcs.supported 0
adb shell settings put global persist.data.profile_update true
adb shell settings put global persist.data.mode concurrent
adb shell settings put global persist.data.netmgrd.qos.enable true
adb shell settings put global persist.data.tcpackprio.enable true
adb shell settings put global persist.data.iwlan.enable true
adb shell settings put global persist.data.wda.enable true
adb shell settings put global persist.rmnet.data.enable true
adb shell settings put global persist.net.doxlat true
adb shell settings put global ro.use_data_netmgrd true
adb shell settings put global ro.com.android.dataroaming false
adb shell settings put global ro.ril.enable.managed.roaming 0
adb shell settings put global ro.wcn enabled
adb shell settings put global ro.config.ehrpd true
adb shell settings put global debug.bt.lowspeed true
adb shell settings put global debug.bt.discoverable_time 0
adb shell settings put global ro.ril.avoid.pdp.overlap 1
adb shell settings put global ro.ril.sensor.sleep.control 0
adb shell settings put global ro.config.hw_ReduceSAR true
adb shell settings put global persist.radio.NETWORK_SWITCH 2
adb shell settings put global persist.radio.no_wait_for_card 1
adb shell settings put global persist.radio.data_no_toggle 1
adb shell settings put global persist.radio.data_con_rprt true
adb shell settings put global persist.radio.data_ltd_sys_ind 1
adb shell settings put global persist.radio.add_power_save 1
adb shell settings put global persist.radio.jbims 1
adb shell settings put global persist.ril.uart.flowctrl 99
adb shell settings put global persist.sys.gz.enable false
adb shell settings put global persist.gps.qc_nlp_in_use 0
adb shell settings put global hw.nogps true
adb shell settings put global ro.pip.gated 0
adb shell settings put global ro.config.hw_gps_power_track false
adb shell settings put global ro.config.hw_support_geofence false
adb shell settings put global config.disable_location true
adb shell settings put global location_global_kill_switch 1
adb shell settings put global ro.support.signalsmooth true
adb shell settings put global ro.config.combined_signal true
adb shell settings put global ro.allow.mock.location 1
adb shell settings put global ro.com.google.locationfeatures 0
adb shell settings put global ro.com.google.networklocation 0
adb shell settings put global ro.gps.agps_provider 0
adb shell settings put global ro.ril.def.agps.feature 0
adb shell settings put global ro.ril.def.agps.mode 0
adb shell settings put global ro.vendor.net.enable_sla 1
adb shell settings put global net.tethering.noprovisioning true
adb shell settings put global security.perf_harden 0
adb shell settings put global persist.sys.resolution_change 1
adb shell settings put global ro.vendor.display.mode_change_optimize.enable true
adb shell settings put global ro.vendor.display.switch_resolution.support 1
adb shell settings put global ro.vendor.display.video_or_camera_fps.support true
adb shell settings put global ro.vendor.fps.switch.thermal true
adb shell settings put global ro.surface_flinger.protected_contents true
adb shell settings put global ro.surface_flinger.force_hwc_copy_for_virtual_displays true
adb shell settings put global ro.surface_flinger.running_without_sync_framework false
adb shell settings put global ro.surface_flinger.supports_background_blur 0
adb shell settings put global ro.surface_flinger.support_kernel_idle_timer true
adb shell settings put global ro.surface_flinger.set_display_power_timer_ms 100
adb shell settings put global ro.surface_flinger.set_idle_timer_ms 250
adb shell settings put global ro.surface_flinger.set_touch_timer_ms 500
adb shell settings put global ro.surface_flinger.set_fps_stat_timer_ms 750
adb shell settings put global ro.surface_flinger.vsync_event_phase_offset_ns 0
adb shell settings put global ro.surface_flinger.vsync_sf_event_phase_offset_ns 0
adb shell settings put global ro.surface_flinger.present_time_offset_from_vsync_ns 0
adb shell settings put global ro.surface_flinger.use_content_detection_for_refresh_rate true
adb shell settings put global ro.surface_flinger.refresh_rate_switching true
adb shell settings put global ro.surface_flinger.enable_layer_caching true
adb shell settings put global ro.surface_flinger.layer_caching_active_layer_timeout_ms 0
adb shell settings put global ro.surface_flinger.use_context_priority true
adb shell settings put global ro.surface_flinger.start_graphics_allocator_service true
adb shell settings put global ro.surface_flinger.uclamp.min 0
adb shell settings put global ro.surface_flinger.max_frame_buffer_acquired_buffers 1
adb shell settings put global ro.surface_flinger.has_wide_color_display false
adb shell settings put global persist.sys.color.adaptive true
adb shell settings put global persist.sys.sf.color_saturation 1.0
adb shell settings put global persist.sys.brightness.low.gamma true
adb shell settings put global persist.sys.sf.native_mode 2
adb shell settings put global persist.sys.sf.hs_mode 0
adb shell settings put global persist.sys.sf.disable_blurs 1
adb shell settings put global persist.sys.static_blur_mode false
adb shell settings put global persist.sys.disable_blur_view true
adb shell settings put global persist.perf.wm_static_blur true
adb shell settings put global sys.output.10bit true
adb shell settings put global sys.fb.bits 32
adb shell settings put global persist.sys.shadow.open 0
adb shell settings put global persist.sys.use_16bpp_alpha 0
adb shell settings put global persist.sys.purgeable_assets 0
adb shell settings put global persist.sys.scrollingcache 2
adb shell settings put global ro.vendor.perf.scroll_opt true
adb shell settings put global ro.vendor.perf.scroll_opt.heavy_app true
adb shell settings put global ro.vendor.scroll.preobtain.enable true
adb shell settings put global vendor.perf.gestureflingboost.enable true
adb shell settings put global ro.min_pointer_dur 1
adb shell settings put global ro.max.fling_velocity 12000
adb shell settings put global ro.min.fling_velocity 4000
adb shell settings put global windowsmgr.max_events_per_sec 150
adb shell settings put global ro.launcher.blur.appLaunch 0
adb shell settings put global iop.enable_prefetch_ofr 1
adb shell settings put global iop.enable_uxe 1
adb shell settings put global iop.enable_iop 1
adb shell settings put global vendor.perf.iop_v3.enable true
adb shell settings put global vendor.perf.iop_v3.enable.debug false
adb shell settings put global vendor.perf.workloadclassifier.enable true
adb shell settings put global ro.vendor.iocgrp.config 1
adb shell settings put global persist.sys.autoclearsave 2
adb shell settings put global persist.sys.enable_ioprefetch true
adb shell settings put global persist.mm.enable.prefetch true
adb shell settings put global mm.enable.smoothstreaming true
adb shell settings put global debug.media.video.frc false
adb shell settings put global debug.media.video.vpp false
adb shell settings put global sys.media.vdec.sw 1
adb shell settings put global ro.vendor.media_performance_class 0
adb shell settings put global ro.config.hw_media_flags 2
adb shell settings put global ro.mediaScanner.enable false
adb shell settings put global ro.media.maxresolution 0
adb shell settings put global ro.media.dec.aud.wma.enabled 1
adb shell settings put global ro.media.dec.vid.wmv.enabled 1
adb shell settings put global media.stagefright.thumbnail.prefer_hw_codecs true
adb shell settings put global media.stagefright.use-awesome true
adb shell settings put global media.stagefright.enable-record false
adb shell settings put global media.stagefright.enable-scan false
adb shell settings put global media.stagefright.enable-meta true
adb shell settings put global media.stagefright.enable-http true
adb shell settings put global media.enable-commonsource true
adb shell settings put global persist.media.lowlatency.enable true
adb shell settings put global persist.media.hls.enhancements true
adb shell settings put global persist.media.treble_omx false
adb shell settings put global av.debug.disable.pers.cache 0
adb shell settings put global aaudio.mmap_policy 1
adb shell settings put global aaudio.mmap_exclusive_policy 2
adb shell settings put global audio.legacy.postproc true
adb shell settings put global audio.deep_buffer.media true
adb shell settings put global audio.parser.ip.buffer.size 0
adb shell settings put global audio.offload.video true
adb shell settings put global audio.offload.track.enable true
adb shell settings put global audio.offload.passthrough false
adb shell settings put global audio.offload.gapless.enabled true
adb shell settings put global audio.offload.multiple.enabled true
adb shell settings put global audio.offload.pcm.16bit.enable false
adb shell settings put global audio.offload.pcm.24bit.enable false
adb shell settings put global audio.track.enablemonoorstereo 1
adb shell settings put global ro.have_aacencode_feature 1
adb shell settings put global ro.vendor.audio_tunning.nr 1
adb shell settings put global vendor.audio.lowpower true
adb shell settings put global vendor.audio.use.sw.alac.decoder true
adb shell settings put global vendor.audio.use.sw.ape.decoder true
adb shell settings put global lpa.use-stagefright true
adb shell settings put global lpa.decode false
adb shell settings put global lpa.encode false
adb shell settings put global tunnel.decode false
adb shell settings put global tunnel.encode false
adb shell settings put global persist.sys.audio.source true
adb shell settings put global persist.speaker.prot.enable false
adb shell settings put global persist.audio.hp true
adb shell settings put global persist.audio.hifi true
adb shell settings put global ro.config.hifi_always_on true
adb shell settings put global ro.config.hifi_enhance_support 1
adb shell settings put global ro.vendor.audio.game.effect true
adb shell settings put global ro.vendor.audio.spk.clean true
adb shell settings put global ro.audio.soundfx.dirac true
adb shell settings put global audio.sys.routing.latency 0
adb shell settings put global audio.sys.mute.latency.factor 2
adb shell settings put global mpq.audio.decode true
adb shell settings put global debug.stagefright.ccodec 1
adb shell settings put global debug.stagefright.omx_default_rank 0
adb shell settings put global debug.stagefright.omx_default_rank.sw-audio 1
adb shell settings put global vendor.media.omx 0
adb shell settings put global af.fast_track_multiplier 1
adb shell settings put global af.thread.throttle 0
adb shell settings put global ota_disable_automatic_update 1
adb shell settings put global drm.service.enabled true
adb shell settings put global vendor.hwc.drm.scale_with_gpu 1
adb shell settings put global persist.vendor.firmware.update true
adb shell settings put global persist.vendor.battery.health true
adb shell settings put global persist.vendor.battery.health.optimise true
adb shell settings put global persist.vendor.accelerate.charge true
adb shell settings put global persist.vendor.low.cutoff true
adb shell settings put global persist.vendor.cool.mode true
adb shell settings put global persist.vendor.cne.feature 1
adb shell settings put global persist.vendor.dpm.feature 1
adb shell settings put global persist.vendor.dpm.tcm 1
adb shell settings put global persist.vendor.dc.enable 2
adb shell settings put global persist.sys.support.vt false
adb shell settings put global persist.sys.softdetector.enable false
adb shell settings put global ro.sf.use_latest_hwc_vsync_period 1
adb shell settings put global ro.sf.blurs_are_expensive 0
adb shell settings put global ro.sf.compbypass.enable 1
adb shell settings put global ro.compcache.default 1
adb shell settings put global enable_gpu_debug_layers 0
adb shell settings put global sys.tp.grip_enable 1
adb shell settings put global sys.use_fifo_ui 1
adb shell settings put global sys_vdso 1
adb shell settings put global sys.enable_lpm 1
adb shell settings put global ro.vndk.lite true
adb shell settings put global ro.recentMode 0
adb shell settings put global persist.vendor.enable.hans true
adb shell settings put global ro.amlogic.no.preloadclass 0
adb shell settings put global ro.config.rm_preload_enabled 1
adb shell settings put global ro.storage_manager.enabled true
adb shell settings put global storage.preload.complete 1
adb shell settings put global persist.dummy_storage 1
adb shell settings put global persist.sys.storage_preload 1
adb shell settings put global persist.sys.prelaunch.off 0
adb shell settings put global persist.sys.preloads.file_cache_expired 0
adb shell settings put global persist.vendor.enable.preload true
adb shell settings put global persist.preload.common 1
adb shell settings put global enable_app_prefetch 1
adb shell settings put global ro.quick_start_support 1
adb shell settings put global ro.zygote.preload.enable 1
adb shell settings put global ro.zygote.preload.disable 2
adb shell settings put global ro.zygote.disable_gl_preload false
adb shell settings put global persist.zygote.preload_threads 2
adb shell settings put global persist.sys.preload.preload_num 2
adb shell settings put global persist.sys.preLoadDrawable.debug false
adb shell settings put global persist.sys.preLoadDrawable.enable true
adb shell settings put global persist.sys.boost.launch 1
adb shell settings put global persist.sys.powersave.rotate 1
adb shell settings put global persist.irqbalance.enable true
adb shell settings put global persist.device_config.runtime_native.use_app_image_startup_cache true
adb shell settings put global persist.device_config.runtime_native.usap_pool_enabled true
adb shell settings put global persist.device_config.runtime_native.usap_pool_size_min 1
adb shell settings put global persist.device_config.runtime_native.usap_refill_threshold 1
adb shell settings put global persist.device_config.runtime_native_boot.iorap_readahead_enable true
adb shell settings put global persist.device_config.runtime_native_boot.iorap_perfetto_enable false
adb shell settings put global persist.device_config.runtime_native.metrics.reporting-mods 0
adb shell settings put global persist.device_config.runtime_native.metrics.reporting-mods-server 0
adb shell settings put global persist.device_config.runtime_native.metrics.write-to-statsd false
adb shell settings put global ro.service.remove_unused 1
adb shell settings put global ro.iorapd.enable true
adb shell settings put global iorapd.perfetto.enable false
adb shell settings put global iorapd.readahead.enable true
adb shell settings put global ro.kernel.ebpf.supported true
adb shell settings put global sys.ipo.disable 0
adb shell settings put global ro.mtk_ipo_support 1
adb shell settings put global ro.mtk_perfservice_support 1
adb shell settings put global ro.mtk_bg_power_saving_support 1
adb shell settings put global ro.mtk_bg_power_saving_ui 1
adb shell settings put global vendor.mtk_thumbnail_optimization true
adb shell settings put global def_bg_power_saving 1
adb shell settings put global persist.bg.dexopt.enable true
adb shell settings put global persist.sys.ps.enable 1
adb shell settings put global background_gpu_usage 0
adb shell settings put global persist.sys.gamespeed.enable true
adb shell settings put global sys.games.gt.prof 1
adb shell settings put global ro.config.gameassist 1
adb shell settings put global debug.game.video.support true
adb shell settings put global debug.enable.gamed 1
adb shell settings put global debug.slsi_platform 1
adb shell settings put global debug.sqlite.journalmode OFF
adb shell settings put global debug.sqlite.syncmode OFF
adb shell settings put global debug.sqlite.wal.syncmode OFF
adb shell settings put global ro.vendor.gpu.dataspace 1
adb shell settings put global ro.incremental.enable 1
adb shell settings put global ro.fb.mode 1
adb shell settings put global ro.tb.mode 1
adb shell settings put global ro.ril.hsupa.category 6
adb shell settings put global ro.ril.hsdpa.category 8
adb shell settings put global ro.ril.gprsclass 10
adb shell settings put global ro.ril.hsdpa.dbdc 1
adb shell settings put global ro.ril.hsxpa 2
adb shell settings put global ro.ril.enable.sdr 0
adb shell settings put global ro.ril.enable.a52 1
adb shell settings put global ro.ril.enable.dtm 0
adb shell settings put global ro.ril.enable.amr.wideband 1
adb shell settings put global ro.ril.enable.imc.feature 1
adb shell settings put global ro.ril.enable.enhance.search 1
adb shell settings put global ro.ril.enable.pre_r8fd 1
adb shell settings put global ro.ril.enable.nitz 0
adb shell settings put global ro.ril.disable.cpc 1
adb shell settings put global ro.ril.fast.dormancy.rule 0
adb shell settings put global ro.fast.dormancy 0
adb shell settings put global ro.product.enhanced_4g_lte true
adb shell settings put global ro.telephony.call_ring.multiple false
adb shell settings put global sys.fflag.override.settings_seamless_transfer true
adb shell settings put global persist.vendor.data.mode offload
adb shell settings put global persist.vendor.mwqem.enable 1
adb shell settings put global vendor.debug.egl.swapinterval 0
adb shell settings put global debug.gr.swapinterval 0
adb shell settings put global ro.vold.umsdirtyratio 1
adb shell settings put global debug.cpuprio 1
adb shell settings put global debug.gpuprio 1
adb shell settings put global debug.ioprio 1
adb shell settings put global debug.hang.count 0
adb shell settings put global debug.kill_allocating_task 1
adb shell settings put global ro.config.upgrade_appkill true
adb shell settings put global ro.lmk.kill_heaviest_task true
adb shell settings put global ro.lmk.use_minfree_levels true
adb shell settings put global ro.lmk.vmpressurenhanced true
adb shell settings put global persist.vendor.memplus.enable 1
adb shell settings put global persist.sys.ramboost.enable true
adb shell settings put global persist.sys.ramboost.ioppreload true
adb shell settings put global persist.sys.ramboost.olmemplus_option 2
adb shell settings put global persist.sys.memctrl on
adb shell settings put global ro.memperf.enable true
adb shell settings put global native_memtag_sync 1
adb shell settings put global ram_expand_size_list 1
adb shell settings put global sys.is_mem_low_level 1
adb shell settings put global sys.use_memfd true
adb shell settings put global sys.config.bigdata_enable true
adb shell settings put global sys.config.bigdata_mem_enable true
adb shell settings put global ro.config.per_app_memcg true
adb shell settings put global ro.config.low_mem true
adb shell settings put global ro.config.low_ram true
adb shell settings put global ro.config.low_ram.mod true
adb shell settings put global ro.board_ram_size low
adb shell settings put global ro.ime.lowmemory true
adb shell settings put global ro.am.enabled_low_mem_maint true
adb shell settings put global ro.am.no_kill_cached_processes_until_boot_completed true
adb shell settings put global ro.am.no_kill_cached_processes_post_boot_completed_duration_millis 0
adb shell settings put global ro.ksm.default 1
adb shell settings put global ro.cp_system_other_odex 1
adb shell settings put global ro.config.hw_pg_frz_all true
adb shell settings put global ro.config.dha_pwhitelist_enable 1
adb shell settings put global ro.config.dha_tunnable 1
adb shell settings put global ro.has.cpu.setting true
adb shell settings put global ro.cpufreq.game 1
adb shell settings put global ro.core_ctl_min_cpu 0
adb shell settings put global ro.core_ctl_present 1
adb shell settings put global ro.thermal_warmreset true
adb shell settings put global ro.config.enable_thermal_bdata true
adb shell settings put global persist.sys.thermal_policy_update 1
adb shell settings put global persist.sys.thermal.enable 1
adb shell settings put global persist.thermalmanager.enable true
adb shell settings put global thermal_offload 0
adb shell settings put global allow_heat_cooldown_always 1
adb shell settings put global persist.sys.lowcost 1
adb shell settings put global persist.sys.binary_xml false
adb shell settings put global unused_static_shared_lib_min_cache_period_ms 250
adb shell settings put global cached_apps_freezer enabled
adb shell settings put global persist.device_config.use_cgroup_freezer true
adb shell settings put global app_restriction_enabled true
adb shell settings put global app_auto_restriction_enabled 1
adb shell settings put global app_standby_enabled 1
adb shell settings put global forced_app_standby_enabled 1
adb shell settings put global keep_profile_in_background 0
adb shell settings put global always_finish_activities 1
adb shell settings put global sys.app.oom_adj 1
adb shell settings put global sys.isdumpstaterunning 0
adb shell settings put global sys.config.spcm_enable true
adb shell settings put global sys.config.samp_spcm_enable true
adb shell settings put global sys.config.spcm_preload_enable true
adb shell settings put global sys.config.spcm_kill_skip true
adb shell settings put global sys.config.spcm_gcm_kill_enable false
adb shell settings put global sys.config.spcm_db_enable false
adb shell settings put global sys.config.spcm_db_launcher false
adb shell settings put global sys.config.samp_oak_enable false
adb shell settings put global sys.config.samp_oakoom_enable false
adb shell settings put global sys.settings.support 1
adb shell settings put global persist.sys.ss.enable false
adb shell settings put global persist.sys.pwctl.enable 0
adb shell settings put global sys.ipo.pwrdncap 0
adb shell settings put global dynamic_power_savings_enabled 1
adb shell settings put global adaptive_battery_management_enabled 0
adb shell settings put global battery_saver_constants "vibration_disabled=true,animation_disabled=true,soundtrigger_disabled=true,fullbackup_deferred=true,keyvaluebackup_deferred=true,gps_mode=low_power,data_saver=true,optional_sensors_disabled=true,advertiser_id_enabled=false"
adb shell settings put global sched.colocate.enable 1
adb shell settings put global debug.smart_scheduling 1
adb shell settings put global sys.io.scheduler cfq
adb shell settings put global sys.start.first 1
adb shell settings put global ro.am.reschedule_service true
adb shell settings put global ro.sys.fw.bservice_enable true
adb shell settings put global ro.sys.fw.force_adoptable true
adb shell settings put global debug.hwui.disable_vsync 0
adb shell settings put global debug.hwui.disable_gpu_cache false
adb shell settings put global cache.trigger 1
adb shell settings put global service.sf.prime_shader_cache 1
adb shell settings put global service.sf.present_timestamp 0
adb shell settings put global persist.sys.engpc.disable 0
adb shell settings put global persist.enable_task_snapshots false
adb shell settings put global ro.config.fha_enable true
adb shell settings put global ro.config.enable_rcc true
adb shell settings put global ro.config.sync 0
adb shell settings put global max_empty_time_millis 0
adb shell settings put global fstrim_mandatory_interval 1
adb shell settings put global ro.sys.fw.use_trim_settings true
adb shell settings put global ro.sys.fw.trim_empty_percent 50
adb shell settings put global ro.sys.fw.trim_cache_percent 50
adb shell settings put global ro.sys.fw.empty_app_percent 25
adb shell settings put global ro.trim.config true
adb shell settings put global ro.trim.memory.launcher 1
adb shell settings put global ro.trim.memory.font_cache 1
adb shell settings put global ro.zstd.default_compression_level 1
adb shell settings put global vold.post_fs_data_done 1
adb shell settings put global vold.storage.prepared 1
adb shell settings put global vold.has_compress 1
adb shell settings put global vold.has_quota 0
adb shell settings put global vold.should_defrag 1
adb shell settings put global vold.checkpoint_committed 1
adb shell settings put global ro.storaged.event.interval 999999
adb shell settings put global gadget.nand.force_sync true
adb shell settings put global virtualsd.enable true
adb shell settings put global pm.sdwake.enabled true
adb shell settings put global ro.DontUseAnimate yes
adb shell settings put global debug.hwui.force_dark true
adb shell settings put global debug.hwui.perfetto_profile_mode both
adb shell settings put global debug.performance.tuning 1
adb shell settings put global debug.gralloc.map_fb_memory 1
adb shell settings put global debug.gralloc.enable_fb_ubwc 1
adb shell settings put global debug.gralloc.gfx_ubwc_disable 0
adb shell settings put global debug.gralloc.disable_ahardware_buffer 1
adb shell settings put global debug.gr.numframebuffers 1
adb shell settings put global persist.smart_pool 1
adb shell settings put global ro.hardware.gralloc default
adb shell settings put global ro.hardware.respect_als true
adb shell settings put global ro.hardware.hwcomposer default
adb shell settings put global ro.hwui.render_ahead 1
adb shell settings put global debug.hwui.renderer_mode 1
adb shell settings put global debug.hwui.level 0
adb shell settings put global debug.hwui.swap_with_damage false
adb shell settings put global debug.hwui.render_dirty_regions false
adb shell settings put global debug.hwui.show_dirty_regions false
adb shell settings put global debug.hwui.use_gpu_pixel_buffers false
adb shell settings put global debug.hwui.disabledither true
adb shell settings put global debug.hwui.disable_draw_defer true
adb shell settings put global debug.hwui.disable_draw_reorder true
adb shell settings put global debug.hwui.show_draw_order 0
adb shell settings put global debug.hwui.show_draw_calls 0
adb shell settings put global debug.hwui.enable_bp_cache true
adb shell settings put global debug.hwui.use_small_cache 1
adb shell settings put global sysui_font_cache_persist true
adb shell settings put global persist.sys.font 2
adb shell settings put global persist.sys.font_clarity 0
adb shell settings put global persist.sys.force_highendgfx true
adb shell settings put global ro.config.avoid_gfx_accel false
adb shell settings put global rs.gpu.rsIntrinsic 0
adb shell settings put global rs.gpu.filterscript 0
adb shell settings put global rs.gpu.renderscript 0
adb shell settings put global debug.rs.debug 0
adb shell settings put global debug.rs.visual 0
adb shell settings put global debug.rs.reduce 1
adb shell settings put global debug.rs.shader 0
adb shell settings put global debug.rs.shader.attributes 0
adb shell settings put global debug.rs.shader.uniforms 0
adb shell settings put global ro.graphics.hwcomposer.kvm true
adb shell settings put global fku.perf.profile 1
adb shell settings put global graphics.gpu.profiler.support true
adb shell settings put global force_gpu_render 1
adb shell settings put global force_gpu_rendering 1
adb shell settings put global gpu_rendering_mode 1
adb shell settings put global opengl_renderer 1
adb shell settings put global opengl_trace false
adb shell settings put global vendor.display.enable_fb_scaling 1
adb shell settings put global vendor.display.use_layer_ext 1
adb shell settings put global vendor.display.enable_posted_start_dyn 1
adb shell settings put global vendor.display.comp_mask 0
adb shell settings put global vendor.display.enable_perf_hint_large_comp_cycle 1