Posts

Showing posts with the label OS

Android 4.2 APIs

Android 4.2 APIs API Level: 17 Android 4.2 ( JELLY_BEAN_MR1 ) is an update to the Jelly Bean release that offers new features for users and app developers. This document provides an introduction to the most notable and useful new APIs for developers. As an app developer, you should download the Android 4.2 system image and SDK platform from the  SDK Manager  as soon as possible. If you don’t have a device running Android 4.2 on which to test your app, use the Android 4.2 system image to test your app on the  Android emulator . Then build your apps against the Android 4.2 platform to begin using the latest APIs. Declare your app API Level To better optimize your app for devices running Android 4.2, you should set your  targetSdkVersion  to  "17" , install it on an Android 4.2 system image, test it, then publish an update with this change. You can use APIs in Android 4.2 while also supporting older versions by adding conditions to your code...