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...
Tech UWP porting guidance for Android and iOS developers Microsoft introduce a new app development concept map for app developers that aligns software development concepts across the iOS, Android, and Windows platforms. App developers new to Windows 10, who are already familiar with Android or iOS, will be able to use this reference to quickly orient themselves on building...
Tech Watch Quantum Break’s New Cinematic Trailer The beautifully cinematic Quantum Break [http://www.xbox.com/en-US/games/quantum-break] is coming to Windows 10 and Xbox One on April 5 – and for now, we’ve got a brand-new trailer to show off for Remedy Entertainment’s tense, star-studded action-thriller. Quantum Break is a unique, pulse-pounding cinematic gaming...
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...
Windows Check internet connectivity in UWP In this article you will learn, how to check Internet connection availability, Internet connection availability via WWLA(WiFi) or WWAN (Mobile), check whether device connected to a metered network or not and sense the significant network availability changes. 1. Check Internet Connection Availability To check whether internet connected or not...
Windows Change title bar and status bar color on WUP In this article I'll show how to how to change status bar color on WUP (Mobile + PC). In order to do that in mobile, add the refernce of Microsoft Mobile Extension SDK for Universal App Platform in your project. You can find it under Reference Manager ->...
Windows Handle back button pressed in UWP This article is all about handling back button pressed in Universal Windows Platform (PC + Mobile). We will use the SystemNavigationManager [https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.core.systemnavigationmanager] of Windows.UI.Core namespace in order to handle. Handle back button for single page -------------------------------------------------------------------------------- If you...