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

Unified Diff: samples/android_sample/AndroidManifest.xml

Issue 11434046: Android rayshader sample. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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: samples/android_sample/AndroidManifest.xml
===================================================================
--- samples/android_sample/AndroidManifest.xml (revision 0)
+++ samples/android_sample/AndroidManifest.xml (revision 0)
@@ -0,0 +1,33 @@
+<?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"
vsm 2012/11/30 17:00:30 We should probably give this a better name, but we
gram 2012/11/30 18:01:31 It is a dummy in that it never gets used; it just
vsm 2012/11/30 18:38:31 Your call. On 2012/11/30 18:01:31, gram wrote:
gram 2012/11/30 22:09:22 I'll leave it for now.
+ android:label="@string/app_name" >
+ <meta-data
+ android:name="android.app.lib_name"
+ android:value="DartNDK" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>

Powered by Google App Engine
This is Rietveld 408576698