Adjust Header Height

In my plugins folder I only got:

  • com.ionic.keyboard
  • org.apache.cordova.console
  • org.apache.cordova.device
  • org.apache.cordova.network-information (which can’t manage to make it
    work)
  • org.apache.cordova.statusbar

I updated ionic today to beta 10!

Had this issue in the begging and to solve it I restarted from a blank project and copy-pasted everything. But I can’t do that at this point since it’s a big project.

Hmm, you may want to try debugging with safari for to see if any errors are coming up.

http://moduscreate.com/enable-remote-web-inspector-in-ios-6/

I check the console on xcode and i’m getting the following errors:

2014-07-28 16:14:40.444 HelloCordova[20796:60b] CDVPlugin class CDVDevice (pluginName: Device) does not exist.
2014-07-28 16:14:40.445 HelloCordova[20796:60b] ERROR: Plugin 'Device' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.

Hope this helps!

Ah awesome, so basically your device plugin isn’t copying over, which is bad.

So try to remove the plugin and then re-add it back in

Can you give me a bit more information on how to do this?

yeah sure,

from that directory, use these commands.

$ cordova plugin rm org.apache.cordova.device

Then run

$ cordova plugin add org.apache.cordova.device

Yess! You were right! That fixed it! Thank you very much!!

By the way, now i’m getting this error

CDVPlugin class IonicKeyboard (pluginName: Keyboard) does not exist.
2014-07-29 10:10:51.214 HelloCordova[3990:60b] ERROR: Plugin ‘Keyboard’ not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.

How can i re-install the keyboard plugin?

$ cordova plugin rm com.ionic.keyboard
$ cordova plugin addhttps://github.com/driftyco/ionic-plugins-keyboard.git

Awesome! Thank you! (If you can have a look at a topic I opened yesterday… thanks!)

For others getting this error, the solution described here: xcode - iOS unable to find plugins, Android fine - Stack Overflow worked for me:

In XCode, goto Build Phases → open the Compiled Sources dropdown. Click + and add the missing plugin .m file that should be in your Plugins directory (but is missing from the compiled sources).

Don’t forget to add --save at the end of the command to persist it