Gianluca Ghettini
Gianluca Ghettini

Reputation: 11628

Is it safe to change name to an already deployed Android app?

I have an app on the Google Play, already in production. I'm going to submit an update. The update includes a different name for my app (the APK still uses the same app ID of course).

Is it safe to do so? Do the clients will see the app with the different name or will they end up with two app icons on the home screen?

Upvotes: 0

Views: 104

Answers (2)

Infoseeker
Infoseeker

Reputation: 38

Yes, it is safe to change the app's display name (android:label in the manifest) to anything you want. The Android OS and Google Play Store will consider all APKs with the same package name (e.g. com.example.myapp) as referring to the same app. Any new version with a different display name will thus replace any previously installed version of the same app on the launcher.

If you want, you can have multiple launcher icons for the same app. Simply add

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

to every activity that you want to show up on the launcher.

Upvotes: 1

Rishabh
Rishabh

Reputation: 11

I suggest you to don't do so. As you said that update will change the name of the app, this it's also harder to find by your older users and that's how your user lists may reduce.

Upvotes: 1

Related Questions