01/10/2025 10:53:00
Problem description
Smartphones have installed QQ and WeChat clients
QQ's authorized login cannot launch the QQ client but can launch the QQ download page WeChat's authorized login can return "WeChat is not installed"
Judge whether App is installed through the
IsAppInstalled
interface, and return "Not installed"
Cause of the problem
The error is caused by the new feature of Android 11 (package visibility), This problem occurs when targetVersion = 30
Solution
Reduce targetVersion to 29 and below
If you must upgrade it to 30, the game can follow Google's instructions to handle this by itself Android developer documentation: https://developer.android.com/about/versions/11/privacy/package-visibility?hl=zh-cn
Under the
<queries>
<package android:name="com.tencent.mobileqq" />
<package android:name="com.tencent.mm" />
</queries>
All rights reserved.