Reputation: 68
I want to be an Android developer. As Android Studio is hungry for memory, I don't have enough memory for Android Studio on my computer. But I want to continue android development without Android Studio.
I tried to build a project without Android Studio. Firstly, I set up Android SDK on my system. Then I built a maven project using Visual Studio code. I added the dependency androidx. But I couldn't have appcompat in androidx. That's why I couldn't continue.
Again, Android Studio has Layout Editor in which Android UI components can be dragged and dropped. As I don't want to use Android Studio, I couldn't find any tools that I can drag and drop the UI components and it will translate the design to XML.
So I want a proper guideline if there is an alternative way to continue android development. If so, please help me from the beginning. How to build project and add all libraries I need? And how to design android layout easily?
Upvotes: 0
Views: 560
Reputation: 51
If you don't want to use Android Studio, here are a few alternatives:
Set up Visual Studio Code (VSCode) for Android Development:
You can use VSCode for Android development by installing extensions like "Kotlin" or "Java" for language support, and "Gradle for Java" to build your project.
You'll need to set up the Android SDK manually and configure Gradle scripts. While this gives you the flexibility to code in a lightweight environment, it won't have advanced features like drag-and-drop UI design or complete code assistance.
Use Project IDX:
Consider Android Studio via Project IDX (Cloud IDE):
Upvotes: 3
Reputation: 44
When it comes to android development, I'll prefer to use Android Studio always. because it has more compatibility and debugging is way more better than any other IDE specially for Android development.
"How can you ride bike without a bike?"
Upvotes: 0