How to Change App Version Code in Ionic Framework?
When i was working on my android ionic app, i completed my app and upload in play store. But after few date when i need to some changes on that app and uploaded it again but i found error of android app version is not updated.
I did search on google and found one solution how to update android app version in ionic framework. So you have to open config.xml file from root path and just change version="0.0.1" into version="0.0.2". Bellow file is your old file.
config.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.ionicframework.myapp577044" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>myApp</name>
........
You can see changes in bellow file:
config.xml updated
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.ionicframework.myapp577044" version="0.0.2" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>myApp</name>
........
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Python Get Month Name from Number Example
- Angular Webcam Capture Image from Camera Example
- Laravel 9 Resource Route and Controller Example
- Laravel Eloquent whereRelation() Condition Example
- How to Get Online Users in Laravel?
- How to Add Country List in Laravel?
- Laravel Migration Custom Index Name Example
- How to Create Custom Model Events in Laravel?
- Laravel CRUD with Image Upload Tutorial
- Angular Radar Chart Example Tutorial
- Laravel Livewire Delete Confirmation Example
- How to Generate BarCode in Laravel?
- Laravel Livewire Load More OnScroll Example