(Android Studio) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

(Android Studio)

I have 2GB ram PC, so android studio did not support here, is there another way to compile code to app?

18th Dec 2018, 10:09 PM
Jingga Sona
Jingga Sona - avatar
2 Answers
+ 7
Thanks Kirk Schafer! that is the most helpful information i ever read
19th Dec 2018, 4:23 AM
Jingga Sona
Jingga Sona - avatar
+ 4
I haven't tried this, but you can build from the command line: https://developer.android.com/studio/build/building-cmdline Android Virtual Devices are usually made through a Studio menu item. To do this without Studio, review this post: https://stackoverflow.com/questions/48433558/is-it-possible-to-create-and-maintain-android-virtual-devices-without-installing To start an AVD at the command line (case sensitive + sample path shown): C:\android\sdk\emulator\emulator -avd Name_Of_AndroidVirtualDevice.avd On my test system, those avd's are stored in %USERPROFILE%\.Android\avd ~ Emulator should know where these live; that's just where I have them ~ If it doesn't know, you may need to set the environment variable ANDROID_AVD_HOME (or ...SDK_HOME) https://developer.android.com/studio/command-line/variables adb (Android Debug Bridge) can be used to get your apks onto emulators / real devices (adb install, adb push)
19th Dec 2018, 12:52 AM
Kirk Schafer
Kirk Schafer - avatar