Skip to main content

Important Notes

Google Play Requirements

Google Play requires the following rules. Otherwise, the app will be rejected:

OpenSSL Version Requirements

Use OpenSSL 1.0.2f/1.0.1r or higher

You can check by using the command below:

$ unzip -p YourApp.apk | strings | grep "OpenSSL"

libpng Version Requirements

Use libpng version 1.6 or higher

You can check by using the command below:

$ unzip -p YourApp.apk | strings | grep "libpng"

Sensitive Permissions Removal

Remove the following sensitive permissions from your AndroidManifest.xml to comply with Google Play policies:

  • REQUEST_INSTALL_PACKAGES
  • READ_CALL_LOG
  • WRITE_CALL_LOG
  • PROCESS_OUTGOING_CALLS
  • READ_SMS
  • SEND_SMS
  • WRITE_SMS
  • RECEIVE_SMS
  • RECEIVE_WAP_PUSH
  • RECEIVE_MMS
  • ACCESS_COARSE_LOCATION
  • ACCESS_FINE_LOCATION

These permissions are considered sensitive by Google Play and may cause your app to be rejected if not properly justified or if they are not essential for your app's core functionality.