简体   繁体   English

Android-更改应用程序的权限

[英]Android- Change permissions of app

I know this is not a technical question but I've searched a lot of time and can't find a suitable answer: 我知道这不是技术问题,但是我已经搜索了很多时间,却找不到合适的答案:

I would like to change the permissions of my app. 我想更改我的应用程序的权限。 You can find the app here: https://play.google.com/store/apps/details?id=io.trigger.forge2dd999d0f14b11e1bc8612313d1adcbe&feature=search_result#?t=W251bGwsMSwyLDEsImlvLnRyaWdnZXIuZm9yZ2UyZGQ5OTlkMGYxNGIxMWUxYmM4NjEyMzEzZDFhZGNiZSJd 您可以在以下位置找到该应用程序: https : //play.google.com/store/apps/details?id=io.trigger.forge2dd999d0f14b11e1bc8612313d1adcbe&feature=search_result#?t=W251bGwsMSwyLDEsImlvLnRyaWdnZXIUZmZyZXZYZXZYZYZYZXZYZXZYZXZYZXZ

If you look at "Permissions" it says: 如果您查看“权限”,则会显示:

YOUR PERSONAL INFORMATION 你的个人信息
READ CONTACT DATA 读取联系人数据
Allows the app to read all of the contact (address) data stored on your tablet. 允许该应用读取平板电脑上存储的所有联系人(地址)数据。 Malicious apps may use this to send your data to other people. 恶意应用可能会借此将您的数据发送给其他人。 Allows the app to read all of the contact (address) data stored on your phone. 允许该应用读取手机上存储的所有联系人(地址)数据。 Malicious apps may use this to send your data to other people. 恶意应用可能会借此将您的数据发送给其他人。

And I would like to remove this so that the app does not read contact data of a user. 而且我想删除它,以便该应用程序不读取用户的联系数据。 Can someone tell me please how to do that? 有人可以告诉我该怎么做吗?

Thanks, 谢谢,

enne enne

If the app doesn't actually access the contacts API, then you can safely remove the corresponding <uses-permission/> from your AndroidManifest.xml file and rebuild your APK. 如果应用程序实际上没有访问通讯录API,则可以安全地从AndroidManifest.xml文件中删除相应的<uses-permission/>并重建APK。

http://developer.android.com/guide/topics/manifest/uses-permission-element.html http://developer.android.com/guide/topics/manifest/uses-permission-element.html

Just to add to Jeremy's answer about , looks like the permissions you are using are: android.permission.READ_PROFILE and android.permission.READ_CONTACTS 只需添加到Jeremy关于的答案中,您正在使用的权限就好像是: android.permission.READ_PROFILEandroid.permission.READ_CONTACTS

You need to remove those. 您需要删除那些。 For more details check this out: http://developer.android.com/reference/android/Manifest.permission.html 有关更多详细信息,请查看: http : //developer.android.com/reference/android/Manifest.permission.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM