博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【android】安卓的权限提示及版本相关
阅读量:5227 次
发布时间:2019-06-14

本文共 860 字,大约阅读时间需要 2 分钟。

Only dangerous permissions require user agreement. The way Android asks the user to grant dangerous permissions depends on the version of Android running on the user's device, and the system version targeted by your app.

在android6.0(含6.0)以上的版本,是在运行时候进行权限的检测提示;

If the device is running Android 6.0 (API level 23) or higher, and the app's targetSdkVersion is 23 or higher, the user isn't notified of any app permissions at install time. Your app must ask the user to grant the dangerous permissions at runtime.


在android5.1.1(含5.1.1)一下的版本,是在安装时候进行权限的检测;

If the device is running Android 5.1.1 (API level 22) or lower, or the app's targetSdkVersion is 22 or lower while running on any version of Android, the system automatically asks the user to grant all dangerous permissions for your app at install-time

转载于:https://www.cnblogs.com/china-flint/p/10000069.html

你可能感兴趣的文章
python之-框架
查看>>
Java基础教程——网络基础知识
查看>>
[Web] 如何实现Web服务器和应用服务器的负载均衡?
查看>>
创建文件夹命令
查看>>
自己到底要的是什么
查看>>
this 指向
查看>>
Kruskal基础最小生成树
查看>>
BZOJ.4819.[SDOI2017]新生舞会(01分数规划 费用流SPFA)
查看>>
ubuntu 14.04 安装搜狗拼音输入法
查看>>
浅谈算法和数据结构: 一 栈和队列
查看>>
[WebMatrix] 如何将SQL Compact 4.0 移转至SQL Server 2008 Express
查看>>
Java内部类详解
查看>>
python-基础
查看>>
17 案例
查看>>
【BZOJ 1221】 [HNOI2001] 软件开发
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
SQL字符型转日期型
查看>>
Java程序设计教程(第2版)阅读总结
查看>>
vscode + platformIO开发stm32f4
查看>>
图论-次短路求法
查看>>