Android: Difference between revisions

From Bitpost wiki
(Created page with "=== Android Studio === Follow the [https://developer.android.com/studio/install.html install guide], but here is a quick start: * Unzip the download where you have a couple G...")
 
No edit summary
Line 10: Line 10:
* Help > Check for Update
* Help > Check for Update
* Tools > Create desktop entry
* Tools > Create desktop entry
* During viper install, I created this folder so it would put the Sdk (~2GB) here:
/home/m/bigdata/apps/Android/Sdk


=== Good starting points ===
=== Good starting points ===
* [https://developer.android.com/training/basics/firstapp/index.html First app]
* [https://developer.android.com/studio/intro/index.html IDE intro]

Revision as of 01:29, 15 November 2017

Android Studio

Follow the install guide, but here is a quick start:

  • Unzip the download where you have a couple GB of space
  • Install some required 32-bit libraries
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
  • start it
cd android-studio/bin
./studio.sh
  • Help > Check for Update
  • Tools > Create desktop entry
  • During viper install, I created this folder so it would put the Sdk (~2GB) here:
/home/m/bigdata/apps/Android/Sdk

Good starting points