sm6150-common: overlay: Disable intrusive gms components

* these processes were not allowed to run in background and yet they still persist everytime causing logspam and unnecessary broadcast, we may want to disable "GmsIntentOperationService" but some users on xda reported broken notifications on stuffs like google keep and maybe other google apps that relies on GmsIntentOperationService broadcasts.

07-24 09:29:26.041  2997  5548 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
07-24 09:29:26.042  2879  2879 I Zygote  : Process 8201 exited due to signal 9 (Killed)
07-24 09:29:26.043  2997  3023 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver

Change-Id: I17c1ab2bfb98375d9b5a6c6de91776244b12cf52
Signed-off-by: dlwlrma123 <alexfinhart@gmail.com>
Signed-off-by: therealmharc <therealmharc@gmail.com>
This commit is contained in:
dlwlrma123
2022-09-09 23:19:12 +02:00
committed by therealmharc
parent 283238a868
commit 996e6fb49c

View File

@@ -294,4 +294,15 @@
<!-- Whether the device supports Smart Pixels -->
<bool name="config_supportSmartPixels">true</bool>
<string-array name="config_deviceDisabledComponents" translatable="false">
<item>com.google.android.gms/com.google.android.gms.nearby.discovery.service.DiscoveryService</item>
<item>com.google.android.gms/com.google.android.gms.nearby.messages.service.NearbyMessagesService</item>
<item>com.google.android.gms/.analytics.AnalyticsService</item>
<item>com.google.android.gms/.dck.service.UserAuthMonitorService</item>
<item>com.google.android.gms/.chimera.GmsIntentOperationService</item>
<item>com.google.android.gms/com.google.android.gms.mdm.receivers.MdmDeviceAdminReceiver</item>
<item>com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver</item>
<item>com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver</item>
</string-array>
</resources>