Support #680
Android Development Environment on Arch
Status:
Closed
Priority:
Normal
Assignee:
Category:
Development Environment
Target version:
Description
This is a guide on how I set up my development environment for developing Android applications on Arch Linux.
Prepare the Environment¶
- Edit the pacman config file:
vi /etc/pacman.conf
- And uncomment the multilib definition:
[multilib] Include = /etc/pacman.d/mirrorlist
- And uncomment the multilib definition:
- Make sure the system is up to date:
pacman -Syu
- Install a few dependencies:
pacman -S gcc git gnupg flex bison gperf sdl wxgtk squashfs-tools curl ncurses zlib schedtool perl-switch zip unzip libxslt python2-virtualenv bc wget gcc-multilib lib32-zlib lib32-ncurses lib32-readline
- Install yaourt
- Install libtinfo:
yaourt libtinfo
- Import the ncurses5-compat-libs pgp key:
gpg --keyserver pgp.mit.edu --recv-keys 702353E0F7E48EDB
Install Android SDK¶
- Install the Android SDK from the AUR:
yaourt -S android-sdk
- Install the Android SDK Platform Tools from the AUR:
yaourt -S android-sdk-platform-tools
- Install the Android SDK Build Tools from the AUR:
yaourt -S android-sdk-build-tools
- Create an android sdk users group:
groupadd sdkusers
- Add the user bob into the sdkusers group:
gpasswd -a bob sdkusers
- Change folder's group ownership
chown -R :sdkusers /opt/android-sdk/
4 - Change permissions of the folder so the user in the sdkuser group will be able to write in the sdk folder:
chmod -R g+w /opt/android-sdk/
- Log out and log back in for the new group to take effect.
Install Android SDK Platform API¶
- Next install the latest Android SDK Platform API:
yaourt -S android-platform
Install Android Tools¶
- Install android-tools:
pacman -S android-tools
- Enable USB Debugging on the phone or device:
- Jelly Bean (4.2) and newer: Go to Settings
> About Phonetap Build Number until a popup appears that you have become a developer (about 10 times). Then go to Settings -> Developer --> USB debugging and enable it. - Older versions: This is usually done from Settings -> Applications -> Development -> USB debugging. Reboot the phone after checking this option to make sure USB debugging is enabled.
- Jelly Bean (4.2) and newer: Go to Settings
- Install android-udev:
pacman -S android-udev
- Add yourself to the adbusers group:
gpasswd -a bob adbusers
Install Android Studio IDE¶
- Install Android Studio from the AUR:
yaourt -S android-studio
- (Optional) Install the android-support package:
yaourt -S android-support
- (Optional) Install the android-support package:
Resources¶
Updated by Daniel Curtis about 9 years ago
- Subject changed from Android Development on Arch to Android Development Environment on Arch
- Description updated (diff)
- Status changed from New to In Progress
- % Done changed from 0 to 20
Updated by Daniel Curtis about 9 years ago
- Description updated (diff)
- % Done changed from 20 to 30
Updated by Daniel Curtis about 9 years ago
- % Done changed from 30 to 50
- Description updated (diff)
Updated by Daniel Curtis about 9 years ago
- Status changed from In Progress to Resolved
- % Done changed from 50 to 100