我的应用程序通过 WiFi 运行。但安卓不能超过3G?有什么猜测吗?
我开发了一个应用程序,目标版本是4(Android 1.6)到7(Android 2.1)。我在开发手机 2(Google-Io-Device 1.6 版本)上测试了这个应用程序。我正在通过互联网做一些 xml 解析工作。我在清单上设置了
。它在 WI-FI 网络中工作正常。但它不适用于具有 3G 网络的 Motorola Droid 2.1。 3G网络还有什么更具体的事情要做吗?有什么想法吗?
提前致谢。
编辑:
我的应用程序通过 WiFi 网络运行。但不能通过 3G 网络。有什么猜测吗?
I have developed an App that target version is 4 (Android 1.6) upto 7 (Android 2.1). I tested this app on the dev phone 2 (Google-Io-Device 1.6 version). I am doing some xml parsing stuff through Internet. i set the <uses-permission>
on my Manifest. it works fine in WI-FI Network. But its not working in the Motorola Droid 2.1 with 3G Network. Is there any more specific stuff to do for 3G network? Any Idea?
Thanks in advance.
Edit:
My App works over WiFi Network. But not over 3G Network. Any Guesses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅
android.permission.INTERNET
。如果您连接的服务器位于路由器/防火墙后面,则很可能只能从本地网络访问该服务器。一个简单的测试是尝试打开您尝试在系统浏览器应用程序中访问的同一 URL。查看 logcat 的回溯也会很有帮助。
Only
android.permission.INTERNET
. It's most likely that the server you're connecting to is only accessible from your local network, if it's behind a router/firewall. An easy test is to try to open the same URL you're trying to hit in the system Browser app.It'd also be helpful to see the traceback from logcat.