skip to Main Content

I am using react-native for the application.
But it was rejected due to this reason.

enter image description here

But I am no longer added these permissions. I was removing the some permissions via tools:node="remove"

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" tools:node="remove" />

For the bundle details
enter image description here

What I am missing?

Thank you.

2

Answers


  1. Chosen as BEST ANSWER

    Found the solution.

    I edited the rollout percentage and make it 100%.

    The issue was, it was 1% and they are still validating the previous builds on the production.

    It is approved now.

    Thanks


  2. you need to remove the whole line, anything started with tool: doesn’t actually effects the release version

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search