3

enter image description here

I have come across this issue and research all related forums

Issues No.9

How to confirm alert message

Can't accept location permission from system alert pop up

How to tap on allow button on permission pop up

yet nothing works.

Any other solution? Suggestion? In those links, people didn't seem to have an obvious solution.

Sarin Suriyakoon
  • 420
  • 1
  • 7
  • 19

2 Answers2

2

It's my solution!

await device.launchApp({ 
    permissions: { userTracking: 'YES', location: 'always', notifications: 'YES', reminders: 'YES', }, 
});
H.K.P.
  • 21
  • 3
1

Detox uses applesimutils to set permissions. This is battle tested in production at Wix and in Detox CI. Check out the docs and test project for examples.

Léo Natan
  • 56,823
  • 9
  • 150
  • 195