xamarin - Lower android version support of mvvmcross -


i'm new mvvmcross. read introduction video , preparing project. https://www.youtube.com/watch?v=nihmk6r9r4s

my question is, @ video, mvvmcross (current version 4.1.6) supports android version 5. planned support minimal android version 4.3. so, configure should make mvvmcross support android version lower 5?

ideally want set android:minsdkversion lowest api level want support. set android:targetsdkversion platform intend target. set target framework highest level of apis application needs. typically recommend checking out android dashboard see percentages of market:

https://developer.android.com/about/dashboards/index.html

these values can expressed here:

<uses-sdk android:minsdkversion="integer"           android:targetsdkversion="integer"           android:maxsdkversion="integer" /> 

https://developer.android.com/guide/topics/manifest/uses-sdk-element.html

there docs on xamarin.android specifics here:

https://developer.xamarin.com/guides/android/application_fundamentals/understanding_android_api_levels/

misc: http://redth.codes/such-android-api-levels-much-confuse-wow/


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -