小程序
小游戏
企业微信
微信支付
扫描小程序码分享
各种关联配置都配置好了,ios 能唤起,安卓无法唤起,但是安卓可以接收到微信的回调
手机型号oppo reno 安卓版本 Android10 微信号Wxid_o1acw28q082922 时间 2020.10.16 15:22 已从手机端上传错误日志,测试链接https://dev-share.xn--vuq861by66a.com/pages/ShopActivity/couponList
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/APP_GET_EXTINF.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我已经解决这个问题
一 必须有 WXEntryActivity 这个界面 文件目录必须是 包名+wxapi.WXEntryActivity: <activity android:name=".wxapi.WXEntryActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="true" android:taskAffinity="填写你的包名" android:launchMode="singleTask"> </activity> 二:WXEntryActivity界面实现 IWXAPIEventHandler 接口,微信发送的请求将回调到 onReq 方法,发送到微信请求的响应结果将回调到 onResp 方法 三:初始化IWXAPI api.handleIntent(getIntent(), this); 四:在onReq()中做跳转 @Override public void onReq(BaseReq arg0) { Log.i("ansen", "WXEntryActivity onReq:" + arg0); startActivity(new Intent(WXEntryActivity.this, SplashActivity.class)); finish(); }
具体看官方文档:https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Access_Guide/Android.html
解决了没有?
安卓是按照文档配置的
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/APP_GET_EXTINF.html
我已经解决这个问题
一 必须有 WXEntryActivity 这个界面 文件目录必须是 包名+wxapi.WXEntryActivity: <activity android:name=".wxapi.WXEntryActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="true" android:taskAffinity="填写你的包名" android:launchMode="singleTask"> </activity> 二:WXEntryActivity界面实现 IWXAPIEventHandler 接口,微信发送的请求将回调到 onReq 方法,发送到微信请求的响应结果将回调到 onResp 方法 三:初始化IWXAPI api.handleIntent(getIntent(), this); 四:在onReq()中做跳转 @Override public void onReq(BaseReq arg0) { Log.i("ansen", "WXEntryActivity onReq:" + arg0); startActivity(new Intent(WXEntryActivity.this, SplashActivity.class)); finish(); }
具体看官方文档:https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Access_Guide/Android.html
解决了没有?
安卓是按照文档配置的