0
It is possible to change the name of an application after already created the project in Android Studio, by Manifest or something like this?
0
It is possible to change the name of an application after already created the project in Android Studio, by Manifest or something like this?
2
Yes.
Just change android:label="@string/app_name" in the application node in Androidmanifest.xml by the name you want to put.
Example:
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="allowBackup">
Browser other questions tagged java android android-studio
You are not signed in. Login or sign up in order to post.