android 互联网权限不起作用

发布于 2024-10-17 12:09:44 字数 1185 浏览 3 评论 0原文

我正在尝试设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独岁月 2024-10-24 12:09:44

您的 元素需要位于 元素之外。

Your <uses-permission> element needs to be outside of the <application> element.

本王不退位尔等都是臣 2024-10-24 12:09:44

添加权限时,必须这样添加:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.Jouzer_Android"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:icon="@drawable/app_icon"
        android:label="@string/app_name" >

    />

</manifest>

While adding permission ,it must add like this:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.Jouzer_Android"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:icon="@drawable/app_icon"
        android:label="@string/app_name" >

    />

</manifest>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文