Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / tools / android / memconsumer / java / AndroidManifest.xml
blobc7f12e42d5abce60200a4299cc7f3c208015b27a
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
4      Use of this source code is governed by a BSD-style license that can be
5      found in the LICENSE file.
6  -->
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9     package="org.chromium.memconsumer" android:versionCode="1"
10     android:versionName="1.0">
12     <application
13             android:label="MemConsumer">
14         <activity android:name=".MemConsumer" android:icon="@drawable/icon" android:launchMode="singleTop">
15             <intent-filter>
16                 <action android:name="android.intent.action.MAIN"/>
17                 <category android:name="android.intent.category.LAUNCHER"/>
18             </intent-filter>
19         </activity>
20         <service android:name="ResidentService" android:enabled="true" />
21     </application>
23 </manifest>