0
我知道這是一個常見問題,我只是不知道如何解決它。雖然我在eclipse中導入Facebook SDK到我的項目中,並且在Facebook開發者中做了什麼,我遇到了一個錯誤,說「文件不同步」。AndroidManifest.xml和Strings.xml「文件不同步」
這裏是我的string.xml
<resources>
<string name="app_name">my_app_name</string>
<string name="launcher_name">@string/app_name</string>
<string name="activity_name">@string/launcher_name</string>
<string name="com.facebook.sdk.ApplicationId">@string/my_app_id</string>
</resources>
這裏是我的AndroidManifest.xml
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="CordovaApp" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:configChanges="orientation|keyboardHidden" android:label="@string/app_name" android:name="org.apache.cordova.DroidGap">
<intent-filter />
</activity>
<meta-data android:name="com.facebook.sdk.ApplicationId"
android:resource="resource specification"
android:value="@string/479867658820979" />
</application>
你可以看到,我已經添加了應用程序標籤內的元數據被指示在facebook devs。
即時得到 「文件同步錯誤的」