Huawei mobile phone raised WeChat sharing (picture) but did not respond

I want to write an article, but I have nothing to write. So I thought that I had encountered this problem before, and recorded it, maybe someone will encounter it. . . .

Cause Analysis:

Does the image use partition storage? The mobile phone is Huawei? The system is Hongmeng? Hongmeng 2.0 is equivalent to Android 11. So is there any adaptation for "package visibility"?

In the manifest file add

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <queries>
        <!--微信-->
        <package android:name="com.tencent.mm" />
    </queries>
</manifest>

it's ok

(In fact, not only Hongmeng, but also to adapt to Android11)

Guess you like

Origin blog.csdn.net/qq_36162336/article/details/130411300