0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Android studioのパスを通す

Posted at

Android Studioのインストール

Android StudioのページへGO
https://developer.android.com/studio

Android Studioをダウンロード
スクリーンショット 2022-06-16 22.47.32.png

これを試してみる。
多分今は何も表示されないはず。

echo $ANDROID_HOME

次はこれ。vimを開く。

vim ~/.zshenv 

vim上でこれを書く。書けたら保存して閉じる。

export ANDROID_HOME=/Users/自分のユーザーネーム/Library/Android/sdk/
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=$ANDROID_HOME/tools:$PATH

次はこれ。

source ~/.zshenv 

最後にこれ。うまくいっていればパスが表示されるはず。

echo $ANDROID_HOME 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?