PhillauSofia
PhillauSofia

Reputation: 381

Can I update an app on Google Play Store using an Flutter project APK?

The situation: I've created an Android app using Java some time ago. It's published on Google Play Store and it uses Firebase as back-end

Now I want to create another version of that app in Flutter - with a new design and other features.

My question is if I can update that already published app on Google Play Store using an APK generated from the Flutter project. Also, can I use the previous Firebase project for the new Flutter app?

Upvotes: 1

Views: 323

Answers (2)

Claudio Redi
Claudio Redi

Reputation: 68410

Definitively you can. You need to be sure to:

  • Sign the apk with the same key as your production build
  • Use the same package name (yourcompany.yourapp.com)

Upvotes: 2

Mohamed Inshaf
Mohamed Inshaf

Reputation: 395

Yes if you have the keystore file you can develop with flutter and upgrade in play store for more details check this link https://flutter.dev/docs/deployment/android

Upvotes: 2

Related Questions