|
FB安卓平台支持这个功能。主屏幕快捷方式(Android):确保提示您的玩家是否要将快捷方式直接保存到游戏中。您可以使用我们的SDK方法canCreateShortcutAsync来推断该会话是否支持创建快捷方式。此功能可以从根本上提高玩家的留存率。我的问题是:我每次进游戏就调用下面这几行代码:FBInstant.canCreateShortcutAsync() .then(function(canCreateShortcut) { if (canCreateShortcut) { FBInstant.createShortcutAsync() .then(function() { // Shortcut created }) .catch(function() { // Shortcut not created }); } });我现在手机屏幕上已经创建了游戏的快捷方式,为何我每次进游戏还是会弹是否创建快捷方式的窗口啊啊,有没有什么接口可以判断是否已经创建了快捷方式啊?
|
|