Meteor安卓apk显示空白的白色屏幕

时间:2016-04-12 16:46:17

标签: android angularjs meteor ionic-framework

我已经建立了一个流媒体应用程序,它已成功在网络上工作,但当我建立它的apk文件时,它只显示白色屏幕。我还签了apk命令我运行“meteor build~ / Chat-App --server = chat.citze.in” 任何帮助请我被困在这里。

这是我的mobile-config js

 App.info({
  id: 'com.example.chat.citze',
  name: 'Chat',
  description: 'Citze Chat Application',
  author: 'Himanshu Gupta',
  email: 'contact@example.com',
  website: 'http://chat.citze.in'

});

// Set PhoneGap/Cordova preferences
App.setPreference('BackgroundColor', '0xff0000ff');
App.setPreference('HideKeyboardFormAccessoryBar', true);
App.setPreference('Orientation', 'default');
App.setPreference('Orientation', 'all', 'ios');

请帮我解决此问题。

1 个答案:

答案 0 :(得分:1)

你的Android应用程序可能需要互联网许可或类似功能,也可能是apk的签名问题。

查看您的AndroidManifest.xml

对于权限,您至少需要互联网权限:

<uses-permission android:name="android.permission.INTERNET" />

这可能也有帮助:

https://forums.meteor.com/t/cordova-is-it-possible-to-force-meteor-to-use-https-for-meteor-local/17908/5

https://forum.ionicframework.com/t/how-to-set-geolocation-permissions-for-android/11616