Hi guys,
I’m going to use facebook ads for run campaign of ios app install. I config in build.settings by Corona documents as below for tracking results:
settings = {
plugins =
{
[“plugin.facebook.v4”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true, [“android-kindle”]=true }
},
},
}
and
settings = {
iphone =
{
plist =
{
MinimumOSVersion = “7.0”,
UIApplicationExitsOnSuspend = false,
FacebookAppID = “XXXXXXXXXX”, – Replace XXXXXXXXXX with your Facebook App ID
CFBundleURLTypes =
{
{ CFBundleURLSchemes = { “fbXXXXXXXXXX”, } } – Replace XXXXXXXXXX with your Facebook App ID
},
– Whitelist Facebook apps
LSApplicationQueriesSchemes =
{
“fb”, – Needed for the facebook-v4.isFacebookAppEnabled() API
“fbapi”,
“fbauth2”,
“fb-messenger-api”,
“fbshareextension”
},
}
}
}
Does it not enough? Thanks