get Platform Version - Android android.os

Android examples for android.os:Build

Description

get Platform Version

Demo Code

import android.os.Build;

public class Main{

    public static String getPlatformVersion() {
        return Build.VERSION.RELEASE;
    }/*from   w  w  w.  j  av  a 2  s.  com*/

}

Related Tutorials