Facebook Permissions Shares Android Apps Review

I tried submitting my APK for review so I can get permission to use on Facebook.

  • Downloaded screenshots so they can go step by step to the sharing option in my app.
  • Set the correct languages ​​/ locales my application is using.
  • Gradually drew in the description box how they can navigate to the sharing option in my app.
  • Configured the Facebook app correctly with my key hash, package name and class name.

They abandoned my message with the following message

on Android - your provided file is not configured correctly. For iOS Simulator Builds, follow our instructions and resubmit. For Android views, please create an .APK file to download.

Our review group notes for your last reviewed Android view

I tried to download the file you provided for your application, however I got this message on the new web page: "Invalid request". Please resubmit with a new .APK file so that our team can complete testing your application.

Any ideas why they are dropping my app? Or is there a way to contact Facebook what exactly am I doing wrong?

+3


source to share


1 answer


EDIT: "Bad Request" is a way of saying "something is wrong during the boot process". Perhaps a funny character in the filename or even spaces. Or the file is too large. Without an accurate error message, you can only guess what went wrong.

Perhaps the problem is with the signing of the application. Check if your developer key has expired. This is a summary:

  • Remove debug information / debug mode
  • Check / increment in manifest.xml file android: versionCode and android: versionName
  • Make sure ALL resouces are in res folder
  • Make sure ALL graphic size is resized to the minimum value (no 16MB icon for icon ...)
  • Compile and Sign APK


(for Eclipse)

  • Select the project in the package browser
  • File -> Export
  • Android → Android Application
  • Follow the instructions of the wizard

  • Test the APK on a real device

-1


source







All Articles