How to set up an app to launch on Google play and the Apple Store

4

I am developing an App using Ionic / Cordova and I had some doubts, they are:

  • I need to do some specific configuration in my file Package.Json so you do not have future problems when generating a update it on Google Play or the Apple Store ?
  • When I'm posting an update, I should just change the version of App and upload to stores ( Aplle Store and Google Play )?
  • asked by anonymous 04.10.2016 / 15:41

    1 answer

    2

    You do not need to change anything in package.json , the only file you should modify every time you generate a new version of the App is config.xml , which is at the root of the project. Modify only the versionCode and version that the framework will do the rest for you.

    <widget id="com.ionicframework.application466003" android-versionCode="100000" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
    

    To publish your App follow the tutorial of the page of the ionic framework: link

        
    11.10.2016 / 21:59