We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe7e16 commit 2b871efCopy full SHA for 2b871ef
app/src/main/AndroidManifest.xml
@@ -4,6 +4,7 @@
4
5
<uses-permission android:name="android.permission.INTERNET" />
6
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
7
+ <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
8
9
<application
10
android:name=".general.App"
app/src/main/java/me/ghui/v2er/util/UserUtils.java
@@ -138,7 +138,8 @@ private static void clearWechatProInfo() {
138
public static boolean isGhui() {
139
String currentUser = getUserName();
140
if (Check.isEmpty(currentUser)) return false;
141
- return "ghui".contentEquals(currentUser);
+ return "ghui".contentEquals(currentUser)
142
+ || "ghuiii".contentEquals(currentUser);
143
}
144
145
0 commit comments