android 11 isWXAppInstalled 一直返回false问题


已经安装了微信,isWXAppInstalled还是一直返回false

解决方法:

在Android.manifest.xml 中添加

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.chao.xlyapp">

     
    。。。。
    
    <application>
        。。。.    
    application>

    
    <queries>
        <package android:name="com.tencent.mm" />
    queries>

manifest>

 ios 的话需要检查 是否有  apple-app-site-association 文件 及文件内容的正确性

ios 请参考 https://www.cnblogs.com/rchao/p/11814338.html