Android 16 플랫폼에는 앱에 영향을 줄 수 있는 동작 변경사항이 있습니다. targetSdkVersion
과 관계없이 Android 16에서 실행되는 모든 앱에 적용되는 동작 변경사항은 다음과 같습니다. 이러한 변경사항을 적절히 지원해야 하는 경우 앱을 테스트한 후 필요에 따라 수정해야 합니다.
또한 Android 16을 타겟팅하는 앱에만 영향을 주는 동작 변경사항 목록을 검토해야 합니다.
핵심 기능
Android 16 (API 수준 36)에는 Android 시스템의 다양한 핵심 기능을 수정하거나 확장하는 다음과 같은 변경사항이 포함되어 있습니다.
JobScheduler 할당량 최적화
Starting in Android 16, we're adjusting regular and expedited job execution runtime quota based on the following factors:
- Which app standby bucket the application is in: in Android 16, active standby buckets will start being enforced by a generous runtime quota.
- If the job starts execution while the app is in a top state: in Android 16, Jobs started while the app is visible to the user and continues after the app becomes invisible, will adhere to the job runtime quota.
- If the job is executing while running a Foreground Service: in Android 16, jobs that are executing while concurrently with a foreground service will adhere to the job runtime quota. If you're leveraging jobs for user initiated data transfer, consider using user initiated data transfer jobs instead.
This change impacts tasks scheduled using WorkManager, JobScheduler, and
DownloadManager. To debug why a job was stopped, we recommend logging why your
job was stopped by calling WorkInfo.getStopReason()
(for
JobScheduler jobs, call JobParameters.getStopReason()
).
For more information on battery-optimal best practices, refer to guidance on optimize battery use for task scheduling APIs.
We also recommend leveraging the new
JobScheduler#getPendingJobReasonsHistory
API introduced in
Android 16 to understand why a job has not executed.
Testing
To test your app's behavior, you can enable override of certain job quota optimizations as long as the app is running on an Android 16 device.
To disable enforcement of "top state will adhere to job runtime quota", run the
following adb
command:
adb shell am compat enable OVERRIDE_QUOTA_ENFORCEMENT_TO_TOP_STARTED_JOBS APP_PACKAGE_NAME
To disable enforcement of "jobs that are executing while concurrently with a
foreground service will adhere to the job runtime quota", run the following
adb
command:
adb shell am compat enable OVERRIDE_QUOTA_ENFORCEMENT_TO_FGS_JOBS APP_PACKAGE_NAME
To test certain app standby bucket behavior, you can set the app standby bucket
of your app using the following adb
command:
adb shell am set-standby-bucket APP_PACKAGE_NAME active|working_set|frequent|rare|restricted
To understand the app standby bucket your app is in, you can get the app standby
bucket of your app using the following adb
command:
adb shell am get-standby-bucket APP_PACKAGE_NAME
중단된 빈 작업 중지 사유
포기된 작업은 작업과 연결된 JobParameters
객체가 가비지 컬렉션되었지만 JobService#jobFinished(JobParameters,
boolean)
가 호출되어 작업 완료를 알리지 않은 경우에 발생합니다. 이는 앱의 인식 없이 작업이 실행되고 재예약되고 있음을 나타냅니다.
JobScheduler를 사용하는 앱은 JobParameters
객체에 대한 강력한 참조를 유지하지 않으며 이제 제한 시간에 STOP_REASON_TIMEOUT
대신 새 작업 중지 이유 STOP_REASON_TIMEOUT_ABANDONED
가 부여됩니다.
새 중단된 중지 이유가 자주 발생하면 시스템은 작업 빈도를 줄이기 위한 완화 조치를 취합니다.
앱은 새 중지 이유를 사용하여 중단된 작업을 감지하고 줄여야 합니다.
WorkManager, AsyncTask 또는 DownloadManager를 사용하는 경우 이러한 API가 앱을 대신하여 작업 수명 주기를 관리하므로 영향을 받지 않습니다.
JobInfo#setImportantWhileForeground를 완전히 지원 중단했습니다.
JobInfo.Builder#setImportantWhileForeground(boolean)
方法用于在调度应用位于前台或暂时豁免于后台限制时指示作业的优先级。
自 Android 12(API 级别 31)起,此方法已废弃。从 Android 16 开始,它不再有效,系统会忽略调用此方法。
此功能移除也适用于 JobInfo#isImportantWhileForeground()
。从 Android 16 开始,如果调用该方法,该方法会返回 false
。
순서가 지정된 브로드캐스트 우선순위 범위가 더 이상 전역이 아님
Android 应用可以为广播接收器定义优先级,以控制接收器接收和处理广播的顺序。对于清单声明的接收器,应用可以使用 android:priority
属性来定义优先级;对于上下文注册的接收器,应用可以使用 IntentFilter#setPriority()
API 来定义优先级。发送广播时,系统会按接收器的优先级(从高到低)将其传送给接收器。
在 Android 16 中,无法保证使用 android:priority
属性或 IntentFilter#setPriority()
在不同进程中传送广播的顺序。广播优先级仅在同一应用进程内有效,而不会跨所有进程有效。
此外,广播优先级将自动限制在 (SYSTEM_LOW_PRIORITY
+ 1, SYSTEM_HIGH_PRIORITY
- 1) 的范围内。只有系统组件才能将 SYSTEM_LOW_PRIORITY
、SYSTEM_HIGH_PRIORITY
设置为广播优先级。
如果您的应用执行以下任一操作,可能会受到影响:
- 您的应用声明了具有相同广播 intent 的多个进程,并且希望根据优先级以特定顺序接收这些 intent。
- 您的应用进程与其他进程交互,并期望以特定顺序接收广播 intent。
如果进程需要相互协调,则应使用其他协调渠道进行通信。
ART 내부 변경사항
Android 16 包含 Android 运行时 (ART) 的最新更新,这些更新可提升 Android 运行时 (ART) 的性能,并支持更多 Java 功能。通过 Google Play 系统更新,搭载 Android 12(API 级别 31)及更高版本的 10 亿多部设备也将受益于这些改进。
发布这些变更后,依赖于 ART 内部结构的库和应用代码在搭载 Android 16 的设备以及通过 Google Play 系统更新来更新 ART 模块的较低 Android 版本上可能无法正常运行。
依赖于内部结构(例如非 SDK 接口)始终会导致兼容性问题,但避免依赖于利用内部 ART 结构的代码(或包含代码的库)尤为重要,因为 ART 更改与设备所运行的平台版本无关,并且会通过 Google Play 系统更新推送到超过 10 亿部设备。
所有开发者都应在 Android 16 上对其应用进行全面测试,以检查其应用是否受到影响。此外,请查看已知问题,了解您的应用是否依赖于我们发现的任何依赖于内部 ART 结构的库。如果您的应用代码或库依赖项受到影响,请尽可能寻找公共 API 替代方案,并在问题跟踪器中创建功能请求,为新用例请求公共 API。
16KB 페이지 크기 호환성 모드
Android 15 introduced support for 16 KB memory pages to optimize performance of the platform. Android 16 adds a compatibility mode, allowing some apps built for 4 KB memory pages to run on a device configured for 16 KB memory pages.
If Android detects that your app has 4 KB aligned memory pages, it
automatically uses compatibility mode and display a notification dialog to the
user. Setting the android:pageSizeCompat
property in the AndroidManifest.xml
to enable the backwards compatibility mode will prevent the display of the
dialog when your app launches. For best performance, reliability, and stability,
your app should still be 16 KB aligned. Check out
our recent blog post
on updating your apps to support 16 KB memory pages for more details.

