Tag Archives: Xamarin Forms
error APT0000: 1: error: Error: No resource found that matches the given name: attr ‘android:keyboardNavigationCluster’.
After upgrading my Xamarin Forms Android SDK from 25 to 26 (Android 8.0 Oreo) I got the following error message: error APT0000: 1: error: Error: No resource found that matches the given name: attr ‘android:keyboardNavigationCluster’.
Using iOS App ID .mobileprovision in Xamarin Forms iOS Project
If you are working on an iOS project in Xamarin Forms you will also need to register your app in Apples developer section to get a provisioning profile. This has to be done in the “Certificates, Identifiers & Profiles” part, not in iTunes Connect.
Native Facebook Login for Xamarin Forms Android projects
Previously I’ve shown how to add native Facebook Login in Xamarin Forms iOS App, so now it’s time to do the same also for the Android project in your Xamarin Forms Application. James Montemagno posted article “Native Android Facebook Authentication with Azure App Service” just 3 weeks ago but as he uses Azure App Services […]
How to get facebook friendlist in Xamarin Forms iOS using native facebook login
In previous post I’ve shown how to login to Facebook using Facebooks native SDK using client side authentication. So now we know the user, what else can we get? Here is a guide how to get the friendlist of the logged-in user. Why the friendlist? Because next to public profile and email, friendlist is one […]
Native Facebook Login in Xamarin Forms iOS App
Many apps need some kind of user authentication. Instead of having users to register on your site, it’s more convenient to use existing Logins. Many social networks like Facebook, Twitter and Google offer to use their login data to authenticate users in your application. You have 2 different options of authentication: Server side or client […]
Error MSB6006: “sgen.exe” exited with code 1. (MSB6006)
In one of my Xamarin Forms (using Visual Studio for Mac) project I’ve found the following error message when I try to deploy it on my iPhone for testing: Error MSB6006: “sgen.exe” exited with code 1. (MSB6006) Even though the Build output contains some more data, I did not find any clue how to fix […]
Store Lists in Xamarin Forms Settings Plugin
When storing settings in Xamarin Forms you are probably aware of SettingsPlugin provided by James Montemagno. If not, have a look at it! The plugin only supports simple data types like int, string, bool etc. but not lists. So if you want to store lists with the SettingsPlugin in your Xamarin Forms app you need […]
Setup Xamarin Forms for iOS Push Notifications
After setting up Android Push Notifications it’s time to add push notifications also for iOS Xamarin Forms Apps. Apples iOS simulators do not support Push Notifications so we need real hardward for testing. And an Apple Developer Account of course.