blob: 9626599abb01007a4332a1e75cda772870e42560 [file] [log] [blame]
Nikita Ioffe7ffb0142023-02-01 22:22:23 +00001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2023 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 package="com.android.microdroid.vmshare_app">
18 <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" />
Inseob Kim89b24592024-02-23 18:59:43 +090019 <uses-permission android:name="android.permission.USE_CUSTOM_VIRTUAL_MACHINE" />
Nikita Ioffe7ffb0142023-02-01 22:22:23 +000020
21 <uses-feature android:name="android.software.virtualization_framework"
22 android:required="false" />
23
Nikita Ioffebac2bcf2023-02-10 00:09:20 +000024 <application>
25 <service android:name="com.android.microdroid.test.sharevm.VmShareServiceImpl"
26 android:exported="true">
27 <intent-filter>
28 <action android:name="com.android.microdroid.test.sharevm.VmShareService"/>
29 </intent-filter>
30 </service>
31 </application>
32
Nikita Ioffe7ffb0142023-02-01 22:22:23 +000033</manifest>