blob: 3cde8aee80594cebea1d37e846a98c6a997eafcf [file] [log] [blame]
Narayan Kamathf3cad4f2017-06-20 13:28:11 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="com.android.cts.classloadersplitapp"
19 featureSplit="feature_b"
20 android:targetSandboxVersion="2">
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010021
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070022 <uses-split android:name="feature_a"/>
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010023
24 <application>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070025 <activity android:name=".feature_b.FeatureBActivity"
26 android:exported="true">
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010027 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070028 <action android:name="android.intent.action.MAIN"/>
29 <category android:name="android.intent.category.LAUNCHER"/>
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010030 </intent-filter>
31 </activity>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070032 <receiver android:name=".feature_b.FeatureBReceiver"
33 android:exported="true">
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010034 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070035 <action android:name="com.android.cts.classloadersplitapp.ACTION"/>
Narayan Kamathf3cad4f2017-06-20 13:28:11 +010036 </intent-filter>
37 </receiver>
38 </application>
39</manifest>