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:
misc: http://redth.codes/such-android-api-levels-much-confuse-wow/
Comments
Post a Comment