1<?xml version="1.0" encoding="utf-8"?><!--
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15-->
16
17<!-- TODO(b/114236837): use its own Settings Activity -->
18<autofill-service xmlns:android="http://schemas.android.com/apk/res/android"
19    android:settingsActivity="com.example.android.autofill.service.settings.SettingsActivity">
20
21  <!-- sample app -->
22  <compatibility-package
23    android:name="com.example.android.autofill.app"
24    android:maxLongVersionCode="10000000000"/>
25
26  <!-- well-known browswers, alphabetical order -->
27  <compatibility-package
28    android:name="com.android.chrome"
29    android:maxLongVersionCode="10000000000"/>
30  <compatibility-package
31    android:name="com.chrome.beta"
32    android:maxLongVersionCode="10000000000"/>
33  <compatibility-package
34    android:name="com.chrome.dev"
35    android:maxLongVersionCode="10000000000"/>
36  <compatibility-package
37    android:name="com.chrome.canary"
38    android:maxLongVersionCode="10000000000"/>
39  <compatibility-package
40    android:name="com.microsoft.emmx"
41    android:maxLongVersionCode="10000000000"/>
42  <compatibility-package
43    android:name="com.opera.browser"
44    android:maxLongVersionCode="10000000000"/>
45  <compatibility-package
46    android:name="com.opera.browser.beta"
47    android:maxLongVersionCode="10000000000"/>
48  <compatibility-package
49    android:name="com.opera.mini.native"
50    android:maxLongVersionCode="10000000000"/>
51  <compatibility-package
52    android:name="com.opera.mini.native.beta"
53    android:maxLongVersionCode="10000000000"/>
54  <compatibility-package
55    android:name="com.sec.android.app.sbrowser"
56    android:maxLongVersionCode="10000000000"/>
57  <compatibility-package
58    android:name="com.sec.android.app.sbrowser.beta"
59    android:maxLongVersionCode="10000000000"/>
60  <compatibility-package
61    android:name="org.chromium.chrome"
62    android:maxLongVersionCode="10000000000"/>
63  <compatibility-package
64    android:name="org.mozilla.fennec_aurora"
65    android:maxLongVersionCode="10000000000"/>
66  <compatibility-package
67    android:name="org.mozilla.firefox"
68    android:maxLongVersionCode="10000000000"/>
69  <compatibility-package
70    android:name="org.mozilla.firefox_beta"
71    android:maxLongVersionCode="10000000000"/>
72</autofill-service>
73