android 互联网权限不起作用
我正在尝试设置 facebook 连接与我的程序。我以前可以使用它,但我已经换了一台新计算机,现在由于某种原因未授予许可。每当我点击 Facebook 连接按钮时,就会弹出一个错误:“应用程序需要访问互联网的权限”。我的清单文件如下。有人看出有什么不对吗?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myname.appname" android:versionCode="1"
android:versionName="1.0">
<supports-screens android:smallScreens="false"
android:normalScreens="true" android:largeScreens="false"
android:anyDensity="false" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".LoginPage"
android:screenOrientation="portrait" android:label="@string/login_tag">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-permission android:name="android.permission.INTERNET">
</uses-permission>
<activity android:name=".mainDisplay" android:label="@string/app_name"></activity>
</application>
I'm trying to set-up facebook connect with my program. I had it working before, but I've switched to a new computer and now for some reason permission isn't being granted. Whenever I hit my facebok connect button, an error pops up, "Application requires permission to access the internet". My manifest file is below. Anyone see anything wrong?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myname.appname" android:versionCode="1"
android:versionName="1.0">
<supports-screens android:smallScreens="false"
android:normalScreens="true" android:largeScreens="false"
android:anyDensity="false" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".LoginPage"
android:screenOrientation="portrait" android:label="@string/login_tag">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-permission android:name="android.permission.INTERNET">
</uses-permission>
<activity android:name=".mainDisplay" android:label="@string/app_name"></activity>
</application>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的
元素需要位于
元素之外。Your
<uses-permission>
element needs to be outside of the<application>
element.添加权限时,必须这样添加:
While adding permission ,it must add like this: