android permission

when install the android app, a list of permission will display: 

  • DEVELOPMENT TOOLS
    ENABLE APP DEBUGGING
    Allows the app to turn on debugging for another app. Malicious apps may use this to kill other apps.
  • SYSTEM TOOLS
    MODIFY GLOBAL SYSTEM SETTINGS
    Allows the app to modify the system's settings data. Malicious apps may corrupt your system's configuration. 

if the permission should not include, remove them in the manifest file.

<!-- <uses-permission android:name="android.permission.WRITE_SETTINGS"></uses-permission>-->
<!-- <uses-permissionandroid:name="android.permission.SET_DEBUG_APP"></uses-permission>-->


list of function required the "WRITE_SETTINGS" permission

  • list of functions under android.provider.Settings.System package


發佈了79 篇原創文章 · 獲贊 1 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章