3

I got exception in android manifest file. I have added following permissions:

1. uses-permission android:name="android.permission.CALL_PRIVILEGED" />

2. uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />

I got "Permission is only granted to system apps" error. How to fix it. Before it was working fine.

Padma Kumar
  • 19,893
  • 17
  • 73
  • 130
AndroidRaji
  • 907
  • 14
  • 26

1 Answers1

3

you can't fix it. As mentioned:

 "Permission is only granted to system apps"

This mean, no ordinary app can use the permissions. At least, not without rooting the device.

ariefbayu
  • 21,849
  • 12
  • 71
  • 92