Je me demande s'il est possible d'installer un fichier .apk comme application système directement (avec Root) ? Sans convertir l'application utilisateur en application système.
Réponses
Trop de publicités?
Kevin
Points
161
Via ADB : (Copier l'apk sur le téléphone via usb/mon ordinateur d'abord)
例
adb shell (Get into shell to run beow commands)
su (Run as root)
mount -o rw,remount /system (Mount system read/write since default it read-only)
chmod 755 /system/priv-app/Messaging_SEP81 (Set permissions on folder)
chmod -R 644 /system/priv-app/Messaging_SEP81 (Set permissions on apk file)
ls -l /system/priv-app/Messaging_SEP81 (Check permissions - Should be: -rw-r--r-- 1 root root - not sure what 1 & 2 is)
ls -l /system/priv-app | grep "Messaging" (Check permissions - Should be: drwxr-xr-x 2 root root)
reboot (Reboot device)