Play store permission required after adding React Native Google Mobile Ads

Please provide the following:

  1. SDK Version: 46
  2. Platforms Android.

I have add React Native Google Mobile Ads to my expo application. i have added all permissions, but when ever i try uploading the app to product on play store i get this error.

I have also set my advertising declaration to advertisement but still get the above error

I have also added the the permission in my app.json file.
{
“expo”: {
“scheme”: “oguaschoolz-app”,
“platforms”: [
“ios”,
“android”,
“web”
],
“name”: “OguaSchoolz”,
“slug”: “oguaschoolz-app”,
“version”: “1.2.4”,
“orientation”: “portrait”,
“icon”: “./assets/logo-128.png”,
“primaryColor”: “#fff”,
“splash”: {
“image”: “./assets/logo.png”,
“backgroundColor”: “#fff”,
“resizeMode”: “contain”
},
“android”: {
“package”: “com.oguaschoolz.app”,
“playStoreUrl”: “https://play.google.com/store/apps/details?id=com.oguaschoolz.app”,
“versionCode”: 5,
“adaptiveIcon”: {
“foregroundImage”: “./assets/logo-128.png”,
“backgroundColor”: “#fff
},
“permissions”:[
“com.google.android.gms.permission.AD_ID”,
“READ_EXTERNAL_STORAGE”,
“READ_INTERNAL_STORAGE”,
“WRITE_EXTERNAL_STORAGE”,
“CAMERA”,
“READ_PHONE_STATE”
]
},
“ios”: {
“supportsTablet”: true,
“bundleIdentifier”: “com.oguaschoolz.app”,
“buildNumber”: “1.1.0”,
“infoPlist”: {
“NSCameraUsageDescription”: “This app uses the camera to let user put a photo in his profile page.”
}
},
“web”: {
“bundler”: “metro”,
“favicon”: “./assets/logo.png”
},
“plugins”: [
[
“expo-location”,
{
“locationAlwaysAndWhenInUsePermission”: “Allow $(PRODUCT_NAME) to use your location.”
}
],
[
“expo-notifications”,
{
“icon”: “./assets/logo-128.png”,
“color”: “#ffffff
}
],
[
“expo-updates”,
{
“username”: “Ogua”
}
]
],
“updates”: {
“enabled”: true,
“fallbackToCacheTimeout”: 15000,
“checkAutomatically”: “ON_ERROR_RECOVERY”
},
“extra”: {
“eas”: {
“projectId”: “242237b3-473a-4027-9be4-9c50b748b13d”
}
}
},
“react-native-google-mobile-ads”: {
“android_app_id”: “ca-app-pub-5448171275225637~4193774452”,
“ios_app_id”: “ca-app-pub-5448171275225637~4193774452”
}
}

please can an expect help, i can only push to production if a release without permission and that is preventing ads from displaying in my app.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.