Skip to main content

Posts

Showing posts from January, 2017

Ionic2/Cordova - Android splash screen and icon is not working

an attractive icon and splash screen are always important for your mobile application. after all they are the first thing anyone will look into. But this has been always a great headache for the developers. Since they need to support multiple platforms and devices with different screen sizes. Each platform and device requires different size of icons and splash screen. We are lucky that Ionic team has taken care of this for us. We can read about all this from there documentation. Ionic Icon and Splash Screen Image Generation After the release of Cordova 6.0, icon and splash screen is not updating for android platform and it is showing default icon and splash screen. Actually there was an issue in Cordova 6.0 version, which is now fixed in latest Cordova android version.  Since Ionic2 is still referring to the old Cordova 6 version, this issue is occurring for all the new applications that are being created. There is a solution for the same which we will look here...

Ionic 2 - How to update existing Ionic2 Project version

Since the Ionic Team has launched the Ionic2, there has been great buzz about the same. All the mobile developer's are trying there hand on Ionic2.  With Each upgrade few new features and bug fixing were introduced. Now Finally Ionic Team has launched the Ionic2 Release Version . That's a great news, isn't it? But Now we all have one problem with us. How to update our existing Ionic2 Project's? We are going to look into the solution for the same. Update Ionic CLI Insert the command npm install -g ionic in command prompt and Enter Update Ionic Project Dependencies Open  package.json within your project folder and update the  dependencies as shown  "dependencies": { "@angular/common": "2.2.1", "@angular/compiler": "2.2.1", "@angular/compiler-cli": "2.2.1", "@angular/core": "2.2.1", "@angular/forms": "2.2.1", "@a...