Ionic You need to use a different package name because “io.ionic.starter” already exists in Google Play

If you are using Ionic + Android Studio to publish an app and run into this error on upload, “You need to use a different package name because “io.ionic.starter” already exists in Google Play”, do this. Check build.gradle (Module:android.app) file in Gradle Scripts Change the applicationId to a unique ID. The nomenclature is typically “appname.yoursite.com” … Read more

Best Learning Resource for Ionic Vue

The Ionic framework team launched a Vue version recently and I have been testing it out. I made a prototype application and it was quite challenging to get started. The problem is that the documentation is written from the perspective of an Ionic developer instead of a Vue developer learning Ionic. Moreover, some of the … Read more

Using Capacitor Core Plugin within Vue

The documentation from Ionic and Capacitor doesn’t make it clear how to instantiate the Plugin import within Vue. Most of the documentation is either React or Angular. So it looks like you have to create an async method to call the plugin’s method and return the desired info.