Add the Required Permissions
Open your application's AndroidManifest.xml file and verify that it has these permissions:
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
If both of these permissions are not present, add them.