Sencha Touch 2 has a sample app called 'Jog With Friends', which is helpful to implement mobile authentication for FB.
In auth portions of the sample app, there is reference to the FB appId
as follows:
...
FB.init({
appId : MyApp.app.facebookAppId,
cookie : true
});
...
I presume this means there should be a file as such
/MyApp/app/facebookAppId
containing my FB App ID number.
But I have no idea what extension this file should have, and in which format the App ID number should be stored in this file.
Any idea how this is done?