사용자 환경 및 시스템 UI
Android 16 (API 수준 36)에는 더 일관되고 직관적인 사용자 환경을 제공하기 위한 다음과 같은 변경사항이 포함되어 있습니다.
방해가 되는 접근성 안내 지원 중단
Android 16 deprecates accessibility announcements, characterized by the use of
announceForAccessibility
or the dispatch of
TYPE_ANNOUNCEMENT
accessibility events. These can create
inconsistent user experiences for users of TalkBack and Android's screen reader,
and alternatives better serve a broader range of user needs across a variety of
Android's assistive technologies.
Examples of alternatives:
- For significant UI changes like window changes, use
Activity.setTitle(CharSequence)
andsetAccessibilityPaneTitle(java.lang.CharSequence)
. In Compose, useModifier.semantics { paneTitle = "paneTitle" }
- To inform the user of changes to critical UI, use
setAccessibilityLiveRegion(int)
. In Compose, useModifier.semantics { liveRegion = LiveRegionMode.[Polite|Assertive]}
. These should be used sparingly as they may generate announcements every time a View is updated. - To notify users about errors, send an
AccessibilityEvent
of typeAccessibilityEvent#CONTENT_CHANGE_TYPE_ERROR
and setAccessibilityNodeInfo#setError(CharSequence)
, or useTextView#setError(CharSequence)
.
The reference documentation for the deprecated
announceForAccessibility
API includes more details about
suggested alternatives.
3버튼 탐색 지원
Android 16에서는 뒤로 탐색 예측으로 적절하게 이전한 앱의 3버튼 탐색에 뒤로 탐색 예측을 지원합니다. 뒤로 버튼을 길게 누르면 뒤로 탐색 예측 애니메이션이 시작되어 뒤로 스와이프하면 이동할 위치를 미리 볼 수 있습니다.
이 동작은 시스템 애니메이션 (홈으로 돌아가기, 교차 작업, 교차 활동)을 비롯하여 뒤로 탐색 예측 애니메이션을 지원하는 시스템의 모든 영역에 적용됩니다.
기기 폼 팩터
Android 16 (API 수준 36)에는 가상 기기 소유자가 디스플레이에 프로젝션할 때 앱에 적용되는 다음과 같은 변경사항이 포함됩니다.
가상 기기 소유자 재정의
가상 기기 소유자는 가상 기기를 만들고 관리하는 신뢰할 수 있는 앱 또는 권한이 있는 앱입니다. 가상 기기 소유자는 가상 기기에서 앱을 실행한 후 앱을 개인 컴퓨터, 가상 현실 기기, 자동차 인포테인먼트 시스템과 같은 원격 기기의 디스플레이에 투사합니다. 가상 기기 소유자가 휴대전화와 같은 로컬 기기에 있습니다.

