Is it possible to have “optional” permissions in Android?

前端 未结 3 902
遥遥无期
遥遥无期 2020-12-31 03:55

Is there any way for an Android application to declare requested permissions as optional?

I.e. I want to write an app that requests a set of permissions, e.g. one of

3条回答
  •  感情败类
    2020-12-31 03:59

    I don't believe so, since permissions are set in the manifest and accepted by the user upon installing the .apk. You could build a light version of the application with reduced permissions and limited feature set and offer it as an alternative.

提交回复
热议问题