Last active
May 25, 2021 15:26
-
-
Save alexishida/4853e2eb7bb96c4537a5f15a227035b9 to your computer and use it in GitHub Desktop.
Android Commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Lib necessarias Ubuntu | |
| $ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 | |
| # /dev/kvm device permission denied | |
| $ sudo apt install qemu-kvm | |
| $ sudo adduser $USER kvm | |
| # Android SDK path (https://developer.android.com/studio/command-line/variables) | |
| Linux: ~/Android/Sdk | |
| # Android SDK | |
| ANDROID_SDK_ROOT=~/Android/Sdk | |
| export ANDROID_SDK_ROOT | |
| Mac: ~/Library/Android/sdk | |
| Windows: %LOCALAPPDATA%\Android\sdk | |
| # Cordova | |
| https://cordova.apache.org/docs/en/10.x/guide/cli/index.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment