Your app uploading Installed Packages information

2020-07-27 02:14发布

问题:

Google Play rejected my update due to this, I'm using SDK version 5.5.1. I also tried updating to the new version and disabling auto event logging but that didn't help and app my app got rejected the second time?

Edit: I tried with the latest version (6.3.0) and that's also got rejected.

        <meta-data
        android:name="com.facebook.sdk.AutoLogAppEventsEnabled"
        android:value="false" />

Since Google doesn't allow this, Is there anything I can do from here?

回答1:

The reason not because of Facebook SDK, It probably because you may be having webpage's which will collect some user information.

In order to get it to approve from play store, you should have

  • have a website page with a privacy policy that states what data you're collecting

  • have a button in your app's UI that will link to said privacy policy or show a screen that shows what data you're collecting.

Hope this helps