Syarat :
Usb debugging aktif
adb
Langkah-langkah :
Hubungkan device android ke komputer / laptop
Buka terminal / shell / cmd
Ketik perintah dibawah ini
adb shell
su
touch /cache/.disable_magisk
Reboot
...
Friday, April 17, 2020
Fix Error count() dan sizeof() Codeigniter pada PHP 7.x

ErrorException in helper.php line 1231:
count(): Parameter must be an array or an object that implements Countable
Cara Fixnya cukup mudah cukup tambahkan "(array)" didalam fungsi sizeOf() atau count()
Contoh :
Sebelum .
Sesudah .
...