手順
デバイス(OSがandroid)をお使いのコンピュータに接続します。
その後、apkファイルがある場所まで移動し、下記を実行します。
adb install sample.apk
エラー
$ adb install sample.apk
* daemon not running; starting now at tcp:5037
* daemon started successfully
error: device unauthorized.
This adb server's $ADB_VENDOR_KEYS is not set
Try 'adb kill-server' if that seems wrong.
Otherwise check for a confirmation dialog on your device.
解決法
デバイスをコンピュータから外します。
andoridのSystemsへ移動し、Developer options -> USB debugging
をon, Revoke USB debugging authorizations
をタップします。
ターミナルにて、下記コマンドを実行
adb kill-server
adb start-server