1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3          package="com.android.apex.cts.shim">
4    <!-- APEX does not have classes.dex -->
5    <application android:hasCode="false"/>
6    <install-constraints>
7        <!-- PackageManager will allow installation if at least one of the fingerprint-prefixes
8             matches the build fingerprint of a device.
9             Since one of them is an empty string, the apex with these constraints can be installed
10             on all devices as long as the packagename is allowlisted by the system.
11         -->
12        <fingerprint-prefix android:value="does/not/exist"/>
13        <fingerprint-prefix android:value=""/>
14    </install-constraints>
15</manifest>
16