List of utility methods to do Device Version Check
boolean | hasHoneycomb() Checks the current building sdk is honeycomb or not. return Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB;
|
int | GetSdkLevel() Get Sdk Level return Build.VERSION.SDK_INT;
|
String | getDeviceId(Activity act) get Device Id String id = Secure.getString(act.getContentResolver(),
Secure.ANDROID_ID);
return id;
|