PROJET AUTOBLOG


Shaarli - Les discussions de Shaarli

Archivé

Site original : Shaarli - Les discussions de Shaarli du 23/07/2013

⇐ retour index

Memo: Commandes android - Liens éclairs

dimanche 2 mars 2014 à 17:14
Famille Michon, le 02/03/2014 à 17:14
Supprimer une application à la main :

"""
Monter le system en RW (cocher dans dev adb + root) pour supprimer une app système:
$ adb shell
$ mount | grep system
/dev/block/platform/msm_sdcc.2/by-num/p25 /system ext4 ro,relatime,barrier=1,data=ordered 0 0
$ su
# mount -o rw,remount -t ext4 /dev/block/platform/msm_sdcc.2/by-num/p25 /system

Trouver une application :
$ adb shell pm package list | grep inputmethod
package:com.android.inputmethod.latin
$ adb shell pm path com.android.inputmethod.latin
/system/app/LatinIME.apk
$ adb pull /system/app/LatinIME.apk #sauvegarde
$ rm -f /system/app/LatinIME.apk
$ adb push com.android.inputmethod.latin_4424.apk /system/app/

Redémarrer le téléphone

Wipe cache
Wipe Dalvik cache
"""
(Permalink)