adb uninstall

adb uninstall




実機のアプリをアンインストールする

adb uninstall [-k] <package>

adb uninstallは実機にインストールされているアプリをアンインストールします。

-k アプリのデータとキャッシュディレクトリを保持します。
 <package> パッケージ名です。
アプリ名ではないので注意してください。

使い方

com.abcd.testをアンインストール

adb uninstall com.abcd.test

com.abcd.testのデータを保持しつつアンインストール

adb uninstall -k com.abcd.test

関連