Ionic View build app with unsupported plugin - cordova-plugins

I'm trying to use cordova-plugin-file inside a APP in Ionic View, but, according to this list, it isn't supported in Ionic View.
I've 2 questions about it:
There's a way to build it before sending it to Ionic View?
When I put my APP in production via Ionic Pro, will I still have this problem?
Thanks in advance!

Related

Ionic 3 issue while building the IOS Build

I am working on ionic 3 app and i am using one Signal plugin for showing notification. And i have set that if platform is IOS then i show them a page from where user reject to receive notification and accept it.
And when i make the IOS build it will be stuck on the page where user have to select to receive notification or not and in Xcode it shows the error that
Could not signal service com.apple.WebKit.WebContent in ios 11.4.1
And when i search for solution i found something that we have to install two more plugins which are these.
cordova plugin add cordova-plugin-wkwebview-engine
cordova plugin add https://github.com/TheMattRay/cordova-plugin-wkwebviewxhrfix
and this plugin cordova-plugin-wkwebview-engine needs the cordova-ios version 5.1.1
i updated to that but till now am unable to resolve it.
i won’t found any solution from last two to three days.

Razorpay cordova plugin not working for iOS stuck on splash screen

I'm trying to implement Razorpay checkout in my ionic application using Razorpay-cordova. After installing this plugin, ios application gets stuck on its splash screen and then gets close. Although this plugin works perfectly on Android platforms.
I have done following basic steps:
Added razorpay plugin - cordova plugin add com.razorpay.cordova --save
After this I emulate this basic app just in ios simulator - ionic cordova emulate ios
I have embedded swift libraries in Xcode the razorpay.framework.
Then imported the <razorpay-swift.h> in main.m.
Result: The app gets stuck on the splash screen for few secs and then gets close. (Only on IOS. Also tested on IOS device, results in same!).
I don't know what I'm missing here?

Razorpay cordova plugin not working for iOS

I'm trying to implement razorpay checkout in my ionic application using Razorpay-cordova. After installing this plugin, ios application gets stuck on its splash screen and then gets close. Although this plugin works perfectly on Android and browser platforms.
I have done following basic steps:
Started a blank app - ionic start myApp sidemenu
Added an ios platform - ionic cordova platform add ios
Than added razorpay plugin - cordova plugin add com.razorpay.cordova --save
After this I emulate this basic app just in ios simulator - ionic cordova emulate ios
Result: The app gets stuck on the splash screen for few secs and then gets close. (Only on IOS. Also tested on IOS device, results in same!).
I don't know what I'm missing here?
Embed swift libraries in Xcode(Which I forgot). Will work!

Ionic Framework for ios - Development Mode

I am using ionic framework to create an app. Previously I was working on Windows, but now I moved to Mac.
I already register with IOS developer program. Is there is any step by step tutorial available so I can test my app on my different iPhone devices?
Once you build your project with ionic build ios (of course, you first have to add the platform with ionic platform add ios) you will have a project file which you can open up with Xcode on your Mac.
From there you can easily simulate your app on various iOS devices (iPhone, iPad...), just look up a basics of how to use Xcode (here's one official tutorial).
Ionic also provides you with the ionic emulate ios command which starts the iOS emulator with your app without you needing to run Xcode.
edit: Yes, you can use Ionic View for this. In the CLI there is an option to share your development app with someone else by simply doing ionic share someone#email.com

Cordova Build on Android Not Using Code from WWW Folder

I'm using cordova to package up a pre written angular js application by placing the contents of the app into the www folder inside the cordova sturcture and running the following commands:
cordova platform add ios
cordova build ios
cordova emulate ios
The app then loads on the ios emulator, but instead of the app content as I would expect to see, it shows the hello cordova index file. I have done the exact same thing for android and it works perfectly on that and shows the app correctly. Any help with finding out why the default cordova index page is still shown would be great thanks.
Managed to get it working. When I built the code using cordova, I then opened the xcode.proj file in xcode, and that has done something to some of the files, and it was causing the app to crash at the splash screen. This is why I thought it was not using the www/ code as the splash screen is almost identical to the hello cordova default index file.
Using the cordova emulate command line option to run the app without touching xcode allows the app to run correctly.

Resources