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

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

View File

@ -163,9 +163,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>