6

この質問は以前に尋ねられたことは知っていますが、私の問題は、マニフェストと文字列ファイルを正しく設定したことです。

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

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

    <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.hellofb.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>

        <meta-data
            android:name="com.hellofb.ApplicationId"
            android:value="@string/app_id" />

        <activity android:name="com.hellofb.LoginActivity" />
    </application>

</manifest>

(セキュリティのために編集された app_id 文字列)

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">Hello FB</string>
    <string name="action_settings">Settings</string>
    <string name="hello_world">Hello world!</string>
    <string name="app_id">18031830547XXXX</string>

</resources>

私が間違っているかもしれないアイデアはありますか?間違った方法で設定したことがありますか? 正しい方向への助けをいただければ幸いです。

4

1 に答える 1

7

それは間違っている。以下のようになります。

    <meta-data
        android:name="com.facebook.sdk.ApplicationId"
        android:value="@string/app_id" />

名前の文字列は変更しないでください。

于 2013-07-14T16:45:24.103 に答える