Another
Android
app dev
tips
I recently began working on a new Android app using my Linux laptop. I retrieved an existing project from GitHub with the intention of changing its name. This allowed me to start a fresh project while making use of the previous work I had done.
Lately, I’ve kicked off the development of another Android app on my Linux laptop. To achieve this, I fetched an existing project from GitHub and intended to alter the project name. The goal was to initiate an entirely new project while leveraging the groundwork I had done before.
Here is the step-by-step tutorial.
- Open the
settings.gradle
file in a text editor. - Find the line that starts with
rootProject.name = '
. - Replace the existing project name with the new project name.
- Save the
settings.gradle
file. - Open the
build.gradle
file in a text editor. - Find the line that starts with
applicationId = '
. - Replace the existing package name with the new package name.
- Save the
build.gradle
file.