我需要从android应用程序访问Internet需要什么权限?
我收到以下运行我的应用程序的异常:
java.net.SocketException: Permission denied (maybe missing INTERNET permission)
我如何解决遗漏的权限问题?
在Google Play的最新版本中,Google不再需要询问互联网许可,因为“现在大多数应用都需要它”。 但是,对于拥有较旧版本的用户,仍建议将代码保留在清单中
<uses-permission android:name="android.permission.INTERNET" />
将INTERNET权限添加到清单文件。
你必须添加这一行:
<uses-permission android:name="android.permission.INTERNET" />
在AndroidManifest.xml中的应用程序标签之外
就像下面的线一样
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.avocats.activeavocats"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.exp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
链接地址: http://www.djcxy.com/p/70153.html
上一篇: What permission do I need to access Internet from an android application?