Wiki page ssl changed with summary [[Android] added missing string type] by Daniel

This commit is contained in:
ORG-wiki 2023-02-12 04:00:35 +01:00
parent 1993ff57ff
commit 3b48899128
1 changed files with 3 additions and 3 deletions

View File

@ -161,9 +161,9 @@ ls $hashed_name.0
<code>
adb root
adb shell mount -o rw,remount /
adb push hashed_name.0 /system/etc/security/cacerts/hashed_name.0
adb shell chmod 644 /system/etc/security/cacerts/hashed_name.0
adb shell chown root:root /system/etc/security/cacerts/hashed_name.0
adb push $hashed_name.0 /system/etc/security/cacerts/
adb shell chmod 644 /system/etc/security/cacerts/$hashed_name.0
adb shell chown root:root /system/etc/security/cacerts/$hashed_name.0
adb shell reboot
</code>