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

Unified Diff: samples/openglui/android-blasteroids/AndroidManifest.xml

Issue 13345002: Cleaned up OpenGLUI samples and added Blasteroids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « runtime/embedders/openglui/openglui_embedder.gypi ('k') | samples/openglui/android-blasteroids/android.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/openglui/android-blasteroids/AndroidManifest.xml
===================================================================
--- samples/openglui/android-blasteroids/AndroidManifest.xml (revision 0)
+++ samples/openglui/android-blasteroids/AndroidManifest.xml (revision 0)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.google.dartndk"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-feature android:glEsVersion="0x00020000" />
+
+ <uses-sdk
+ android:minSdkVersion="10"
+ android:targetSdkVersion="16" />
+
+ <application
+ android:allowBackup="true"
+ android:hasCode="true"
+ android:debuggable="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="DummyActivity"
+ android:label="@string/app_name">
+ <meta-data
+ android:name="android.app.lib_name"
+ android:value="android_embedder" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>
« no previous file with comments | « runtime/embedders/openglui/openglui_embedder.gypi ('k') | samples/openglui/android-blasteroids/android.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698