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

Unified 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: swipe down to switch views Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: platform_tools/android/apps/canvasproof/src/main/AndroidManifest.xml
diff --git a/platform_tools/android/apps/canvasproof/src/main/AndroidManifest.xml b/platform_tools/android/apps/canvasproof/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..af9003dd51fc9d7d1cfcbc04bd1f9f4a6fe2e056
--- /dev/null
+++ b/platform_tools/android/apps/canvasproof/src/main/AndroidManifest.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright 2015 Google Inc.
+
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file.
+-->
+<!-- BEGIN_INCLUDE(manifest) -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.skia.canvasproof"
tomhudson 2015/08/24 20:10:25 You're building from org/skia/canvasproof, but the
hal.canary 2015/08/31 21:16:56 Done.
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-sdk android:minSdkVersion="9" />
+ <uses-feature android:glEsVersion="0x00020000" />
+ <application android:label="Canvas Proof">
+ <activity android:name="org.skia.canvasproof.CanvasProofActivity"
+ android:label="Canvas Proof"
+ android:configChanges="orientation|keyboardHidden"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
+ <meta-data android:name="android.app.lib_name"
+ android:value="canvasproof" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>
+<!-- END_INCLUDE(manifest) -->

Powered by Google App Engine
This is Rietveld 408576698