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) --> 30