We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95c942e + e4ab16a commit 466bd63Copy full SHA for 466bd63
2 files changed
api/current.txt
@@ -16593,6 +16593,7 @@ package android.os {
16593
16594
public class UserManager {
16595
method public java.lang.String getUserName();
16596
+ method public boolean isUserAGoat();
16597
}
16598
16599
public abstract class Vibrator {
core/java/android/os/UserManager.java
@@ -72,6 +72,15 @@ public String getUserName() {
72
73
74
75
+ /**
76
+ * Used to determine whether the user making this call is subject to
77
+ * teleportations.
78
+ * @return whether the user making this call is a goat
79
+ */
80
+ public boolean isUserAGoat() {
81
+ return false;
82
+ }
83
+
84
/**
85
* Returns the UserInfo object describing a specific user.
86
* Requires {@link android.Manifest.permission#MANAGE_USERS} permission.
0 commit comments