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

Side by Side Diff: platform_tools/android/apps/canvasproof/src/main/AndroidManifest.xml

Issue 1258123004: android/apps: Add CanvasProof App; (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-09-04 (Friday) 13:29:02 EDT Created 5 years, 3 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright 2015 Google Inc.
4
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <!-- BEGIN_INCLUDE(manifest) -->
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.skia.canvasproof"
11 android:versionCode="1"
12 android:versionName="1.0">
13 <uses-sdk android:minSdkVersion="9" />
14 <uses-feature android:glEsVersion="0x00020000" />
15 <application android:label="Canvas Proof">
16 <activity android:name="org.skia.canvasproof.CanvasProofActivity"
17 android:label="Canvas Proof"
18 android:configChanges="orientation|keyboardHidden"
19 android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
20 <meta-data android:name="android.app.lib_name"
21 android:value="canvasproof" />
22 <intent-filter>
23 <action android:name="android.intent.action.MAIN" />
24 <category android:name="android.intent.category.LAUNCHER" />
25 </intent-filter>
26 </activity>
27 </application>
28 </manifest>
29 <!-- END_INCLUDE(manifest) -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698