Windows 7, Linux, Mac, JavaScript, jQuery, ExtJs, Angular, .NET, Java, Android, iOS, php, mysql, lucene and more...
Showing posts with label iOS. Show all posts
Showing posts with label iOS. Show all posts
Monday, July 15, 2019
Cordova InAppBrowser EventListeners not working on iOS
Hi All
I'm using cordova-inappbrowser plugin for several purposes inside a cordova app. This plugin worked without a problem for months.
Then I noticed its not firing loadstop event when the navigation completed. After 3-4 hours of hit and misses found the perfect solution.
Problem was my iOS platform wasn't latest.
So when you developing apps using cordova make sure your platform versions and plugins are up-to date with OS upgraded.
So all I had to do is
Removing iOS platform.
cordova platform rm ios
Adding iOS platform - Latest Version
cordova platform add ios
Removing the plugin cordova-plugin-inappbrowser
cordova plugin remove cordova-plugin-inappbrowser
Adding the plugin cordova-plugin-inappbrowser - Latest Version
cordova plugin add cordova-plugin-inappbrowser
Monday, July 16, 2018
iTunes connect UI freezes.
When you publishing apps for apple store using itunes connect screens are freezing more often. Main reason behind for this is poor internet connection. Make sure you have a good internet connection when you publishing apps to apple store.
I'm always using my mobile's hotspot if the wi-fi or LAN is super slow.
Sunday, November 5, 2017
Apache cordova scroll bar lagging on Android and iOS devices
When its come to developing hybrid mobile applications, Apache Cordova is amazing free development tool which is supported by most popular IDE's like Microsoft Visual Studio. For more details about the Microsoft Visual Studio tools for apache cordova please follow the link bellow.
https://www.visualstudio.com/vs/cordova/
In this article I assume that the reader is a cordova developer, and I'm not going to teach you the basics for that there are millions of articles you can find in web.
So if you are using jQuery, jQuery UI and row java scripts with apache cordova it's still ok if you developing some demo project or a pretty simple app.
But for a commercial level project you must use Angular JS or higher angular version ( IONIC Framework - Extended version of cordova ) to get better user experience.
I have no offence towards to jQuery and jQuery UI as they are still great tools. But when it's come to hybrid application development Angular perform lot better than jQuery or jQuery UI.
Tuesday, June 13, 2017
SMS sending from old number even after transferring the number - iphone 6 ( Australia )
I came across this problem after I changed my mobile provider. Transfer of number was successful and I was able to call from my old number. But the problem was after I send a SMS its actually showed my new peremptory number to the recipient. So I ended up with so many 'Who is this' messages.
So lets fix this for iPhone 6 ( iOS 10.3.2 ) .
1. Turn of iMesseges.
- Settings > Messages > Switch off iMessges
- Settings > Facetime > Switch off Facetime
3. Reset network settings of your iphone. After this your iphone will be restarted.
4. After you restarted the iphone switch on facetime and imessage,
Subscribe to:
Posts (Atom)
-
Recently I purchased nord-vpn for testing. But I could not use their service due to a technical reason. So I wanted to cancel and get my mo...
-
Hi All I couldn't debug my C# class library project due to this issue for last few month. So this is the fix. 1. Right mouse click on...
-
Lucene - Previous 1. Add Lucene.net to your application. Copy Lucene.Net project to your solution folder or copy Lucene.Net.dll to your ...