Error: resource fork, Finder information, or similar detritus not allowed in Xamarin iOS app

Just a quick write up for the error message in the title. I wanted to run my app on a physical device, but couldn’t, while on the Simulator it went fine. I Googled the error message and quickly came across a number of solutions. At first, I thought it might have to do with the … Read more

Embedding native controls in your Xamarin.Forms app

Embedding native controls in your Xamarin.Forms app header

As of version 2.3.3 and above of Xamarin.Forms it is now possible to embed native controls in your Forms app. I’ll let that sink in for a minute. Native controls, defined in XAML, from your PCL, without the need for any renderers whatsoever. Isn’t that just awesome?! Whoa! Native controls? In XAML? Awesome right?! But … Read more

Be ahead! Test your apps with the latest iOS (beta) version

After installing the latest Xamarin.iOS beta build I got an error message while building. ‘This version of Xamarin.iOS requires the iOS 10.0 SDK (shipped with Xcode 8.0) when the managed linker is disabled. Either upgrade Xcode, or enable the managed linker.’ That’s pretty self-explanatory, right? So if you want to go quick and dirty just … Read more

Push notifications with Xamarin – iOS

iOS Push notifications

As promised in my previous post I will continue this series with implementing the app code, in this case iOS. Fortunately, this is the hardest one so it only gets easier from here! Be prepared… Before we do anything there is a little preparation we need to do. On the server side a little Azure magic … Read more

Using custom fonts on iOS and Android with Xamarin.Forms

Edit March 14th, 2018: By the request of one of my followers on Twitter I have set up a sample repository here: https://github.com/jfversluis/CustomFontsSample. Please note that the code is different from below and I did a new blogpost with the latest bits, because some things have changed (for the better!). Seeming that this post is still … Read more

Sleeping Beauty – Making your iOS app sleeping beautifully

Sleeping Beauty

Sometimes you will find yourself creating an app which contains sensitive user information. I found myself there. Of course, you want to protect it the best you can. So you encrypt it, double salt it, encrypt it again, put it in a fortified building, set it up with Touch ID. Yet a small forgotten detail could … Read more