Android/開発環境/AndroidStudio/apkコマンドインストール
提供: 初心者エンジニアの簡易メモ
目次
apkは以下のようにコマンドでインストールできる
adb install ~/MyHogeApplication/app/release/app-release.apk
INSTALL_FAILED_ALREADY_EXISTSエラーが出る場合
INSTALL_FAILED_ALREADY_EXISTS: Attempt to re-install jp.co.hogehoge1 without first uninstalling.
-rをつける
adb install -r ~/MyHogeApplication/app/release/app-release.apk
adbの場合はapkにしてからインストール
macであれば以下でまずツールの準備
brew install bundletool
以下でaabをapkへ変換
bundletool build-apks --bundle=app.aab \ --output=app.apk \ --ks=/Users/[user]/.android/debug.keystore \ --ks-pass=pass:android \ --ks-key-alias=androiddebugkey \ --key-pass=pass:android
apkインストール
bundletool install-apks --apks=app.apk
adbを使ってアンインストール
adb uninstall com.example.app1
adbからテキスト入力
adb shell input text hogehoge; // 文字入力 adb shell input keyevent ENTER; // enter入力 adb shell input keyevent KEYCODE_TAB; // tab入力