App打开小程序后,小程序点击button无法返回App
App唤起小程序后,在小程序点击launchApp button无法返回App;点击打开App按钮完全没有反应,也没有报错信息;安卓App端接入了最新的微信SDK,也处理了ShowMessageFromWX.req
的微信回调 ;求官方给解决办法?
确定通过App唤起的小程序的场景值为1069
微信版本:6.6.7
小程序代码:
<button open-type="launchApp" app-parameter="wechat" binderror="launchAppError">打开APP</button>
10 回复
同样遇到 从小程序无法返回到app的问题,已经排查了2天
从app打开小程序:从app直接打开小程序,用WXLaunchMiniProgram,是可以成功跳转到小程序
–
从小程序返回app的时候,一直没有调用到WXEntryActivity,试过各种方法
AndroidManifest.xml按照文档设置,如下:
<activity
android:name=".wxapi.WXEntryActivity"
android:label="小程序"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true"
android:taskAffinity="com.fxtech.coon"
android:launchMode="singleTask"
android:configChanges="keyboardHidden|orientation|screenSize"
>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="sdksample"/>
</intent-filter>
</activity>
其中intent-filter是后面加的,也无效
WXEntryActivity根本就没有被触发过,onCreate方法也没有进入
万能的微信,有能帮忙解决这个问题的?