You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like another way might be to check System.getProperty("java.vendor") for "The Android Project", then System.getProperty("os.name") for the remaining platforms?
The text was updated successfully, but these errors were encountered:
Noticed this issue while browsing through Mat.scala, notably, on in the getOS function:
According to http://developer.android.com/reference/java/lang/System.html#getProperty(java.lang.String),
System.getProperty("os.name")
always returns"Linux"
on Android.Seems like another way might be to check
System.getProperty("java.vendor")
for"The Android Project"
, thenSystem.getProperty("os.name")
for the remaining platforms?The text was updated successfully, but these errors were encountered: