Chromium Code Reviews| 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> |