I have a problem with my android emulator, Internet is not access in it but it showing 3G icon. I read on many blogs they suggest to chang开发者_运维百科e the android-sdk I have done this but still it's not working. I also change the proxy settings and disabled the firewall but it's not working what could be the problem please suggest me.
Thanks....
Ok, here is my solution. In the case that your app requires Internet access you must add this permission to your Manifest file. Only then will internet access work for your application. The line should look like this:
<uses-permission android:name="android.permission.INTERNET" />
Make sure that this is in your application otherwise you will not be able to access the internet.
精彩评论