/ play-services-appinvite / core / src / main / AndroidManifest.xml
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      xmlns:tools="http://schemas.android.com/tools">
 8  
 9      <application>
10          <service
11              android:name="org.microg.gms.appinivite.AppInviteService"
12              android:exported="true">
13              <intent-filter>
14                  <action android:name="com.google.android.gms.appinvite.service.START" />
15                  <category android:name="android.intent.category.DEFAULT" />
16              </intent-filter>
17          </service>
18  
19          <activity
20              android:name="org.microg.gms.appinivite.AppInviteActivity"
21              android:excludeFromRecents="true"
22              android:process=":ui"
23              android:exported="true"
24              android:theme="@style/Theme.AppCompat.Light.Dialog.NoActionBar">
25              <intent-filter
26                  android:priority="900"
27                  android:autoVerify="true">
28                  <action android:name="android.intent.action.VIEW" />
29                  <action android:name="android.nfc.action.NDEF_DISCOVERED" />
30  
31                  <category android:name="android.intent.category.BROWSABLE" />
32                  <category android:name="android.intent.category.DEFAULT" />
33  
34                  <data android:scheme="https" />
35                  <data android:scheme="http" />
36                  <data android:host="*.app.goo.gl" />
37                  <data android:pathPrefix="/" />
38              </intent-filter>
39              <intent-filter>
40                  <action android:name="com.google.firebase.dynamiclinks.VIEW_DYNAMIC_LINK" />
41  
42                  <category android:name="android.intent.category.BROWSABLE" />
43                  <category android:name="android.intent.category.DEFAULT" />
44  
45                  <data android:scheme="https" />
46                  <data android:scheme="http" />
47              </intent-filter>
48          </activity>
49      </application>
50  </manifest>