Skip to content

Instantly share code, notes, and snippets.

@Muyangmin
Created July 6, 2016 09:09
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Muyangmin/e8ec1002c930d8df3df46b306d03315d to your computer and use it in GitHub Desktop.
Save Muyangmin/e8ec1002c930d8df3df46b306d03315d to your computer and use it in GitHub Desktop.
detect android device info, MIUI version, etc.
public static boolean isMiUi() {
return !TextUtils.isEmpty(getSystemProperty("ro.miui.ui.version.name"));
}
public static String getSystemProperty(String propName) {
String line;
BufferedReader input = null;
try {
java.lang.Process p = Runtime.getRuntime().exec("getprop " + propName);
input = new BufferedReader(new InputStreamReader(p.getInputStream()), 1024);
line = input.readLine();
input.close();
} catch (IOException ex) {
return null;
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return line;
}
@AswinpAshok
Copy link

Thanks, man

@biji
Copy link

biji commented Aug 4, 2018

cool

@OlivierFreyssinet
Copy link

Thank you!

@Arohap
Copy link

Arohap commented Jan 7, 2022

Thank you <3

@AdverseGecko3
Copy link

Thanks man!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment