/ play-services-recaptcha / core / src / main / AndroidManifest.xml
AndroidManifest.xml
 1  <?xml version="1.0" encoding="utf-8"?>
 2  <!--
 3    ~ SPDX-FileCopyrightText: 2021 microG Project Team
 4    ~ SPDX-License-Identifier: Apache-2.0
 5    -->
 6  
 7  <manifest xmlns:android="http://schemas.android.com/apk/res/android">
 8  
 9      <application>
10          <!-- This service is in :ui process because it may spawn a web view. See https://crbug.com/558377 -->
11          <service android:name="org.microg.gms.recaptcha.RecaptchaService"
12                   android:process=":ui">
13              <intent-filter>
14                  <action android:name="com.google.android.gms.recaptcha.service.START"/>
15              </intent-filter>
16          </service>
17      </application>
18  </manifest>