AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?><!-- 2 ~ SPDX-FileCopyrightText: 2023 microG Project Team 3 ~ SPDX-License-Identifier: Apache-2.0 4 --> 5 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 7 8 <application> 9 <service android:name=".AdvertisingIdService"> 10 <intent-filter> 11 <action android:name="com.google.android.gms.ads.identifier.service.START" /> 12 <category android:name="android.intent.category.DEFAULT" /> 13 </intent-filter> 14 </service> 15 </application> 16 </manifest>