I got an issue in iOS 9 when i lock and unlock the phone.
** -[UIApplication _handleNonLaunchSpecificActions:forScene:withTransitionContext:completion:] ** unhandled action -> <FBSSceneSnapshotAction: 0x160aa36f0> {
handler = remote;
info = <BSSettings: 0x160aa3830> {
(1) = 5;
};
}
Any...
Sunday, September 27, 2015
September 27, 2015
_handleNonLaunchSpecificActions error in IOS9
Saturday, September 26, 2015
September 26, 2015
ERROR: Plugin 'Device' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
September 26, 2015
Plugin 'Keyboard' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml.
Thursday, September 17, 2015
September 17, 2015
Upgraded iPhone version from iOS 8 to iOS 9, got this issue in iOS 9
By Entrepreneur & Financial Planning
App Transport Security, NSAllowsArbitraryLoads, NSAppTransportSecurity, Temporary exceptions can be configured via your app's Info.plist file

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)2015-09-18 13:27:04.058 [585:147628] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)2015-09-18 13:27:04.323 [585:147628]...
Tuesday, September 8, 2015
September 08, 2015
Message from debugger: failed to send the k packet
Monday, September 7, 2015
September 07, 2015
TypeError: Cannot read property 'DEFAULT_PORT' of undefined
TypeError: Cannot read property 'DEFAULT_PORT' of undefined
This issue is due to running with Default port instead of '27017'.
Change from
module.exports = new Db(settings.db, new Server(settings.host, Connection.DEFAULT_PORT), {safe: true});
To
module.exports = new Db(settings.db, new Server(settings.host, '27017'), {safe: true});
...
September 07, 2015