Ahmed Elghandour
Ahmed Elghandour

Reputation: 51

Updating flutter application to already published native applications on store

I have already two published applications Android/IOS and I'm looking to create a flutter as a cross-platform to reduce the time of developing the same modules in the two applications.

There is an easy way to not create the flutter from scratch as the applications are working fine for me.

Can I use the same application ID(Android) and the bundle ID (IOS) as I will need to update it and not lose the downloads and application history from the apple store and the google store?

Upvotes: 0

Views: 547

Answers (3)

Jayesh Pansheriya
Jayesh Pansheriya

Reputation: 218

In your flutter application, navigate to android project's app level build and update the flutter app Application ID with your existing application id. (My be you already know it).

When you will generate the flutter app (android/ios) with the existing keys. Lets say your existing app on google play console is built with xyz.jks. Built your flutter android project with same key and publish on google play store.

Upvotes: 0

Jayesh Pansheriya
Jayesh Pansheriya

Reputation: 218

yes, you can do it, make sure you used same package name and key other wise playstore showing error.

Upvotes: 2

Celt K. B.
Celt K. B.

Reputation: 789

I also had an Android App. I created a new app with Flutter using the same ID (package name). At the end I signed it with the same key and I uploaded the App on the Playstore without any problem. Everything is still there. The history and statistics.

Upvotes: 1

Related Questions