commit | 69728b0f93c6feb351214b380380213ffdba3ae7 | [log] [tgz] |
---|---|---|
author | Tomasz Wasilczyk <twasilczyk@google.com> | Tue Mar 19 16:43:24 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Mar 19 16:43:24 2024 +0000 |
tree | fb838267be458bff92fad47d045749e836d9824c | |
parent | c4c128e9b9e9b8db0e909b58b0332c3a4970b04e [diff] | |
parent | f0919bfcd1650af9509c8786913d98eeedf90053 [diff] |
Merge "Fix crash when EuiccManager is not present" into main
diff --git a/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/domain/interactor/SimBouncerInteractorKosmos.kt b/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/domain/interactor/SimBouncerInteractorKosmos.kt index 8ed9f45..02b79af 100644 --- a/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/domain/interactor/SimBouncerInteractorKosmos.kt +++ b/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/domain/interactor/SimBouncerInteractorKosmos.kt
@@ -38,7 +38,7 @@ telephonyManager = telephonyManager, resources = mainResources, keyguardUpdateMonitor = keyguardUpdateMonitor, - euiccManager = applicationContext.getSystemService(Context.EUICC_SERVICE) as EuiccManager, + euiccManager = applicationContext.getSystemService(Context.EUICC_SERVICE) as EuiccManager?, mobileConnectionsRepository = mobileConnectionsRepository, ) }