Unable to install 0.8.5 for ios
See original GitHub issueWARNING: IF YOU IGNORE THIS TEMPLATE, WE’LL IGNORE YOUR ISSUE. YOU MUST FILL THIS IN!
Provide a general summary of the issue.
Your Environment
- Plugin version:0.8.5
- Platform:mac
- OS version:10.12
- Device manufacturer / model:Apple
- Cordova version (
cordova -v
):7.0.1 - Cordova platform version (
cordova platform ls
):ios 4.4.0 - Plugin config cordova-plugin-device 1.1.6
- Ionic Version (if using Ionic)
Expected Behavior
Tell us what should happen exec install cordova plugin install ./cordova-plugin-local-notifications-0.8.5 (which download from your release) or cordova plugin add git+https://github.com/katzer/cordova-plugin-local-notifications.git#ios10
Actual Behavior
Tell us what happens instead
Steps to Reproduce
Reproduce this issue; include code to reproduce, if relevant
- …
- …
- …
- …
Context
What were you trying to do?
Debug logs
Include iOS / Android logs
- ios XCode logs
- Android: $ adb logcat
Issue Analytics
- State:
- Created 6 years ago
- Comments:16
Top Results From Across the Web
If your iPhone or iPad won't update - Apple Support
If you still can't install the latest version of iOS or iPadOS, try downloading the update again: ... If you don't see the...
Read more >Fix “Unable to Install Update” Error for iOS & iPadOS - OSXDaily
Some iPhone and iPad devices can occasionally get stuck with this error message for no apparent reason, but sometimes simply deleting the update ......
Read more >npx pod-install fails and throws very weird and long error
1 Answer 1 · Run sudo xcode-select --switch /Applications/Xcode.app · restart terminal and do cd ios && pod install.
Read more >EAS Build Failing (iOS during 'install pods' stage) - Expo Forums
Hello, I am trying to build by application for the first time using EAS Build and it is failing on me. I am...
Read more >image_picker | Flutter Package - Pub.dev
Flutter plugin for selecting images from the Android and iOS image library, ... it becomes impossible to pick HEIC images on the iOS...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Got cordova 7 running this smoothly now from the official repository.
In Ionic v1 we made a fresh install by copying all files to a new directory to perform a cleanup. Then:
config.xml
, remove all cordova references frompackage.json
rm -Rf plugins/
rm -Rf node_modules/
rm -Rf platforms/
cordova plugin add cordova-my-plugin
npm install
note: Node >= 6 works with ionic / cordova 7, but npm 5 will cause horrorscordova platform add ios
.My configuration being:
I was able to install the plugin manually. This is an Ionic v1 project so your config may differ.
Then in
project/config.xml
add this:More tips here: https://github.com/katzer/cordova-plugin-local-notifications/wiki/03.-Installation