Android examples for android.system:Os Version
is Flyme Os
import android.os.Build; public class Main { public static boolean isFlymeOs() { try {//from w w w . j ava2 s .c o m return Build.FINGERPRINT.toLowerCase().contains("flyme"); } catch (Exception e) { e.printStackTrace(); return false; } } }