我正在尝试使用 BBM 1.3 SDK 制作 BBM Connected App。出于某种原因,该应用程序无法在我拥有的两台设备(9900 和 9780 @ OS 7.0 和 BBM 6.1)上运行,即使它应该,至少在预生产中。下面是我的注册码:
Screen screen;
BBMApp = new BBMPlatformApplication(Global.UUID);
context = BBMPlatformManager.register(BBMApp);
allowed = context.isAccessAllowed();
listener = new BBMPlatformContextListener() {
public void accessChanged(boolean arg0, int arg1) {
allowed = context.isAccessAllowed();
if(!allowed)
{
//Do nothing
}
else if(allowed)
{
}
}
};
context.setListener(listener);
screen = new MyScreen(context);
// Push a screen onto the UI stack for rendering.
pushScreen(screen);
这是来自在线文档的代码,所以我不知道为什么它不起作用。context.isAccessAllowed() 在两个设备上都返回 false,访问错误代码为 0 (APP_ENVIRONMENT_TEST)。
两台设备都有正常工作的 BBM 和 WiFi 连接。
知道是什么原因造成的吗?