ItSolutionStuff.com

How to Change App Version Code in Ionic Framework?

By Hardik Savani • November 5, 2023
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

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Python Get Month Name from Number Example

Read Now →

Angular Webcam Capture Image from Camera Example

Read Now →

Laravel 9 Resource Route and Controller Example

Read Now →

Laravel Eloquent whereRelation() Condition Example

Read Now →

How to Get Online Users in Laravel?

Read Now →

How to Add Country List in Laravel?

Read Now →

Laravel Migration Custom Index Name Example

Read Now →

How to Create Custom Model Events in Laravel?

Read Now →

Laravel CRUD with Image Upload Tutorial

Read Now →

Angular Radar Chart Example Tutorial

Read Now →

Laravel Livewire Delete Confirmation Example

Read Now →

How to Generate BarCode in Laravel?

Read Now →

Laravel Livewire Load More OnScroll Example

Read Now →