On Apr 2, 2013, at 1:56 PM, Jeremy A. Kolb - ARA/NED <[email protected]> wrote: > I guess my question is: what’s the best way to achieve my goal and what > exactly does “Minimum Android to target option” do?
You're using Visual Studio, correct? Visual Studio doesn't have any way to set the android:minSdkVersion attribute; the "Minimum Android to target" option controls the android:targetSdkVersion attribute and $(TargetFrameworkVersion), the version of Mono.Android.dll that your code is compiled against. You should set the Minimum Android to target option to the API level with the APIs you want to use, and add your <uses-sdk/> fragment to AndroidManifest.xml so that you override the default android:minSdkVersion attribute. - Jon _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
