Ako nastaviť android studio a godot pre export aplikacií pre android

Posted on Sep 20, 2024

1. install android studio

how to install android studio on linux

2. extract to home directory

3. go to android studio folder in terminal

cd bin

sudo ./studio.sh

4. how to add android studio into app menu

Android Studio -> Tools -> Create Desktop Entry

5. install open jdk

sudo apt-get install openjdk-11-jdk

6. set JAVA_HOME

  1. find /usr/lib/jvm/java-1.x.x-openjdk
  2. vim /etc/profile Prepend sudo if logged in as not-privileged user, ie. sudo vim
  3. Press ‘i’ to get in insert mode
  4. add:
export JAVA_HOME="path that you found"

export PATH=$JAVA_HOME/bin:$PATH
  1. logout and login again, reboot, or use source /etc/profile to apply changes immediately in your current shell

godot engine android export documentation

advanced video about godot and android studio