Google I/O 2023 发布的 Android beta2 ,Android 14 将在2023年第三季度发布。Google Play 已经开始强制要求targetSdkVersion 33适配,所以 targetSdkVersio
Google I/O 2023 发布的 Android beta2 ,Android 14 将在2023年第三季度发布。Google Play 已经开始强制要求targetSdkVersion 33适配,所以 targetSdkVersion 34适配也是非常有必要的。
前台服务类型(foregroundServiceType)是在 Android 10 引入的,通过 android:foregroundServiceType 可以指定
如果你 App 中的用例与这些类型中的任何一种都不相关,那么建议还是将服务迁移成 WorkManager 或 jobs 。WorkManager or user-initiated data transfer jobs.
health、remoteMessaging、shortService、specialUse 和 systemExempted 类型是 Android 14 中的新类型。
如果面向 Android 14 的应用未在清单中定义给定服务的类型,则系统将在为该服务调用 startForeground() 时引发 MissingForegroundServiceTypeException。
如果以 Android 14 为目标平台的应用使用前台服务,则它们必须根据 Android 14 引入的前台服务类型声明特定权限。
所有权限都定义为普通权限,并默认授予。 用户无法撤销这些权限。
注意:如果调用 startForeground() 时未声明适当的前台服务类型权限,系统将抛出 SecurityException。
启动前台服务的应用程序的最佳做法是使用 startForeground()。在其中传入前台服务类型的按位整数,可以选择传递一个或多个类型值。
如果启动使用以下任何类型的前台服务,则每次为该服务调用 startForeground() 时都应始终包含这些类型:
Service.startForeground(0, notification, FOREGROUND_SERVICE_TYPE_LOCATION)
对于面向 Android 14 的应用,Android 通过以下方式限制应用向内部应用组件发送隐式意图:
这些更改可防止恶意应用拦截只供给用内部组件使用的隐式 intent,例如:
如果您的应用尝试使用隐式意图启动此活动,则会抛出异常:
// Throws an exception when targeting Android 14.context.startActivity(Intent("com.example.action.APP_ACTION"))
要启动未导出的 Activity,您的应用应改用显式 Intent:
// This makes the intent explicit.val explicitIntent = Intent("com.example.action.APP_ACTION")explicitIntent.apply { package = context.packageName}context.startActivity(explicitIntent)
以 Android 14 为目标并使用 context-reGIStered receivers (ContextCompat.registerReceiver)的用和服务的需要指定一个标志,以指示接收器是否应导出到设备上的所有其他应用:分别为 RECEIVER_EXPORTED 或 RECEIVER_NOT_EXPORTED。通过利用 Android 13 中引入的这些接收器的功能,此要求有助于保护应用免受安全漏洞的影响。
在应用的每个广播接收器中,明确指明其他应用是否可以向其发送广播,如以下代码段所示:
// This broadcast receiver should be able to receive broadcasts from other apps.// This option causes the same behavior as setting the broadcast receiver's// "exported" attribute to true in your app's manifest.context.registerReceiver(sharedBroadcastReceiver, intentFilter, RECEIVER_EXPORTED)// For app safety reasons, this private broadcast receiver should **NOT**// be able to receive broadcasts from other apps.context.registerReceiver(privateBroadcastReceiver, intentFilter, RECEIVER_NOT_EXPORTED)
如果您的应用仅通过 Context#registerReceiver 方法(例如 Context#registerReceiver())为系统广播注册接收器,则在注册接收器时不应指定标志。
针对 Android 14 的应用,系统限制了应用在后台启动 Activity :
来源地址:https://blog.csdn.net/zhangying1994/article/details/130668541
--结束END--
本文标题: Android 14适配
本文链接: https://www.lsjlt.com/news/393238.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0