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_PACKAGESREAD_CALL_LOGWRITE_CALL_LOGPROCESS_OUTGOING_CALLSREAD_SMSSEND_SMSWRITE_SMSRECEIVE_SMSRECEIVE_WAP_PUSHRECEIVE_MMSACCESS_COARSE_LOCATIONACCESS_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.