Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook app settings on PhoneGap application

I have a phonegap application that uses the main facebook-plugin for connecting. I'm also using the phonegap build to directly get the apk/ipa without generating an android/ios project.

Inside the facebook for developers, however, I have to complete some settings for my application that seem to require more than the simple phonegap build. I saw some tutorial in generating the hash key for an android app, but, what should I complete into the "Class Name" field(the activity that facebook will launch) since I don't have any class in my javascript-phonegap code?

like image 763
Radu Vlad Avatar asked Oct 28 '14 04:10

Radu Vlad


1 Answers

I have provided screenshots of the config.xml path and the configuration where you will find the package id. `

If you are using cordova from command-line, the default activity class for Cordova android application is CordovaApp.

So for in this case your configuration in Facebook developer should be like this.

Package Name: com.phonegap.helloworld
Default Activity Class Name: com.phonegap.helloworld.CordovaApp

You need to update the package name as per the entry you have in the config.xml

enter image description here

If you are building your app using the Adobe Phonegap Build Service,in that case the default activity name is generated by CamelCase notation of your application name. So Default Activity Test becomes DefaultActivityTest

So your configuration in Facebook developer should look like this.

Package Name: com.phonegap.randomPackage
Default Activity Class Name: com.phonegap.randomPackage.DefaultActivityTest

enter image description here

You can decompile your apk from the site below:

http://www.decompileandroid.com.

Choose the static version(the flash version was not working) and after uploading,you can see the decompiled AndroidManifest.xml file.

This is what I got after decompiling my application apk.

http://www.decompileandroid.com/complete/182864?key=ecb3cec5a9b1418afe5d67f7151b518f

enter image description here

like image 65
Surajit Sarkar Avatar answered Sep 23 '22 12:09

Surajit Sarkar