Firstly, Install Ubuntu 17.04 on Windows 10/Oracle VirtualBox.
Before install Android Studio on 64-bit Ubuntu 17.04, install 32-bit libraries:
$ sudo dpkg --add-architecture i386
$ sudo apt-get update
$ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
(details refer to Fix "Unable to run mksdcard SDK tool" when install Android Studio on Linux)
Download Android Studio 3.0 Canary, visit https://developer.android.com/studio/preview/index.html
Unpack the ZIP file, to any directory you want.
Open a terminal, navigate into <android-studio>/bin/ and execute studio.sh
This video show how:
Setup for debugging on real device:
On Ubuntu/Linux, to debug on real device, you have to set up your system to detect your device.
(referencec: https://developer.android.com/studio/run/device.html#setting-up)
Edit/Create /etc/udev/rules.d/51-android.rules
$ sudo nano /etc/udev/rules.d/51-android.rules
Add the code:
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"
Where 00b4 is the vendor ID, replace it to match your device. For my Samsung device, replace with 04e8.
You can check your USB vendor ID here: https://developer.android.com/studio/run/device.html#VendorIds.
or try to find it using lsusb command.
Kotlin programming language, Now official on Android. It's a dummy Hello World of Kotlin language, created in Android Studio 3.0 Canary 1.
No comments:
Post a Comment