Permission error android Expo

0

Well when trying to upload my apk send me this error:

Your APK or Android App Bundle uses permissions that require a privacy policy: (android.permission.CAMERA, android.permission.RECORD_AUDIO, android.permission.READ_PHONE_STATE, android.permission.READ_CONTACTS).

According to lei I must do this:

"permissions": [
    "CAMERA",
    "RECORD_AUDIO",
    "READ_PHONE_STATE",
    "READ_CONTACTS",
    "READ_INTERNAL_STORAGE",
    "READ_EXTERNAL_STORAGE",
    "WRITE_EXTERNAL_STORAGE",
    "ACCESS_FINE_LOCATION",
    "ACCESS_COARSE_LOCATION",
    "com.google.android.c2dm.permission.RECEIVE",
    "com.android.launcher.permission.INSTALL_SHORTCUT",
    "com.htc.launcher.permission.UPDATE_SHORTCUT"
  ]

I do not want to detach my project, I hope there is a solution.

    
asked by RereRoro1 04.12.2018 в 04:15
source

1 answer

0

For those who have the same problem just put the permissions empty:

permissions:[]
    
answered by 04.12.2018 в 05:25