xref: /aosp_15_r20/system/apex/tests/testdata/AndroidManifest.xml (revision 33f3758387333dbd2962d7edbd98681940d895da)
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3          package="com.android.apex.test">
4    <!-- APEX does not have classes.dex -->
5    <application android:hasCode="false">
6        <apex-system-service
7            android:name="com.android.apex.test.ApexSystemService"
8            android:path="/apex/com.android.apex.test/javalib/fake.jar"
9            android:minSdkVersion="30"/>
10
11        <!-- Always inactive system service, since maxSdkVersion is low -->
12        <apex-system-service
13            android:name="com.android.apex.test.OldApexSystemService"
14            android:path="/apex/com.android.apex.test/javalib/fake.jar"
15            android:minSdkVersion="1"
16            android:maxSdkVersion="1"
17        />
18
19        <!-- Always inactive system service, since minSdkVersion is high -->
20        <apex-system-service
21            android:name="com.android.apex.test.NewApexSystemService"
22            android:path="/apex/com.android.apex.test/javalib/fake.jar"
23            android:minSdkVersion="999999"
24        />
25    </application>
26</manifest>
27