is Flyme Os - Android android.system

Android examples for android.system:Os Version

Description

is Flyme Os

Demo Code

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;
    }
  }

}

Related Tutorials