Conversation

It returns true when the app is being operated by a "monkey" script that clicks buttons at random This is a common QA term but what's odd, if you think about it is on Android it returns the opposite of truth Literally speaking it's only true when a monkey is *not* using the app
3
60
. suggested they could disambiguate with separate "isUserAMonkey()" and "isUserAnApe()" functions Possibly implement one in terms of the other bool isUserAMonkey() { return !isUserAnApe(); }
3
29
Show replies