Ana Koridze
Ana Koridze

Reputation: 1777

Create a native version update of an Android app written using Ionic Framework

I am about to create version 2 of an application that was first written using Ionic framework.

I would like to verify one thing that concerns updating the original app on Google Play Store.

When I create a new project in Android Studio :

I should give the same package name as the original app I should sign with the same keystore and passwords

Is there anything else I have to take into consideration?

Upvotes: 2

Views: 98

Answers (1)

Ravindra Shekhawat
Ravindra Shekhawat

Reputation: 4363

Play Store Ionic to Native App Transition :

1.On google play store publishing ionic app are same process as publishing native app.

2.Develop build and deploy any cross platform app(ex:ionic,cordova) and later easily move to native app.

3.In Android Native App build gradle file , package name(application ID) should be same for different versions of app(in your case ionic). Also signing certificate(keystore) remain same during version change.

Upvotes: 3

Related Questions