Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(785)

Side by Side Diff: tools/android/memconsumer/java/AndroidManifest.xml

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/android/md5sum/md5sum.gyp ('k') | tools/android/memconsumer/java/res/drawable/icon.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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" andr oid: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>
OLDNEW
« no previous file with comments | « tools/android/md5sum/md5sum.gyp ('k') | tools/android/memconsumer/java/res/drawable/icon.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698