I added the following to my manifest for a the facebook sdk...
I have the the following in my string.xml
AppID is my actual Facebook App ID
AppName is my actual app name as defined in Project > Package Name in B4A
This all compiles and installs on my phone just fine. However, the [open] option is disabled and I am unable to locate / open the app on my phone. When I remove the manifest entry, I am able to compile, install, open and use as usual.
B4X:
AddManifestText(
<application android:label="@string/app_name">
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
</application>)
I have the the following in my string.xml
AppID is my actual Facebook App ID
AppName is my actual app name as defined in Project > Package Name in B4A
B4X:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string
name="facebook_app_id"
>"ID</string>
<string
name="app_name"
>AppName</string>
</resources>
This all compiles and installs on my phone just fine. However, the [open] option is disabled and I am unable to locate / open the app on my phone. When I remove the manifest entry, I am able to compile, install, open and use as usual.