Facebook app settings on PhoneGap application

后端 未结 2 928
灰色年华
灰色年华 2021-02-15 16:42

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

相关标签:
2条回答
  • 2021-02-15 17:36

    If you create android application means, you specified your "activity name" during project creation.That name is your class name.

    Enter package name: com.example.proj and Enter class name: Your project activity name and Enter your key hash

    0 讨论(0)
  • 2021-02-15 17:43

    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

    0 讨论(0)
提交回复
热议问题