Reputation: 61
I have been facing an issue after flashing AOSP 14 (Lynx) onto Pixel 7a devices. As soon as I insert a sim card into the phone, the phone starts rebooting randomly and the phone will not ever connect to the network. The issue is very frequent with the AT&T and Verizon SIM cards. Little less frequent with the T-Mobile sim card, but still happens.
I am wondering if I am missing something or doing something wrong! Here are the steps I am following:
I have tried with all the Android 14 (lynx) releases from Oct 2023 to Jan 2024 and no luck! Any help would be greatly appreciated!
Update Log reports:
434-434 init pid-434 E Unable to set property 'persist.vendor.radio.call_waiting_for_sync_0' from uid:10082 gid:10082 pid:27559: SELinux permission check failed
1391-3611 ActivityManager system_server E Service ServiceRecord{96c9046 u0 com.shannon.imsservice/.ShannonImsService} in process ProcessRecord{2bda7ab 9540:com.shannon.imsservice/u0a82} not same as in map: ServiceRecord{eed0ddb u0 com.shannon.imsservice/.ShannonImsService}
16911-16928 SHANNON_IMS com.shannon.imsservice E 0057 [CONF] External configuration xml file not exist in vendor/etc. Name: sim_operator_list.xml (BaseConfigurationReader%getInputStreamVendor:293)
Upvotes: 0
Views: 391
Reputation: 21
Add next policies in dir device/google/gs201-sepolicy/:
File: system_ext/private/platform_app.te
set_prop(platform_app, shannon_ims_service_prop);
File: system_ext/private/property_contexts
persist.vendor.radio.call_waiting_for_sync_0 u:object_r:shannon_ims_service_prop:s0 exact int persist.vendor.radio.call_waiting_for_sync_1 u:object_r:shannon_ims_service_prop:s0 exact int
File: system_ext/public/property.te
system_public_prop(shannon_ims_service_prop)
Source: here
Upvotes: 1