iOS Xcode Quick Fix - Clear Cache This article has some way to clean/reset Xcode data/settings, which may lead to fixing your Xcode crashes, unwanted project errors, etc. The following steps are master reset for your Xcode, follow these steps in sequence, and after each step check whether the problem is solved or not. 1....
iOS Best way to manage Development, Testing and Production iOS builds with different settings Problem Statement Suppose you need to manage three API with different API Keys and some different settings * For development or internal testing build - Development distribution outside the iOS App Store Host - devapi.project-name.com API Key - development_key * For client testing build - Enterprise distribution outside the...
Wiki HTTP vs WebSocket (or HTTP 2.0), Which one is right for you. This article is all about when to use a HTTP instead of a WebSocket (or HTTP 2.0) or vise-versa. When HTTP is better than WebSocket When evaluating whether HTTP is the better choice, you may find it helpful to think in terms of scenarios. And when it comes to...
Wiki Difference between HTTP and WebSocket (HTTP 2.0 ) Visual comparison between HTTP and WebSocket, check out this TL;DR chart -------------------------------------------------------------------------------- * WebSocket is a protocol providing full-duplex communication channels over a single TCP connection. Where as, HTTP providing half-duplex communication. * Information exchange mode of WebSocket is bidirectional. Means, server can push information to the client (which does not...
Windows Complete guide about Windows Store Analytics API with Sample Code Dev Center released the Windows Store analytics API, which provides analytics information for your Windows Store apps without requiring logging into Dev Center. Using a REST API you can retrieve the same information you see in Dev Center for app and in-app purchase acquisitions, ratings and reviews, as well as...
iOS Cocoapods remove duplicate symbols for architecture i386 error When we used two or more 3rd party library in our project using Cocoapods then there are possibility of duplicate symbols used by different libraries. In my case, I just added some pod and after nothing works anymore. I get more than 482 duplicate symbols for architecture i386 errors, like...
iOS Handle query parameters in Universal Links In this article I'll show how to handle query parameters in Universal Links. Currently #(inline-links) and ?(query-parmeter) not supported by Universal Links . Apple not provided any format to support Inline-Links & Query-Parmeter in apple-app-site-association file. In order to do indexing to www.mywebsite.com?parameter=something, I'...
iOS Can we enable Universal Links and URI Scheme in same application This post contains the answer of question, Is it possible to enable URI Scheme and Universal Links in the same app so that if an app is installed on an iPhone running iOS 7+ and on an iPhone running iOS 9+ the URL scheme and Universal Links will forward the...
iOS Enable Universal Links in iOS App and setup server for it Support Universal Links When you support universal links, iOS 9 users can tap a link to your website and get seamlessly redirected to your installed app without going through Safari. If your app isn’t installed, tapping a link to your website opens your website in Safari. Here, how to...
Windows Prevent the screen from locking on UWP This post contains answer to the question, How to prevent the screen from locking on Windows Universal Platform. Simple Answer DisplayRequest [https://msdn.microsoft.com/en-us/library/windows/apps/windows.system.display.displayrequest.aspx] class var displayRequest = new DisplayRequest(); displayRequest.RequestActive(); //to request keep display on displayRequest.RequestRelease(); //to release...