앱별 재정의
Android 16 (API 수준 36)을 실행하는 기기에서 가상 기기 소유자는 가상 기기 소유자가 관리하는 일부 가상 기기에서 앱 설정을 재정의할 수 있습니다. 예를 들어 앱 레이아웃을 개선하기 위해 가상 기기 소유자는 앱을 외부 디스플레이에 투사할 때 방향, 가로세로 비율, 크기 조절 가능 여부 제한을 무시할 수 있습니다.
일반적인 브레이킹 체인지
Android 16 동작은 자동차 디스플레이나 Chromebook과 같은 대형 화면 폼 팩터에서 앱의 UI에 영향을 미칠 수 있습니다. 특히 세로 모드 방향의 소형 디스플레이용으로 설계된 레이아웃에 영향을 미칠 수 있습니다. 모든 기기 폼 팩터에 맞게 앱을 조정하는 방법을 알아보려면 적응형 레이아웃 정보를 참고하세요.
참조
보안
Android 16 (API 수준 36)에는 악성 앱으로부터 앱과 사용자를 보호하는 데 도움이 되도록 시스템 보안을 개선하는 변경사항이 포함되어 있습니다.
인텐트 리디렉션 공격에 대한 보안이 강화되었습니다.
Android 16은 최소한의 호환성과 개발자 변경사항으로 일반적인 Intent
리디렉션 공격에 대한 기본 보안을 제공합니다.
Intent
리디렉션 악용에 기본적으로 보안 강화 솔루션이 도입됩니다. 대부분의 경우 인텐트를 사용하는 앱은 일반적으로 호환성 문제가 발생하지 않습니다. Google은 개발 프로세스 전반에서 측정항목을 수집하여 중단이 발생할 수 있는 앱을 모니터링했습니다.
Android의 인텐트 리디렉션은 공격자가 취약한 앱의 컨텍스트에서 새 구성요소를 실행하는 데 사용되는 인텐트의 콘텐츠를 부분적으로 또는 완전히 제어할 수 있는 반면 피해자 앱이 ('최상위') 인텐트의 Extras 필드에서 신뢰할 수 없는 하위 수준 인텐트를 실행하는 경우에 발생합니다. 이로 인해 공격자 앱이 피해자 앱의 컨텍스트에서 비공개 구성요소를 실행하거나 권한이 있는 작업을 트리거하거나 민감한 정보에 대한 URI 액세스 권한을 획득하여 데이터 도난 및 임의의 코드 실행으로 이어질 수 있습니다.
인텐트 리디렉션 처리 선택 해제
Android 16에서는 앱이 실행 보안 보호를 선택 해제할 수 있는 새로운 API를 도입합니다. 이는 기본 보안 동작이 합법적인 앱 사용 사례를 방해하는 특정 경우에 필요할 수 있습니다.
Android 16 (API 수준 36) SDK 이상을 기준으로 컴파일하는 애플리케이션의 경우
Intent 객체에서 removeLaunchSecurityProtection()
메서드를 직접 사용할 수 있습니다.
val i = intent
val iSublevel: Intent? = i.getParcelableExtra("sub_intent")
iSublevel?.removeLaunchSecurityProtection() // Opt out from hardening
iSublevel?.let { startActivity(it) }
Android 15 (API 수준 35) 이하를 기준으로 컴파일하는 애플리케이션의 경우
권장하지는 않지만 리플렉션을 사용하여 removeLaunchSecurityProtection()
메서드에 액세스할 수 있습니다.
val i = intent
val iSublevel: Intent? = i.getParcelableExtra("sub_intent", Intent::class.java)
try {
val removeLaunchSecurityProtection = Intent::class.java.getDeclaredMethod("removeLaunchSecurityProtection")
removeLaunchSecurityProtection.invoke(iSublevel)
} catch (e: Exception) {
// Handle the exception, e.g., log it
} // Opt-out from the security hardening using reflection
iSublevel?.let { startActivity(it) }
연결
Android 16 (API 수준 36)에는 주변기기와의 연결성을 개선하기 위해 블루투스 스택에 다음과 같은 변경사항이 포함되어 있습니다.
채권 손실 처리 개선
Starting in Android 16, the Bluetooth stack has been updated to improve security and user experience when a remote bond loss is detected. Previously, the system would automatically remove the bond and initiate a new pairing process, which could lead to unintentional re-pairing. We have seen in many instances apps not taking care of the bond loss event in a consistent way.
To unify the experience, Android 16 improved the bond loss handling to the system. If a previously bonded Bluetooth device could not be authenticated upon reconnection, the system will disconnect the link, retain local bond information, and display a system dialog informing users of the bond loss and directing them to re-pair.