Android studio not running! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Android studio not running!

I want to make mobile app but Android studio not working on my Pc Due to lack of RAM(i have 3gb on my Pc). Is there any other platform to make app By using Java programming with no heavy tools?

31st May 2019, 8:17 PM
Mr Robot
Mr Robot - avatar
8 Answers
1st Jun 2019, 11:16 AM
Rstar
Rstar - avatar
+ 2
Download only the android sdk and compile from command line. Android compilation proccess is very complicated, you should design a script that does everything for you (generating R files, compiling, making dex files, packaging, aligning, signing, installing on emulator or real device...)
31st May 2019, 10:21 PM
Andres0b0100
Andres0b0100 - avatar
+ 2
Standalone Android SDK is available in android studio download page. The zip will contain the basic tools, then you should use the included sdkmanager tool for download all the other packages (build-tools, platform, platform-tools and any other you may need). Use sdkmanager --list" for listing all packages and download the ones you will use (using sdkmanager package-name)
31st May 2019, 10:24 PM
Andres0b0100
Andres0b0100 - avatar
+ 2
You can use physical devices, you should enable developer tools and usb debugging in your device. You will use ADB for connecting, installing and running the apk's in your device. After connecting the device to your computer (by USB) you may enable connections over wifi, you should set the listening port using ADB
31st May 2019, 10:33 PM
Andres0b0100
Andres0b0100 - avatar
+ 2
You're welcome. When debugging over wifi, the phone may lose to connection to ADB, you just ave to run adb disconnect and then install the device again (you just have to remember the phone's LAN ip address, e.g. 192.168.0.100)
31st May 2019, 11:51 PM
Andres0b0100
Andres0b0100 - avatar
+ 1
Andres0b0100 I already downloaded everything the problem is that when I run AVD(Android virtual...) it cannot show anything due to slow computer performance Can I use Android studio without AVD?
31st May 2019, 10:27 PM
Mr Robot
Mr Robot - avatar
+ 1
Andres0b0100 thanks I should try it.
31st May 2019, 11:45 PM
Mr Robot
Mr Robot - avatar
+ 1
Andres0b0100 oke 😊
31st May 2019, 11:52 PM
Mr Robot
Mr Robot - avatar