How to Install Android Studio on Fedora 35 | Holhol24
Android Studio is a sturdy built-in construction setting (IDE)for Android construction, in keeping with IntelliJ IDEA. It is the primary selection for an app developer to broaden programs for Google’s Android working machine.
It is to be had for Windows, Linux, macOS, and Chrome OS.
Here, we can see methods to set up Android Studio on Fedora 35.
System Requirements
You will desire a Fedora machine with GNOME or KDE Desktop, VT improve (non-compulsory), and eight GB RAM or extra for Android Studio set up.
Install KVM on Fedora
First, take a look at your CPU helps Intel VT / AMD SVM or no longer.
egrep --color 'vmx|svm' /proc/cpuinfo | wc -l
Output: If the above output is non-zero, then your device has Intel or AMD virtualization improve.
8
Then, set up the KVM to have {hardware} acceleration for the easier efficiency of Android Studio in case your device helps VT generation.
sudo dnf -y set up qemu-kvm bridge-utils libvirt virt-install
Install Android Studio on Fedora 35
You can observe any one of the most beneath find out how to set up Android Studio on Fedora 35.
1. Using Snap
2. Using Official Package
1. Install Android Studio Using Snap
Android studio is to be had as a snap package deal for Fedora working machine. So, first, set up the Snap package deal control in your machine.
sudo dnf set up -y snapd sudo ln -s /var/lib/snapd/snap /snap sudo snap set up core && sudo snap refresh core
Then, set up Android Studio the usage of the snap
command.
sudo snap set up android-studio --classic
The set up will take a while to finish. After the set up of Android Studio, test the set up the usage of the beneath command.
sudo snap record android-studio
Output:
Name Version Rev Tracking Publisher Notes android-studio 2020.3.1.24 115 newest/strong snapcrafters basic
2. Install Android Studio From Official Archive
First, set up 32-bit libraries for Android Studio set up.
sudo dnf set up -y zlib.i686 ncurses-libs.i686 bzip2-libs.i686
Next, open a internet browser and discuss with the beneath hyperlink to obtain the newest model of Android Studio from the reputable web page.
OR
Use the beneath command to obtain the Android Studio package deal the usage of the terminal.
cd /tmp wget https://dl.google.com/dl/android/studio/ide-zips/2020.3.1.25/android-studio-2020.3.1.25-linux.tar.gz
Then, extract the downloaded archive the usage of the tar
command.
sudo tar -zxvf android-studio-*-linux.tar.gz sudo mv android-studio /choose/
And then, hyperlink the executable to /bin
listing with the intention to get started Android Studio the usage of the android-studio
command.
sudo ln -sf /choose/android-studio/bin/studio.sh /bin/android-studio
Create a desktop access in order that you get started Android Studio from the Activities menu.
sudo nano /usr/percentage/programs/android-studio.desktop
Use the next data within the above document.
[Desktop Entry] Version=1.0 Type=Application Name=Android Studio Comment=Android Studio Exec=bash -i "/opt/android-studio/bin/studio.sh" %f Icon=/choose/android-studio/bin/studio.png Categories=Development;IDE; Terminal=false StartupNotify=true StartupWMClass=jetbrains-android-studio Name[en_GB]=android-studio.desktop
Launch Android Studio
Start Android Studio by way of going to Activities » Search for Android Studio or working the android-studio
command within the terminal.
Conclusion
That’s All. I am hoping you could have effectively put in Android Studio on Fedora 35.