Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
エミュレータにapkファイルをインストールしようとしています。apkファイルがあるディレクトリに移動し、adbinstall[ファイル名].apkと入力しました
私はこの応答を受け取りました:
-bash: adb: command not found
私は何をすべきか?これについてはよくわかりませんので、シンプルにしてください。
ターミナルに「which adb」と入力して、adb の場所を確認します。adb への場所/パスが表示されない場合は、Android SDK の platform-tools フォルダーの場所をシステム PATH 変数に追加する必要があります。
export PATH=$PATH:/home/path_to_android_sdk/platform-tools
また、変更を永続的にするには、.bashrc ファイルを編集して、最後に上記の行を追加します。.bashrc を保存して実行します。