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

Side by Side Diff: samples/openglui/android-webgl-raytrace/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, 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.google.dartndk"
4 android:versionCode="1"
5 android:versionName="1.0" >
6
7 <uses-feature android:glEsVersion="0x00020000" />
8
9 <uses-sdk
10 android:minSdkVersion="10"
11 android:targetSdkVersion="16" />
12
13 <application
14 android:allowBackup="true"
15 android:hasCode="true"
16 android:debuggable="true"
17 android:icon="@drawable/ic_launcher"
18 android:label="@string/app_name"
19 android:theme="@style/AppTheme" >
20 <activity
21 android:name="DummyActivity"
22 android:label="@string/app_name">
23 <meta-data
24 android:name="android.app.lib_name"
25 android:value="android_embedder" />
26 <intent-filter>
27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.LAUNCHER" />
29 </intent-filter>
30 </activity>
31 </application>
32 </manifest>
OLDNEW
« no previous file with comments | « samples/openglui/android-canvas-tests/ic_launcher.png-xhdpi.hex ('k') | samples/openglui/android-webgl-raytrace/android.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698