Skip to content
This repository has been archived by the owner on Oct 24, 2022. It is now read-only.

Fix for #599 #601

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
The Facebook plugin for Apache Cordova allows you to use the same JavaScript code in your
Cordova application as you use in your web application.
</description>

<repo>https://github.com/jeduan/cordova-plugin-facebook4</repo>

<license>Apache 2.0</license>
Expand Down Expand Up @@ -48,12 +48,12 @@
</config-file>

<source-file src="src/android/facebookconnect.xml" target-dir="res/values" />
<config-file target="res/values/facebookconnect.xml" parent="/*">
<config-file target="app/src/main/res/values/facebookconnect.xml" parent="/*">
<string name="fb_app_id">$APP_ID</string>
<string name="fb_app_name">$APP_NAME</string>
</config-file>

<config-file target="AndroidManifest.xml" parent="application">
<config-file target="app/src/main/AndroidManifest.xml" parent="application">
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/fb_app_id"/>
<meta-data android:name="com.facebook.sdk.ApplicationName" android:value="@string/fb_app_name" />
<activity android:name="com.facebook.FacebookActivity"
Expand Down