-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathandroidtweaks.sh
More file actions
1338 lines (1293 loc) · 59.3 KB
/
androidtweaks.sh
File metadata and controls
1338 lines (1293 loc) · 59.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Android ADB Shell Script
# Requires Desktop ADB or Termux
# Needs executed every phone restart
# sh androidtweaks.sh
# ./androidtweaks.sh WILL NOT WORK
# List Apps
# pm list packages
# List Disabled Apps
# pm list packages -d
# Uninstall Apps
# pm uninstall -k --user 0 *Package*
# Enable Apps
# pm enable *Package*
# Using PowerShell terminal requires "./" in front of adb commands (./adb root)
# Run "adb devices" in PC terminal then tap "Allow" for "Allow USB debugging" dialog on phone
# download this script on your phone
# /storage/self/primary/Download
# run "adb shell" before executing script
# sh androidtweaks.sh
# REQUIRED
# USB DEBUGGING, DEFAULT USB CONFIGURATION: NO DATA TRANSFER, and WIRELESS DEBUGGING (Termux)
# You must unplug USB-C from phone when changing "Default USB configuration" developer option
setprop debug.performance.tuning 1
settings put global debug.performance.tuning 1
settings put system debug.performance.tuning 1
settings put secure debug.performance.tuning 1
setprop debug.perf.tuning 1
settings put global debug.perf.tuning 1
settings put system debug.perf.tuning 1
settings put secure debug.perf.tuning 1
cmd power set-fixed-performance-mode-enabled true
settings put global ambient_enabled 0
settings put global game_driver_all_apps 2
settings put global heat_suppression 0
settings put system performance_mode_enable 1
settings put system video.accelerate.hw 1
settings put system persist.sys.force_highendgfx true
settings put global persist.sys.force_highendgfx true
settings put secure speed_mode_enable 1
settings put secure persist.sys.glc.16x_msaa_enabled true
settings put secure persist.sys.glc.msaa_samples 16
settings put system speed_mode_enable 1
settings put system persist.sys.glc.16x_msaa_enabled true
settings put system persist.sys.glc.msaa_samples 16
settings put global speed_mode_enable 1
settings put global persist.sys.glc.16x_msaa_enabled true
settings put global persist.sys.glc.msaa_samples 16
settings put global hardware_accelerated_rendering_enabled true
settings put system persist.hwc.ptor.enable true
settings put system system_ui_hw_accelerated 1
settings put system ui_hardware_enabled 1
settings put system video_encoder.hw 1
settings put system webview_accelerated_rendering_enabled 1
settings put system force_hw_ui 1
settings put system status_bar_hw_rendering_enabled 1
settings put system gridview_hw_accelerated 1
settings put system hscrollview_hw_accelerated 1
settings put system sysui_config_enable_hw 1
settings put system sysui_config_enable_hw_accelerated_game 1
settings put system sysui_config_enable_hw_accelerated_gpu 1
settings put system sysui_config_enable_hw_accelerated_cpu 1
settings put system sysui_config_enable_hw_accelerated_keyguard 1
settings put system sysui_config_enable_hw_accelerated_transitions 1
settings put system sysui_config_enable_hw_accelerated_launcher 1
settings put system sysui_config_enable_hw_keyguard 1
settings put system sem_enhanced_cpu_responsiveness 1
settings put system high_priority 1
settings put global high_priority 1
settings put secure high_priority 1
settings put system low_power 0
settings put system force_hwc_ui 1
settings put system force_high_performance 1
settings put system ro.hwui.use_vulkan true
settings put global ro.hwui.use_vulkan true
settings put system enable_hw_2d 1
settings put global enable_hw_2d 1
settings put system enable_hw_3d 1
settings put global enable_hw_3d 1
settings put system persist.camera.iface.logs 0
settings put global persist.camera.iface.logs 0
settings put system persist.camera.imglib.logs 0
settings put global persist.camera.imglib.logs 0
settings put system debug.hwui.skia_atrace_enabled false
settings put global debug.hwui.skia_atrace_enabled false
settings put system vendor.video.disable.ubwc 0
settings put global vendor.video.disable.ubwc 0
settings put system debug.power.monitor_tools false
settings put global debug.power.monitor_tools false
settings put secure thread_priority highest HIGHEST
settings put system remove_animations 1
settings put system reduce_animations 1
settings put global remove_animations 1
settings put global fancy_ime_animations 0
settings put global visual_bars false
settings put global reduce_transitions 1
settings put global shadow_animation_scale 0
settings put global render_shadows_in_compositor true
settings put global sys.disable_ext_animation 1
settings put global sys.refresh.dirty 0
settings put system sys.refresh.dirty 0
settings put secure sys.refresh.dirty 0
settings put global enable_hardware_acceleration 1
settings put global hardware_accelerated_graphics_decoding 1
settings put global hardware_accelerated_video_decode 1
settings put global hardware_accelerated_video_encode 1
settings put global media.sf.hwaccel 1
settings put global video.accelerate.hw 1
settings put global ro.config.enable.hw_accel true
settings put global ro.hwui.renderer.disable_opaque false
settings put global disable_hw_overlays 1
settings put global overlay_disable_force_hwc 1
settings put global omap.enhancement true
settings put global enhanced_processing 1
settings put global game_low_latency_mode 1
settings put global debug.multicore.processing 1
settings put global media.metrics.enabled 0
settings put global media.metrics 0
settings put global debug.brcm.mm.logs 0
settings put global persist.sys.miui_optimization true
settings put global sys.miui.ndcd off
settings put global sys.debug.watchdog 0
settings put global logd.logpersistd.enable false
settings put global logd.statistics 0
settings put global persist.sys.watchdog_enhanced false
settings put global persist.sys.oom_crash_on_watchdog false
settings put global persist.sys.logging 0
settings put global persist.sys.loglevel 0
settings put global sys.log.app 0
settings put global ro.logd.size 0
settings put global ro.logd.size.stats 0
settings put global ro.logdumpd.enabled 0
settings put global persist.anr.dumpthr 0
settings put global persist.vendor.dpm.loglevel 0
settings put global persist.vendor.dpmhalservice.loglevel 0
settings put global persist.vendor.sys.modem.logging.enable false
settings put global debug.enable.wl_log 0
settings put global debug.als.logs 0
settings put global debug.svi.logs 0
settings put global log.tag.stats_log 0
settings put global ro.lmk.debug false
settings put global ro.lmk.log_stats false
settings put global sys.lmk.reportkills false
settings put global persist.sys.lmk.reportkills false
settings put global ro.config.hw.logsystem.send 0
settings put global persist.sys.mdlog_dumpback 0
settings put global persist.vendor.mdlog.need_dump 0
settings put global vendor.swvdec.log.level 0
settings put global debug.sf.enable_transaction_tracing false
settings put global ro.statsd.enable false
settings put global persist.debug.sf.statistics 0
settings put global persist.sys.crash_dumps 0
settings put global persist.sys.pstore_dumps 0
settings put global persist.debug.host.ramdump 0
settings put global persist.radio.ramdump 0
settings put global persist.ims.disableDebugLogs 1
settings put global persist.ims.disableDebugDataPathLogs 1
settings put global persist.ims.disableADBLogs 1
settings put global persist.ims.disableQXDMLogs 1
settings put global persist.ims.disableIMSLogs 1
settings put global persist.ims.disableSigHandler 1
settings put global persist.sys.qxdm no
settings put global persist.sys.qxdm_logs 0
settings put global app_usage_enabled 0
settings put global package_usage_stats_enabled 0
settings put global recent_usage_data_enabled 0
settings put global persist.bt.iot.enablelogging false
settings put global vendor.bluetooth.startbtlogger false
settings put global ro.vendor.connsys.dedicated.log 0
settings put global sys.wifitracing.started 0
settings put global persist.zygote.core_dump 0
settings put global persist.ai.timedebug.enable false
settings put global persist.sys.qlogd 0
settings put global persist.sys.hw_statistics 0
settings put global persist.sys.apps_statistics 0
settings put global persist.sys.apr.enabled 0
settings put global persist.vendor.aprservice.enabled 0
settings put global persist.vendor.verbose_logging_enabled false
settings put global persist.vendor.sys.fp.dump_data 0
settings put global persist.debug.xlog.enable 0
settings put global persist.meta.dumpdata 0
settings put global persist.oem.dump 0
settings put global persist.service.crash.enable 0
settings put global persist.sys.perfettologging.enable 0
settings put global persist.sys.offlinelog.kernel false
settings put global persist.sys.offlinelog.logcat false
settings put global persist.sys.offlinelog.logcatkernel false
settings put global persist.sys.log.user 0
settings put global persist.sys.log-main.enable 0
settings put global persist.sys.log-system.enable 0
settings put global persist.sys.log-events.enable 0
settings put global persist.sys.log-radio.enable 0
settings put global persist.sys.tcpdump.lognum 0
settings put global persist.sys.tcpdump.logsize 0
settings put global persist.sys.wifipacketlog.state false
settings put global persist.net.monitor false
settings put global debug.hwc.force_gpu_vsync 0
settings put global debug.hwc.fakevsync 0
settings put global debug.hwc.disabletonemapping true
settings put global ro.surface_flinger.enable_layer_caching true
settings put global ro.surface_flinger.refresh_rate_switching false
settings put global ro.surface_flinger.has_wide_color_display true
settings put global persist.sys.color.adaptive true
settings put global persist.sys.sf.disable_blurs 1
settings put global persist.sys.disable_blur_view true
settings put global sys.output.10bit true
settings put global sys.fb.bits 32
settings put global persist.media.hls.enhancements true
settings put global ro.sf.use_latest_hwc_vsync_period 0
settings put global ro.config.avoid_gfx_accel false
settings put global force_gpu_render 1
settings put global force_gpu_rendering 1
settings put global gpu_rendering_mode 1
settings put global opengl_trace false
settings put global hw2d.force 1
settings put global hw3d.force 1
settings put global persist.sys.force_hw_ui true
settings put global persist.sys.ui.hw 1
settings put global com.qc.hardware true
settings put global debug.qc.hardware true
settings put global debug.cpurend.vsync false
settings put global debug.gpurend.vsync false
settings put global debug.egl.trace 0
settings put system ro.surface_flinger.has_HDR_display true
settings put global ro.surface_flinger.has_HDR_display true
settings put system vendor.hbm.enable false
settings put global vendor.hbm.enable false
settings put system vendor.display.disable_sdr_dimming 1
settings put global vendor.display.disable_sdr_dimming 1
settings put system vendor.display.enable_sdr_dimming 0
settings put global vendor.display.enable_sdr_dimming 0
settings put system vendor.display.disable_sdr_histogram 1
settings put global vendor.display.disable_sdr_histogram 1
settings put system vendor.display.enable_sdr_histogram 0
settings put global vendor.display.enable_sdr_histogram 0
settings put system vendor.display.disable_hdr_histogram 0
settings put global vendor.display.disable_hdr_histogram 0
settings put system vendor.display.enable_hdr_histogram 1
settings put global vendor.display.enable_hdr_histogram 1
settings put system vendor.display.enable_hdr10_gpu_target 1
settings put global vendor.display.enable_hdr10_gpu_target 1
settings put system ambient_enabled 0
settings put system game_driver_all_apps 2
settings put system heat_suppression 0
settings put system hardware_accelerated_rendering_enabled true
settings put global system_ui_hw_accelerated 1
settings put global ui_hardware_enabled 1
settings put global video_encoder.hw 1
settings put global webview_accelerated_rendering_enabled 1
settings put global force_hw_ui 1
settings put global status_bar_hw_rendering_enabled 1
settings put global gridview_hw_accelerated 1
settings put global hscrollview_hw_accelerated 1
settings put global sysui_config_enable_hw 1
settings put global sysui_config_enable_hw_accelerated_game 1
settings put global sysui_config_enable_hw_accelerated_gpu 1
settings put global sysui_config_enable_hw_accelerated_cpu 1
settings put global sysui_config_enable_hw_accelerated_keyguard 1
settings put global sysui_config_enable_hw_accelerated_transitions 1
settings put global sysui_config_enable_hw_accelerated_launcher 1
settings put global sysui_config_enable_hw_keyguard 1
settings put global sem_enhanced_cpu_responsiveness 1
settings put global force_hwc_ui 1
settings put global force_high_performance 1
settings put global reduce_animations 1
settings put system reduce_transitions 1
settings put system enable_hardware_acceleration 1
settings put system enable_hardware_acceleration 1
settings put system hardware_accelerated_graphics_decoding 1
settings put system hardware_accelerated_video_decode 1
settings put system hardware_accelerated_video_encode 1
settings put system media.sf.hwaccel 1
settings put system ro.config.enable.hw_accel true
settings put system ro.hwui.renderer.disable_opaque false
settings put global low_power 0
settings put system disable_hw_overlays 1
settings put system hwc.enable.overlay 0
settings put global hwc.enable.overlay 0
settings put system debug.hwc.enable.overlay 0
settings put global debug.hwc.enable.overlay 0
settings put system persist.hwc.enable.overlay 0
settings put global persist.hwc.enable.overlay 0
settings put global force_hwc_ui 1
settings put global force_high_performance 1
settings put system game_low_latency_mode 1
settings put system sys.debug.watchdog 0
settings put system debug.hwc.force_gpu_vsync 0
settings put system debug.hwc.fakevsync 0
settings put system debug.hwc.disabletonemapping true
settings put system persist.sys.color.adaptive true
settings put system persist.sys.sf.disable_blurs 1
settings put system persist.sys.disable_blur_view true
settings put system sys.output.10bit true
settings put system sys.fb.bits 32
settings put system persist.media.hls.enhancements true
settings put system ro.sf.use_latest_hwc_vsync_period 0
settings put system ro.config.avoid_gfx_accel false
settings put system force_gpu_render 1
settings put system force_gpu_rendering 1
settings put system gpu_rendering_mode 1
settings put system opengl_trace false
settings put system hw2d.force 1
settings put system hw3d.force 1
settings put system persist.sys.force_hw_ui true
settings put system persist.sys.ui.hw 1
settings put system com.qc.hardware true
settings put system debug.qc.hardware true
settings put system debug.cpurend.vsync false
settings put system debug.gpurend.vsync false
settings put system debug.egl.trace 0
settings put global performance_mode_enable 1
settings put global persist.hwc.ptor.enable true
settings put system fancy_ime_animations 0
settings put global thread_priority highest HIGHEST
settings put system thread_priority highest HIGHEST
settings put global remove_transitions 1
settings put system remove_transitions 1
settings put system overlay_disable_force_hwc 1
settings put system omap.enhancement true
settings put system enhanced_processing 1
settings put system debug.multicore.processing 1
settings put system ro.surface_flinger.enable_layer_caching true
settings put system ro.surface_flinger.refresh_rate_switching false
settings put system ro.surface_flinger.has_wide_color_display true
settings put secure ambient_enabled 0
settings put secure game_driver_all_apps 2
settings put secure heat_suppression 0
settings put secure performance_mode_enable 1
settings put secure video.accelerate.hw 1
settings put secure persist.sys.force_highendgfx true
settings put secure hardware_accelerated_rendering_enabled true
settings put secure persist.hwc.ptor.enable true
settings put secure system_ui_hw_accelerated 1
settings put secure ui_hardware_enabled 1
settings put secure video_encoder.hw 1
settings put secure webview_accelerated_rendering_enabled 1
settings put secure force_hw_ui 1
settings put secure status_bar_hw_rendering_enabled 1
settings put secure gridview_hw_accelerated 1
settings put secure hscrollview_hw_accelerated 1
settings put secure sysui_config_enable_hw 1
settings put secure sysui_config_enable_hw_accelerated_game 1
settings put secure sysui_config_enable_hw_accelerated_gpu 1
settings put secure sysui_config_enable_hw_accelerated_cpu 1
settings put secure sysui_config_enable_hw_accelerated_keyguard 1
settings put secure sysui_config_enable_hw_accelerated_transitions 1
settings put secure sysui_config_enable_hw_accelerated_launcher 1
settings put secure sysui_config_enable_hw_keyguard 1
settings put secure sem_enhanced_cpu_responsiveness 1
settings put secure low_power 0
settings put secure force_hwc_ui 1
settings put secure force_high_performance 1
settings put secure ro.hwui.use_vulkan true
settings put secure enable_hw_2d 1
settings put secure enable_hw_3d 1
settings put secure persist.camera.iface.logs 0
settings put secure persist.camera.imglib.logs 0
settings put secure debug.hwui.skia_atrace_enabled false
settings put secure vendor.video.disable.ubwc 0
settings put secure debug.power.monitor_tools false
settings put secure remove_animations 1
settings put secure reduce_animations 1
settings put secure fancy_ime_animations 0
settings put secure visual_bars false
settings put secure reduce_transitions 1
settings put secure remove_transitions 1
settings put secure enable_hardware_acceleration 1
settings put secure hardware_accelerated_graphics_decoding 1
settings put secure hardware_accelerated_video_decode 1
settings put secure hardware_accelerated_video_encode 1
settings put secure media.sf.hwaccel 1
settings put secure video.accelerate.hw 1
settings put secure ro.config.enable.hw_accel true
settings put secure ro.hwui.renderer.disable_opaque false
settings put secure disable_hw_overlays 1
settings put secure overlay_disable_force_hwc 1
settings put secure omap.enhancement true
settings put secure enhanced_processing 1
settings put secure game_low_latency_mode 1
settings put secure debug.multicore.processing 1
settings put secure persist.net.monitor false
settings put secure debug.hwc.force_gpu_vsync 0
settings put secure debug.hwc.fakevsync 0
settings put secure debug.hwc.disabletonemapping true
settings put secure ro.surface_flinger.enable_layer_caching true
settings put secure ro.surface_flinger.refresh_rate_switching false
settings put secure ro.surface_flinger.has_wide_color_display true
settings put secure persist.sys.color.adaptive true
settings put secure persist.sys.sf.disable_blurs 1
settings put secure persist.sys.disable_blur_view true
settings put secure sys.output.10bit true
settings put secure sys.fb.bits 32
settings put secure persist.media.hls.enhancements true
settings put secure ro.sf.use_latest_hwc_vsync_period 0
settings put secure ro.config.avoid_gfx_accel false
settings put secure force_gpu_render 1
settings put secure force_gpu_rendering 1
settings put secure gpu_rendering_mode 1
settings put secure opengl_trace false
settings put secure hw2d.force 1
settings put secure hw3d.force 1
settings put secure persist.sys.force_hw_ui true
settings put secure persist.sys.ui.hw 1
settings put secure com.qc.hardware true
settings put secure debug.qc.hardware true
settings put secure debug.cpurend.vsync false
settings put secure debug.gpurend.vsync false
settings put secure debug.egl.trace 0
settings put secure ro.surface_flinger.has_HDR_display true
settings put secure vendor.hbm.enable false
settings put secure vendor.display.disable_sdr_dimming 1
settings put secure vendor.display.enable_sdr_dimming 0
settings put secure vendor.display.disable_sdr_histogram 1
settings put secure vendor.display.enable_sdr_histogram 0
settings put secure vendor.display.disable_hdr_histogram 0
settings put secure vendor.display.enable_hdr_histogram 1
settings put secure vendor.display.enable_hdr10_gpu_target 1
settings put global debug.hwui.force_refresh_rate 120
settings put system debug.hwui.force_refresh_rate 120
settings put secure debug.hwui.force_refresh_rate 120
settings put global debug.hwui.refresh_rate_forced 120
settings put system debug.hwui.refresh_rate_forced 120
settings put secure debug.hwui.refresh_rate_forced 120
settings put global debug.hwui.refresh_rate 120
settings put system debug.hwui.refresh_rate 120
settings put secure debug.hwui.refresh_rate 120
settings put global debug.sys.min_refresh_rate 120
settings put system debug.sys.min_refresh_rate 120
settings put secure debug.sys.min_refresh_rate 120
settings put global debug.sys.max_refresh_rate 120
settings put system debug.sys.max_refresh_rate 120
settings put secure debug.sys.max_refresh_rate 120
settings put global debug.sys.peak_refresh_rate 120
settings put system debug.sys.peak_refresh_rate 120
settings put secure debug.sys.peak_refresh_rate 120
settings put global debug.sys.display.min_refresh_rate 120
settings put system debug.sys.display.min_refresh_rate 120
settings put secure debug.sys.display.min_refresh_rate 120
settings put global debug.hwc.dynamic_refresh_rate false
settings put system debug.hwc.dynamic_refresh_rate false
settings put secure debug.hwc.dynamic_refresh_rate false
settings put global debug.hwc.lock_refresh_rate true
settings put system debug.hwc.lock_refresh_rate true
settings put secure debug.hwc.lock_refresh_rate true
settings put global debug.hwc.refresh_rate 120
settings put system debug.hwc.refresh_rate 120
settings put secure debug.hwc.refresh_rate 120
settings put system shadow_animation_scale 0
settings put secure shadow_animation_scale 0
settings put global window_animation_scale 0
settings put system window_animation_scale 0
settings put secure window_animation_scale 0
settings put global transition_animation_scale 0
settings put system transition_animation_scale 0
settings put secure transition_animation_scale 0
settings put global animator_duration_scale 0
settings put system animator_duration_scale 0
settings put secure animator_duration_scale 0
settings put secure screensaver_enabled 0
settings put global screensaver_enabled 0
settings put system screensaver_enabled 0
settings put secure screensaver_activate_on_sleep 0
settings put global screensaver_activate_on_sleep 0
settings put system screensaver_activate_on_sleep 0
settings put secure screensaver_activate_on_dock 0
settings put global screensaver_activate_on_dock 0
settings put system screensaver_activate_on_dock 0
settings put global debug.refresh_rate.min_fps 120
settings put system debug.refresh_rate.min_fps 120
settings put secure debug.refresh_rate.min_fps 120
settings put global debug.hwui.force_gpu_for_2d true
settings put system debug.hwui.force_gpu_for_2d true
settings put secure debug.hwui.force_gpu_for_2d true
settings put global debug.disable.hwacc 0
settings put system debug.disable.hwacc 0
settings put secure debug.disable.hwacc 0
settings put global debug.graphics.game_default_frame_rate.disabled true
settings put system debug.graphics.game_default_frame_rate.disabled true
settings put secure debug.graphics.game_default_frame_rate.disabled true
settings put global debug.hwui.renderer skiavk
settings put system debug.hwui.renderer skiavk
settings put secure debug.hwui.renderer skiavk
settings put global debug.hwui.rendering skiavk
settings put system debug.hwui.rendering skiavk
settings put secure debug.hwui.rendering skiavk
settings put global debug.hwui.render_engine_backend skiavk
settings put system debug.hwui.render_engine_backend skiavk
settings put secure debug.hwui.render_engine_backend skiavk
settings put global debug.hwui.rendering_type skiavk
settings put system debug.hwui.rendering_type skiavk
settings put secure debug.hwui.rendering_type skiavk
settings put global debug.hwui.render_type gpu
settings put system debug.hwui.render_type gpu
settings put secure debug.hwui.render_type gpu
settings put global debug.hwui.composition_type gpu
settings put system debug.hwui.composition_type gpu
settings put secure debug.hwui.composition_type gpu
settings put global debug.hwui.disabledither false
settings put system debug.hwui.disabledither false
settings put secure debug.hwui.disabledither false
settings put global debug.hwui.disable_vsync true
settings put system debug.hwui.disable_vsync true
settings put secure debug.hwui.disable_vsync true
settings put global debug.hdr.disable false
settings put system debug.hdr.disable false
settings put secure debug.hdr.disable false
settings put global debug.hdr.disabled false
settings put system debug.hdr.disabled false
settings put secure debug.hdr.disabled false
settings put global debug.hdr.enable true
settings put system debug.hdr.enable true
settings put secure debug.hdr.enable true
settings put global debug.hdr.enabled true
settings put system debug.hdr.enabled true
settings put secure debug.hdr.enabled true
settings put global debug.sf.support_hdr_by_wide_color_gamut true
settings put system debug.sf.support_hdr_by_wide_color_gamut true
settings put secure debug.sf.support_hdr_by_wide_color_gamut true
settings put global debug.vk.force_msaa true
settings put system debug.vk.force_msaa true
settings put secure debug.vk.force_msaa true
settings put global debug.vk.force_ssaa true
settings put system debug.vk.force_ssaa true
settings put secure debug.vk.force_ssaa true
settings put global debug.vulkan.force_msaa true
settings put system debug.vulkan.force_msaa true
settings put secure debug.vulkan.force_msaa true
settings put global debug.vulkan.force_ssaa true
settings put system debug.vulkan.force_ssaa true
settings put secure debug.vulkan.force_ssaa true
settings put global debug.vk.msaa-sample 16
settings put system debug.vk.msaa-sample 16
settings put secure debug.vk.msaa-sample 16
settings put global debug.vulkan.msaa-sample 16
settings put system debug.vulkan.msaa-sample 16
settings put secure debug.vulkan.msaa-sample 16
settings put global debug.vk.msaa 16
settings put system debug.vk.msaa 16
settings put secure debug.vk.msaa 16
settings put global debug.vulkan.msaa 16
settings put system debug.vulkan.msaa 16
settings put secure debug.vulkan.msaa 16
settings put global debug.vk.composition_type gpu
settings put system debug.vk.composition_type gpu
settings put secure debug.vk.composition_type gpu
settings put global debug.vulkan.composition_type gpu
settings put system debug.vulkan.composition_type gpu
settings put secure debug.vulkan.composition_type gpu
settings put global debug.renderengine.backend skiavk
settings put system debug.renderengine.backend skiavk
settings put secure debug.renderengine.backend skiavk
settings put global debug.stagefright.renderengine.backend skiavk
settings put system debug.stagefright.renderengine.backend skiavk
settings put secure debug.stagefright.renderengine.backend skiavk
settings put global debug.composition.type gpu
settings put system debug.composition.type gpu
settings put secure debug.composition.type gpu
settings put global debug.renderengine.graphite skiavk
settings put system debug.renderengine.graphite skiavk
settings put secure debug.renderengine.graphite skiavk
settings put global debug.vk.swapinterval 0
settings put system debug.vk.swapinterval 0
settings put secure debug.vk.swapinterval 0
settings put global debug.vulkan.swapinterval 0
settings put system debug.vulkan.swapinterval 0
settings put secure debug.vulkan.swapinterval 0
settings put global window_cornerRadius 0
settings put system window_cornerRadius 0
settings put secure window_cornerRadius 0
settings put global window_blur 0
settings put system window_blur 0
settings put secure window_blur 0
settings put global window_shadow 0
settings put system window_shadow 0
settings put secure window_shadow 0
settings put global debug.hwui.forcegpu true
settings put system debug.hwui.forcegpu true
settings put secure debug.hwui.forcegpu true
settings put global debug.hwui.force.gpu true
settings put system debug.hwui.force.gpu true
settings put secure debug.hwui.force.gpu true
settings put global debug.hwui.force_gpu true
settings put system debug.hwui.force_gpu true
settings put secure debug.hwui.force_gpu true
settings put global debug.swapinterval 0
settings put system debug.swapinterval 0
settings put secure debug.swapinterval 0
settings put global debug.sys.display.fps 120
settings put system debug.sys.display.fps 120
settings put secure debug.sys.display.fps 120
settings put global debug.sys.game.minfps 120
settings put system debug.sys.game.minfps 120
settings put secure debug.sys.game.minfps 120
settings put global debug.sys.game.maxfps 120
settings put system debug.sys.game.maxfps 120
settings put secure debug.sys.game.maxfps 120
settings put global debug.sys.game.maxframerate 120
settings put system debug.sys.game.maxframerate 120
settings put secure debug.sys.game.maxframerate 120
settings put global debug.sys.sf.fps 120
settings put system debug.sys.sf.fps 120
settings put secure debug.sys.sf.fps 120
settings put global debug.sys.fps_unlock_allowed 120
settings put system debug.sys.fps_unlock_allowed 120
settings put secure debug.sys.fps_unlock_allowed 120
settings put global debug.sys.display.max_fps 120
settings put system debug.sys.display.max_fps 120
settings put secure debug.sys.display.max_fps 120
settings put global debug.sys.video.max.fps 120
settings put system debug.sys.video.max.fps 120
settings put secure debug.sys.video.max.fps 120
settings put global debug.sys.surfaceflinger.idle_reduce_framerate_enable no
settings put system debug.sys.surfaceflinger.idle_reduce_framerate_enable no
settings put secure debug.sys.surfaceflinger.idle_reduce_framerate_enable no
settings put global debug.sys.surfaceflinger.enable_gpu 1
settings put system debug.sys.surfaceflinger.enable_gpu 1
settings put secure debug.sys.surfaceflinger.enable_gpu 1
settings put global debug.sys.vsync_optimization_enable false
settings put system debug.sys.vsync_optimization_enable false
settings put secure debug.sys.vsync_optimization_enable false
settings put global debug.sys.hwui.dyn_vsync 0
settings put system debug.sys.hwui.dyn_vsync 0
settings put secure debug.sys.hwui.dyn_vsync 0
settings put global debug.sys.vsync false
settings put system debug.sys.vsync false
settings put secure debug.sys.vsync false
settings put global debug.sf.max_frame_latency 1
settings put system debug.sf.max_frame_latency 1
settings put secure debug.sf.max_frame_latency 1
settings put global debug.sf.no_hw_vsync true
settings put system debug.sf.no_hw_vsync true
settings put secure debug.sf.no_hw_vsync true
settings put global debug.sf.numframebuffers 1
settings put system debug.sf.numframebuffers 1
settings put secure debug.sf.numframebuffers 1
settings put global debug.vk.numframebuffers 1
settings put system debug.vk.numframebuffers 1
settings put secure debug.vk.numframebuffers 1
settings put global debug.vulkan.numframebuffers 1
settings put system debug.vulkan.numframebuffers 1
settings put secure debug.vulkan.numframebuffers 1
settings put global persist.sys.vk.16x_msaa_enabled true
settings put system persist.sys.vk.16x_msaa_enabled true
settings put secure persist.sys.vk.16x_msaa_enabled true
settings put global persist.sys.vulkan.16x_msaa_enabled true
settings put system persist.sys.vulkan.16x_msaa_enabled true
settings put secure persist.sys.vulkan.16x_msaa_enabled true
settings put global persist.sys.vk.msaa_samples 16
settings put system persist.sys.vk.msaa_samples 16
settings put secure persist.sys.vk.msaa_samples 16
settings put global persist.sys.vulkan.msaa_samples 16
settings put system persist.sys.vulkan.msaa_samples 16
settings put secure persist.sys.vulkan.msaa_samples 16
settings put global debug.scaling_governor performance
settings put system debug.scaling_governor performance
settings put secure debug.scaling_governor performance
settings put global debug.sys.thermal.protection 0
settings put system debug.sys.thermal.protection 0
settings put secure debug.sys.thermal.protection 0
cmd looper_stats disable
cmd display ab-logging-disable
cmd display dwb-logging-disable
# Disable Data Saver Mode
cmd netpolicy set restrict-background false
settings put system ro.sf.blurs_are_expensive 0
settings put global ro.sf.blurs_are_expensive 0
settings put secure ro.sf.blurs_are_expensive 0
settings put system ro.surface_flinger.supports_background_blur 0
settings put global ro.surface_flinger.supports_background_blur 0
settings put secure ro.surface_flinger.supports_background_blur 0
# Force High Refresh Rate
# DONT DISABLE, USES 60HZ WHEN 0
settings put global vendor.display.use_smooth_motion 1
settings put system vendor.display.use_smooth_motion 1
settings put secure vendor.display.use_smooth_motion 1
setprop vendor.display.use_smooth_motion 1
settings put system persist.qfp false
settings put global persist.qfp false
settings put secure persist.qfp false
settings put system audio_safe_volume_state 0
settings put global audio_safe_volume_state 0
settings put system vendor.audio.tunnel.encode true
settings put system tunnel.audio.encode true
settings put system qc.tunnel.audio.encode true
settings put system use.non-omx.mp3.decoder 0
settings put system use.non-omx.aac.decoder 0
settings put system use.non-omx.flac.decoder 0
settings put system media.aac_51_output_enabled false
settings put system audio_hal_bass_boost_level 0
settings put system audio_hal_treble_level 0
settings put system audio_hal_eq_level 0
settings put system audio_hal_sampling_rate 44100
settings put system audio_hal_bit_depth 16
settings put system audio.dolby.ds2.enabled false
settings put global audio.dolby.ds2.enabled false
settings put global vendor.audio.pp.asphere.enabled false
settings put global audio.pp.asphere.enabled false
settings put global ro.vender.audio.3d.audio.support false
settings put global ro.hardware.hifi.support true
settings put global ro.audio.hifi true
settings put global ro.vendor.audio.hifi true
settings put global persist.audio.hifi true
settings put global persist.vendor.audio.hifi true
settings put global audio.UHD_enabled false
settings put global audio.3d.support false
settings put system audio.deep_buffer.media false
settings put global audio.deep_buffer.media false
settings put system audio.offload.disable true
settings put global audio.offload.disable true
settings put global ro.vendor.audio.sdk.ssr false
settings put system vendor.audio.flac.sw.decoder.24bit false
settings put global vendor.audio.flac.sw.decoder.24bit false
settings put system vendor.audio.offload.multiple.enabled false
settings put global vendor.audio.offload.multiple.enabled false
settings put system vendor.audio.playback.mch.downsample false
settings put global vendor.audio.playback.mch.downsample false
settings put system vendor.audio.safx.pbe.enabled false
settings put global vendor.audio.safx.pbe.enabled false
settings put system vendor.audio.use.sw.alac.decoder true
settings put global vendor.audio.use.sw.alac.decoder true
settings put system vendor.audio.use.sw.ape.decoder true
settings put global vendor.audio.use.sw.ape.decoder true
settings put system vendor.audio.hw.aac.encoder true
settings put global vendor.audio.hw.aac.encoder true
settings put system audio.offload.video false
settings put global audio.offload.video false
settings put system media.stagefright.enable-http true
settings put global media.stagefright.enable-http true
settings put system media.stagefright.enable-aac true
settings put global media.stagefright.enable-aac true
settings put system media.stagefright.enable-qcp true
settings put global media.stagefright.enable-qcp true
settings put system media.stagefright.enable-fma2dp true
settings put global media.stagefright.enable-fma2dp true
settings put system media.stagefright.enable-scan true
settings put global media.stagefright.enable-scan true
settings put system media.stagefright.audio.deep false
settings put global media.stagefright.audio.deep false
settings put system media.stagefright.thumbnail.prefer_hw_codecs true
settings put global media.stagefright.thumbnail.prefer_hw_codecs true
settings put system persist.mm.enable.prefetch true
settings put global persist.mm.enable.prefetch true
settings put system vendor.audio.spkr_prot.tx.sampling_rate 44100
settings put global vendor.audio.spkr_prot.tx.sampling_rate 44100
settings put system vendor.audio.feature.spkr_prot.enable false
settings put global vendor.audio.feature.spkr_prot.enable false
settings put system persist.vendor.audio.speaker.prot.enable false
settings put global persist.vendor.audio.speaker.prot.enable false
settings put system vendor.audio.feature.audiozoom.enable false
settings put global vendor.audio.feature.audiozoom.enable false
settings put system vendor.audio.feature.custom_stereo.enable true
settings put global vendor.audio.feature.custom_stereo.enable true
settings put system vendor.audio.feature.deepbuffer_as_primary.enable false
settings put global vendor.audio.feature.deepbuffer_as_primary.enable false
settings put system vendor.audio.feature.dynamic_ecns.enable false
settings put global vendor.audio.feature.dynamic_ecns.enable false
settings put system vendor.audio.feature.external_dsp.enable false
settings put global vendor.audio.feature.external_dsp.enable false
settings put system vendor.audio.feature.hifi_audio.enable true
settings put global vendor.audio.feature.hifi_audio.enable true
settings put system vendor.audio.feature.maxx_audio.enable false
settings put global vendor.audio.feature.maxx_audio.enable false
settings put system vendor.audio.feature.vbat.enable false
settings put global vendor.audio.feature.vbat.enable false
settings put global audio.offload.track.enable false
settings put global media.stagefright.enable-record true
settings put global media.stagefright.enable-meta true
settings put global audio.offload.gapless.enabled false
settings put global audio.offload.pcm.16bit.enable false
settings put global audio.offload.pcm.24bit.enable false
# settings put global audio.track.enablemonoorstereo 1
settings put global vendor.audio.lowpower false
settings put global lpa.use-stagefright true
settings put global lpa.decode false
settings put global lpa.encode false
settings put global tunnel.decode true
settings put global tunnel.encode true
settings put global persist.audio.hp false
settings put global ro.config.hifi_always_on true
settings put global ro.config.hifi_enhance_support 1
settings put global ro.vendor.audio.game.effect false
settings put global ro.audio.soundfx.dirac false
settings put global media.stagefright.use-awesome true
settings put global persist.media.lowlatency.enable true
settings put system vendor.audio.c2.preferred true
settings put global vendor.audio.c2.preferred true
settings put system vendor.audio.feature.a2dp_offload.enable false
settings put global vendor.audio.feature.a2dp_offload.enable false
settings put system vendor.audio.feature.afe_proxy.enable false
settings put global vendor.audio.feature.afe_proxy.enable false
settings put system vendor.audio.feature.battery_listener.enable false
settings put global vendor.audio.feature.battery_listener.enable false
settings put system vendor.audio.feature.compress_in.enable false
settings put global vendor.audio.feature.compress_in.enable false
settings put system vendor.audio.feature.compress_meta_data.enable false
settings put global vendor.audio.feature.compress_meta_data.enable false
settings put system vendor.audio.feature.concurrent_capture.enable false
settings put global vendor.audio.feature.concurrent_capture.enable false
settings put system vendor.audio.feature.fluence.enable false
settings put global vendor.audio.feature.fluence.enable false
settings put system vendor.audio.offload.gapless.enabled false
settings put global vendor.audio.offload.gapless.enabled false
settings put system vendor.audio.offload.multiaac.enable false
settings put global vendor.audio.offload.multiaac.enable false
settings put system vendor.audio.offload.track.enable false
settings put global vendor.audio.offload.track.enable false
settings put system vendor.audio.use.sw.mpegh.decoder true
settings put global vendor.audio.use.sw.mpegh.decoder true
settings put system debug.c2.use_dmabufheaps 1
settings put global debug.c2.use_dmabufheaps 1
settings put global vendor.audio.tunnel.encode true
settings put global tunnel.audio.encode true
settings put global qc.tunnel.audio.encode true
settings put global use.non-omx.mp3.decoder 0
settings put global use.non-omx.aac.decoder 0
settings put global use.non-omx.flac.decoder 0
settings put global media.aac_51_output_enabled false
settings put global audio_hal_bass_boost_level 0
settings put global audio_hal_treble_level 0
settings put global audio_hal_eq_level 0
settings put global audio_hal_sampling_rate 44100
settings put global audio_hal_bit_depth 16
settings put system vendor.audio.pp.asphere.enabled false
settings put system audio.pp.asphere.enabled false
settings put system ro.vender.audio.3d.audio.support false
settings put system ro.hardware.hifi.support true
settings put system ro.audio.hifi true
settings put system ro.vendor.audio.hifi true
settings put system persist.audio.hifi true
settings put system persist.vendor.audio.hifi true
settings put system audio.UHD_enabled false
settings put system audio.3d.support false
settings put system audio.offload.track.enable false
settings put system media.stagefright.enable-record true
settings put system media.stagefright.enable-meta true
settings put system audio.offload.gapless.enabled false
settings put system audio.offload.pcm.16bit.enable false
settings put system audio.offload.pcm.24bit.enable false
settings put system vendor.audio.lowpower false
settings put system lpa.use-stagefright true
settings put system lpa.decode false
settings put system lpa.encode false
settings put system tunnel.decode true
settings put system tunnel.encode true
settings put system persist.audio.hp false
settings put system ro.config.hifi_always_on true
settings put system ro.config.hifi_enhance_support 1
settings put system ro.vendor.audio.game.effect false
settings put system ro.audio.soundfx.dirac false
settings put system media.stagefright.use-awesome true
settings put system persist.media.lowlatency.enable true
settings put system ro.vendor.audio.sdk.ssr false
settings put secure audio_safe_volume_state 0
settings put secure vendor.audio.tunnel.encode true
settings put secure tunnel.audio.encode true
settings put secure qc.tunnel.audio.encode true
settings put secure use.non-omx.mp3.decoder 0
settings put secure use.non-omx.aac.decoder 0
settings put secure use.non-omx.flac.decoder 0
settings put secure media.aac_51_output_enabled false
settings put secure audio_hal_bass_boost_level 0
settings put secure audio_hal_treble_level 0
settings put secure audio_hal_eq_level 0
settings put secure audio_hal_sampling_rate 44100
settings put secure audio_hal_bit_depth 16
settings put secure audio.dolby.ds2.enabled false
settings put secure vendor.audio.pp.asphere.enabled false
settings put secure audio.pp.asphere.enabled false
settings put secure ro.vender.audio.3d.audio.support false
settings put secure ro.hardware.hifi.support true
settings put secure ro.audio.hifi true
settings put secure ro.vendor.audio.hifi true
settings put secure persist.audio.hifi true
settings put secure persist.vendor.audio.hifi true
settings put secure audio.UHD_enabled false
settings put secure audio.3d.support false
settings put secure audio.deep_buffer.media false
settings put secure audio.offload.disable true
settings put secure ro.vendor.audio.sdk.ssr false
settings put secure vendor.audio.flac.sw.decoder.24bit false
settings put secure vendor.audio.offload.multiple.enabled false
settings put secure vendor.audio.playback.mch.downsample false
settings put secure vendor.audio.safx.pbe.enabled false
settings put secure vendor.audio.use.sw.alac.decoder true
settings put secure vendor.audio.use.sw.ape.decoder true
settings put secure vendor.audio.hw.aac.encoder true
settings put secure audio.offload.video false
settings put secure media.stagefright.enable-http true
settings put secure media.stagefright.enable-aac true
settings put secure media.stagefright.enable-qcp true
settings put secure media.stagefright.enable-fma2dp true
settings put secure media.stagefright.enable-scan true
settings put secure media.stagefright.audio.deep false
settings put secure media.stagefright.thumbnail.prefer_hw_codecs true
settings put secure persist.mm.enable.prefetch true
settings put secure vendor.audio.spkr_prot.tx.sampling_rate 44100
settings put secure vendor.audio.feature.spkr_prot.enable false
settings put secure persist.vendor.audio.speaker.prot.enable false
settings put secure vendor.audio.feature.audiozoom.enable false
settings put secure vendor.audio.feature.custom_stereo.enable true
settings put secure vendor.audio.feature.deepbuffer_as_primary.enable false
settings put secure vendor.audio.feature.dynamic_ecns.enable false
settings put secure vendor.audio.feature.external_dsp.enable false
settings put secure vendor.audio.feature.hifi_audio.enable true
settings put secure vendor.audio.feature.maxx_audio.enable false
settings put secure vendor.audio.feature.vbat.enable false
settings put secure audio.offload.track.enable false
settings put secure media.stagefright.enable-record true
settings put secure media.stagefright.enable-meta true
settings put secure audio.offload.gapless.enabled false
settings put secure audio.offload.pcm.16bit.enable false
settings put secure audio.offload.pcm.24bit.enable false
# settings put secure audio.track.enablemonoorstereo 1
settings put secure vendor.audio.lowpower false
settings put secure lpa.use-stagefright true
settings put secure lpa.decode false
settings put secure lpa.encode false
settings put secure tunnel.decode true
settings put secure tunnel.encode true
settings put secure persist.audio.hp false
settings put secure ro.config.hifi_always_on true
settings put secure ro.config.hifi_enhance_support 1
settings put secure ro.vendor.audio.game.effect false
settings put secure ro.audio.soundfx.dirac false
settings put secure media.stagefright.use-awesome true
settings put secure persist.media.lowlatency.enable true
settings put secure vendor.audio.c2.preferred true
settings put secure vendor.audio.feature.a2dp_offload.enable false
settings put secure vendor.audio.feature.afe_proxy.enable false
settings put secure vendor.audio.feature.battery_listener.enable false
settings put secure vendor.audio.feature.compress_in.enable false
settings put secure vendor.audio.feature.compress_meta_data.enable false
settings put secure vendor.audio.feature.concurrent_capture.enable false
settings put secure vendor.audio.feature.fluence.enable false
settings put secure vendor.audio.offload.gapless.enabled false
settings put secure vendor.audio.offload.multiaac.enable false
settings put secure vendor.audio.offload.track.enable false
settings put secure vendor.audio.use.sw.mpegh.decoder true
settings put secure debug.c2.use_dmabufheaps 1
setprop debug.disable.hwacc 0
setprop debug.graphics.game_default_frame_rate.disabled true
setprop debug.hwui.renderer skiavk
setprop debug.hwui.rendering skiavk
setprop debug.hwui.render_engine_backend skiavk
setprop debug.hwui.rendering_type skiavk
setprop ro.hwui.use_vulkan true
setprop debug.hwui.render_type gpu
setprop debug.hwui.composition_type gpu
setprop debug.hwui.disabledither false
setprop debug.hwui.disable_vsync true
setprop debug.hwui.force_gpu_for_2d true
setprop debug.hwui.force_dark true
setprop debug.hwui.use_gpu_pixel_buffers true
setprop debug.hwui.render_dirty_regions false
setprop debug.hwui.force_refresh_rate 120
setprop debug.hwui.refresh_rate_forced 120
setprop debug.hwui.refresh_rate 120
setprop debug.hwui.render_dirty_regions false
setprop debug.sf.hw true
setprop debug.egl.force_msaa true
setprop debug.egl.force_ssaa true
setprop debug.vk.force_msaa true
setprop debug.vk.force_ssaa true
setprop debug.vulkan.force_msaa true
setprop debug.vulkan.force_ssaa true
setprop video.accelerate.hw true
setprop persist.sys.force_highendgfx true
setprop debug.power.profile high_performance