• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
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 -->
7
8<manifest xmlns:android="http://schemas.android.com/apk/res/android"
9    package="org.chromium.memconsumer" android:versionCode="1"
10    android:versionName="1.0">
11
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>
22
23</manifest>
24