Android examples for Phone:Phone Information
get System Version
//package com.java2s; import android.content.Context; public class Main { public static int getSystemVersion(Context context) { int currentapiVersion = android.os.Build.VERSION.SDK_INT; return currentapiVersion; }// w w w . j a v a 2 s .c om }