get OS Release - Android Android OS

Android examples for Android OS:OS Build

Description

get OS Release

Demo Code


//package com.java2s;

public class Main {

    public static String getOSRelease() {
        return android.os.Build.VERSION.RELEASE;
    }//from  w  w  w  . j  a  va2s  .  c om
}

Related Tutorials