Stoik
Members
- Apr 5, 2016
- 28
- 15
Do I understand it right that I can enable the camera2api without a root ?..
No-Root Edit HowTo for build.prop:
- Need Device with TWRP and open bootloader
- PC/Mac with adb drivers
- mount /system/ in TWRP
Code:
adb devices (check device is connected)
adb reboot recovery
adb pull /system/build.prop (find file in adb.exe folder)
than edit build.prop with...
Code:
persist.camera.HAL3.enabled=1
persist.vendor.camera.HAL3.enabled=1
persist.camera.stats.test=5
persist.vendor.camera.stats.test=5
and at last...
Code:
adb push build.prop /system/
adb shell chmod 644 /system/build.prop
adb reboot
finished...
Works on all Android Devices with TWRP.