New: Added simple GPS sample showing how to query the current location.
This sample shows the use of the GPS based location service. Read more.New: Added support for specifying the target SDK version.
[do not use property TargetSdkVersion of PackageAttribute - this property will be replaced by a Project property in the next update]The minimum Android version supported by your application is determined by the "Android version" specified in your dot42 project (see project properties - Android tab).
We have added a new property called TargetSdkVersion to the Package attribute. With this property you can specify the target SDK version of your application. This the maximum Android version for which forward-compatibility will be enabled. This property is typically used to enable the Android Holo theme when your app runs on a modern device. The app will still run on the minimum Android version.
This property corresponds to the android:targetSdkVersion attribute of the uses-sdk element in the Android manifest file.
You can use this property as follows:
[assembly: Package(TargetSdkVersion = "v4.0.3")]
No comments:
Post a Comment