2.19 tap渠道更新唤起(如果接tap渠道)
功能说明:
研发方可以调用该接口调起tap渠道的更新唤起。建议研发先判断是否是tap渠道,然后在玩家同意游戏更新的弹框后去调用该方法
接口形式:
public void showForum(Activity activity, HashMap<String, String> extras)
参数说明:
act:当前游戏Activity实例
extras:相关参数,其中key必为r2_tap_updateGame,value随意
接口示例:
HashMap<String,String> extras = new HashMap<>();
extras.put("r2_tap_updateGame", "xxx");
RNSDK.showForum(this, extras);
Last updated
Was this helpful?