本节介绍了将now.gg实用工具模块(Utility module)与您的开发环境集成的步骤。
首先,下载包含now.gg实用工具模块的now.gg SDK下载包,并将其添加到您的开发环境中。
1. 提取压缩的now.gg实用工具模块,并在包中找到.aar文件:
Utility.aar
2. 添加以下依赖项到您游戏的 build.gradle
文件:
dependencies { implementation fileTree(dir: 'libs', include: ['*.aar']) }
模块成功导入后,您现在可以使用now.gg实用工具模块。
该模块包括以下方法:
getDeviceType()
方法允许您检测用户的设备类型。
设备类型包括:
要获取设备类型,请调用 getDeviceType()
方法,如下所示:
DeviceType deviceType = UtilitySDK.getInstance().getDeviceType(applicationContext);
参考资料 – 您可以参阅 此处的getDeviceType参考资料。
openUrl()
方法允许您在用户设备的新浏览器窗口打开URL。下面的示例代码说明了这个实现。
UtilitySDK.getInstance().openUrl("<your_url_here>", activityObject);
参考资料 – 您可以参阅 此处的openUrl()参考资料。
isRunningOnNowGG()
方法使您能识别您的应用程序是否正运行在now.gg平台上。下面的示例代码说明了这个实现:
UtilitySDK.getInstance().isRunningOnNowGG(applicationContext)
true
。参考资料 – 您可以参阅 此处的isRunningOnNowGG()参考资料。
目录
目录
文档版本 1.0