mirror of
https://github.com/ARM-software/devlib.git
synced 2025-03-04 01:07:51 +00:00
AndroidTarget: Add additional permission error to ignore
Also ignore any errors that granting a permission on an Android device is not permitted.
This commit is contained in:
parent
5001fae516
commit
a992a890b8
@ -1221,6 +1221,8 @@ class AndroidTarget(Target):
|
||||
pass # Ignore if unknown
|
||||
elif 'has not requested permission' in e.message:
|
||||
pass # Ignore if not requested
|
||||
elif 'Operation not allowed' in e.message:
|
||||
pass # Ignore if not allowed
|
||||
else:
|
||||
raise
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user