cordova-ios | Cordova iOS is an iOS application library | Mobile Application library
kandi X-RAY | cordova-ios Summary
kandi X-RAY | cordova-ios Summary
Cordova iOS is an iOS application library that allows for Cordova-based projects to be built for the iOS Platform. Cordova based applications are, at the core, applications written with web technology: HTML, CSS and JavaScript. Apache Cordova is a project of The Apache Software Foundation (ASF).
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Builds the images for the launch storyboard image .
cordova-ios Key Features
cordova-ios Examples and Code Snippets
Community Discussions
Trending Discussions on cordova-ios
QUESTION
I tried to follow every comment with a possible solution here to the letter. I relied on an example project on github as well which works perfectly.
This also started to happen to me after updating everything manually and when running the nx test command, occurrs this error.
My jest.config.js inside apps/my-app:
...ANSWER
Answered 2022-Jan-13 at 22:47From what I've found online, this seems like a common issue to projects using Jest and upgrading to Angular 13. Our project doesn't use nx
but are the updates to our Jest config:
QUESTION
I'm trying to convert an angular project to ionic, i've initialised and changed the config in angular.json, package.json and ionic.config.json project name matches.
The project name is simply "frontend", but when i now try to use ionic serve i'm getting this:
An unhandled exception occurred: Project does not exist.
I've checked everything i can think of and i don't see why it's not picking the project up, could do with a fresh pair of eyes please. I have listed each config file below, and i can't see any issue!
package.json:
...ANSWER
Answered 2022-Jan-04 at 13:09Normally the ionic serve
command use the app name as app
, so that might be the problem.
Under the hood that command runs ng run app:serve --host=localhost --port=8100
, so you can try to map it into the package.json
as a custom script with your app name.
QUESTION
I'm currently having trouble getting my Ionic 5 along with Angular 9 project to work.
ionic cordova run android
works great
but as soon i run ionic cordova run android --prod
the only thing i get is a blank screen.
Output from chrome dev tools:
...ANSWER
Answered 2021-Nov-28 at 13:49I got everything working after following these steps:
- renamed folders node_modules, www and platforms/android (for backup reasons)
- npm install
- ionic cordova prepare android
- ionic cordova run android --prod
QUESTION
We are running a Cordova App which works perfectly fine except for GET requests on IOS. In this scenario, the session cookies won't be transferred to the server. Usually, we use POST requests for our rest api calls. Exceptions are images which we load via GET requests. Therefore, authorized users won't be recognized as logged-in by the server when loading images.
Everything works perfectly when running the webapp oon the browser on the same device. Also, there are no problems on android. My guess is that because of the different http method, the webview chooses to not use the same cookies. This might be related to the cordova whitelist plugin which is now deprecated.
The cookie is being generated on the server on login.
Cordova/plugin versions:
...ANSWER
Answered 2021-Nov-09 at 21:01There are a few things you need to fix. Both these plugins are now obsolete with cordova-ios
6+
QUESTION
I'm facing an issue with Cordova, Cordova-ios 6.2.0 and Angular 12.0. When I'm building my app with Cordova and launch it in an emulator (or with a device), I'm arriving to a white screen.
I did some research and try some "fix" but nothing worked. Finlly, I've find that it could be because of the balise. So, I tried to play with the tag and modify the href with ., ./, / but nothing worked. I've tried without and it worked, but without routing.
Has someone already had this problem?
...ANSWER
Answered 2021-Oct-02 at 10:23The Angular router needs the app to be hosted on a "proper" HTTP scheme and does not work with file:
URLs. You can check how your app runs, if you open the JavaScript console for your app running on an iOS device with Chrome and typing location.href
. If you see file:
you need to set up a custom scheme.
Please checkout the documentation and this announcement https://cordova.apache.org/announcements/2020/06/01/cordova-ios-release-6.0.0.html
QUESTION
Right after the splash screen fades out, the app is stuck on a blank page leaving this error in the console (ProxyWeb::didFailProvisionalLoadForFrame)
Note that the same app works perfectly on all previous IOS versions. I tried to change the webview plugin version, cordova-ios, and played around with angular build process but no luck.
I suspect that the angular portion of the project does not initialize, cordova itself loads successfully but anything beyond that is just an empty blank screen.
...ANSWER
Answered 2021-Sep-24 at 12:03Problem solved by a colleague, turned out a few providers (DatePipe, Location, Market, InAppBrowser) in app.component.ts
and a router animation were causing the fuss.
QUESTION
We installed a new version of cordova-plugin-inappbrowser and can't build the ios(we didn't try the android yet) version of the quasar application anymore, the error we get:
no such file or directory: '/Plugins/cordova-plugin-inappbrowser/CDVInAppBrowser.m'
Did someone had this issue and how to solve it?
cordova-ios - 6.2.0
cordova-plugin-inappbrowser - 5.0.0
...ANSWER
Answered 2021-Aug-23 at 03:03I install cordova-plugin-inappbrowser
version 4 and it all works, look like apache didn't update all packages at once to be complementary.
QUESTION
When i try "ionic cap sync" there is a error in ios update
Error :
✖ Updating iOS native dependencies with "pod install" (may take several minutes):
✖ update ios:
[error] Error running update: Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "Capacitor":
In Podfile:
Capacitor (from ../../node_modules/@capacitor/ios
)
Specs satisfying the Capacitor (from
../../node_modules/@capacitor/ios)
dependency were found, but they required a higher minimum deployment target.
Podfile :
...ANSWER
Answered 2021-Jun-21 at 21:50One of the plugins you are using (or both) are updated for capacitor 3, which requires iOS 12, but you are still on capacitor 2, which allows iOS 11.
Ideally you should update to capacitor 3, but you can install older versions of the plugins, check their changelogs to see in which version they supported capacitor 3 and install the previous one.
QUESTION
Error:
Pods-Name does not support provisioning profiles. Pods-Name does not support provisioning profiles, but provisioning profile MobileAppProvisioning has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor. (in target 'Pods-Name' from project 'Pods')
- Xcode: 12.4
- Cordova CLI: 10.0.0
- cordova-ios: 6.2.0
I build the ios app using the Ionic Cordova framework and build and deploy using Azure pipelines(CI). so, I have the following tasks in my Azure pipeline:
- npm install
- install cocoapod
- cordova platform add ios
- cordova build ios
- installing apple certificates
- Xcode build - throws the error when ARCHIVE with Above mentioned error
- Copy file to artifacts
- Publish artefacts
I have searched online for this and the solution is to change the Podfile and add the below code:
...ANSWER
Answered 2021-May-21 at 13:05Cordova does not add support for iOS orientation by default, but you can get there by adding build hooks.
To make this working, I followed these steps:
Add the following to your config.xml file:
QUESTION
Some time ago I asked (and solved) for the same question for the iOS version fo my app (Cordova iOS 6.1.1 white splash screen), now I have the same issue for the Android one.
I'm build the apk with an online tool using cordova-cli-10.0.0
The app runs but I see only a white screen instead of my splash screen file.
In my config.xml file I have the following splash screen settings (I skipped other settings here, if needed I can post them):
...ANSWER
Answered 2021-Apr-12 at 15:03Maybe use proper file naming, rename your
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install cordova-ios
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page