Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1.53 KB

setup-android-studio.md

File metadata and controls

49 lines (44 loc) · 1.53 KB

android studio setup

 $ cd android-studio/bin$
  • android-studioを起動する。

    $ ~/android-studio/bin$ ./studio.sh
    
  • Launcherに登録する起動ファイル作成

    $ cd ~
    $ cd android-studio
    $ vi android.desktop
    
    • 下記内容を記述する
    [Desktop Entry]
    Type=Application
    Encoding=UTF-8
    Name=AndroidStudio
    Comment=AndroidStudio
    Exec=/home/ユーザー名/android-studio/bin/studio.sh
    Icon=/home/ユーザー名/android-studio/bin/studio.png
    
    Terminal=false
    
    • 権限を変更する
    $ chmod 775 android.desktop
    
    • 作成したファイルをLauncherへドラック&ドロップする

起動してもSDKが正常にインストール出来ない時

  • 依存性の問題の可能性があるので、下記手順を行う。
    $ sudo apt-get install -y lib32stdc++6
    

引用