Change project name on Android Studio

I want to change the name of my project and module. But if I try to rename them Android Studio notify me some errors… e.g. I want to change the name from “MyApplication” to “AndroidApp” as shown in the image below. AndroidApp (“G:…\Android\AndroidApp). In the second rectangle I want to change it in: AndroidApp [AndroidApp-AndroidApp] edit: This … Read more

Default Activity not found in Android Studio

In Android Studio, right click on the project and choose Open Module Settings. Then go to the Sources tab in your module, find the src folder, right click on it and mark it as Sources (blue color). EDIT: There is no sources tab in later versions of Android Studio, but you can edit the build.gradle file instead: https://stackoverflow.com/a/22028681/1101730 (thanks for comment Josh)

What is Gradle in Android Studio?

Short Answer Gradle is a build system. Long Answer Before Android Studio you were using Eclipse for your development purposes, and, chances are, you didn’t know how to build your Android APK without Eclipse. You can do this on the command line, but you have to learn what each tool (dx and AAPT) does in the SDK. Eclipse saved us all … Read more