iOS Build Error

I tried to upload my build with facebook v4 to app store. But I got the following error in my Application Loader:

The following URL schemes found in your app are not in the correct format: [715275078611908]. URL schemes need to begin with an alphabetic character, and be comprised of alphanumeric characters, the period, the hyphen or the plus sign only. Please see RFC1738 for more detail.

Here is my settings (copied from facebook demo app)

 iphone = { plist = { -- For iOS 9+ only NSAppTransportSecurity = { NSExceptionDomains = { ["fbcdn.net"] = { NSIncludesSubdomains = true, NSExceptionRequiresForwardSecrecy = false, }, ["facebook.com"] = { NSIncludesSubdomains = true, NSExceptionRequiresForwardSecrecy = false, }, ["akamaihd.net"] = { NSIncludesSubdomains = true, NSExceptionRequiresForwardSecrecy = false, }, }, }, LSApplicationQueriesSchemes = { "fb", "fbapi20130214", "fbapi20130410", "fbapi20140410", "fbapi20140116", "fbapi20150313", "fbapi20150629", "fbauth", "fbauth2", "fb-messenger-api20140430", }, CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-167.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, -- Backgrounding Function -- See http://mobile.tutsplus.com/tutorials/corona/corona-sdk-handling-application-suspension/ UIApplicationExitsOnSuspend = false, FacebookAppID = "715275078611908", -- replace XXXXXXXXX with your facebook appId CFBundleURLTypes = { { CFBundleURLSchemes = { "715275078611908", -- replace XXXXXXXXX with your facebook appId } } } }, -- Hide StatusBar -- See http://developer.anscamobile.com/forum/2010/12/16/hide-status-bar UIStatusBarHidden=true, },

I think I fixed it by adding fbxxxxxxx to CFBundleURLSchemes

I think I fixed it by adding fbxxxxxxx to CFBundleURLSchemes