Is it possible to edit the name of a project?

1

Is it possible to change the name of an application after the project has already been created in Android Studio, by Manifest something like this?

    
asked by anonymous 25.01.2018 / 14:43

1 answer

3

Yes.

Just change the android: label="@ string / app_name" on 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">
    
25.01.2018 / 15:04