The Dag
The Dag

Reputation: 1841

Older OS versions and Xamarin.Forms

I'm a noob with Xamarin.Forms, but trying to get going with it. My first project involves updating and unifying some existing apps. The iOS version of the app targets iOS 6.0, and the Android version requires 2.3.3 or newer.

What are the oldest versions of iOS and Android respectively that I will be able to target if I want to use Xamarin.Forms and achieve a common UI implementation?

Upvotes: 2

Views: 521

Answers (1)

Prashant Cholachagudda
Prashant Cholachagudda

Reputation: 13092

You need to target iOS 6.1 and Android 4.0.3 (API Level 15) or higher to use Xamarin.Forms

You can find the requirements here: https://developer.xamarin.com/guides/xamarin-forms/getting-started/installation/#Target_Platforms

Upvotes: 1

Related Questions