ionic-framework
Ionic – Remove Disable spinner on splash screen [closed]
If it is a SplashScreenSpinner: In the config.xml file: <preference name=”ShowSplashScreenSpinner” value=”false”/> Official Docs
how to pick the ios emulator from cordova / ionic command line
With later versions of Ionic and Cordova one can use any of the following commands to list available emulations. The following commands have been tested with Ionic v3.20.0 and Cordova 8.0.0: ionic cordova emulate –list # List any OS cordova run –list # List any OS cordova run ios –list # List specific OS And … Read more
Ionic 3 Component vs Page
Based on the conversation from the comments: It may be the same from the Angular point of view, but Pages and Components have a different meaning in Ionic. In terms of Angular, both are just components, but in the context of Ionic, a Page is a component that will act as an entire view (it … Read more
How to rename Ionic app from HelloCordova
Edit: You want to change the config.xml file in your project’s root directory. The tag which is responsible for the app name is <name>. look up the config documentation for more.
Authentication in Ionic/Cordova App
nathvarun gave a very complete answer, but I’d like to share the steps I do for authentication in my app. Send email + password via ajax to the server Generate a token in the server and send it back to the app Store email + token in localStorage For every single request I make to … Read more
Xcode couldn’t find any provisioning profiles matching
Try to check Signing settings in Build settings for your project and target. Be sure that code signing identity section has correct identities for Debug and Release.
Ionic build Android error when downloading Gradle
I am using Ionic version 1.7.14 and the distributionUrl found in the following file. myApp/platforms/android/cordova/lib/builders/GradleBuilder.js. I had to point the locally downloaded gradle as specified in this answer. I had the same problem. I added gradle to my project offline. After downloading gradle from issued link (here is http://services.gradle.org/distributions/gradle-2.2.1-all.zip) paste it in somewhere likes myApp\platforms\android\gradle\gradle-2.2.1-all.zip … Read more
Multiple dex files define Lorg/apache/cordova/BuildHelper
Most likely you are using the newly released cordova-android@6.3.0, which now includes BuildHelper.java (as noted in your error message) and PermissionHelper.java, but you still have the deprecated cordova-plugin-compat in your project which is causing the build to fail because it also contains these classes. To fix this, remove cordova-plugin-compat from your project to uninstall these … Read more
How to wordwrap a long string in ion-item
For ionic 1: Add item-text-wrap class to item. <ion-item class=”item-text-wrap”> some long string </ion-item> For ionic 2: Add text-wrap attribute to item. <ion-item text-wrap> some long string </ion-item>