| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="com.google.dartndk" | 3 package="com.google.dartndk" |
| 4 android:versionCode="1" | 4 android:versionCode="1" |
| 5 android:versionName="1.0" > | 5 android:versionName="1.0" > |
| 6 | 6 |
| 7 <uses-feature android:glEsVersion="0x00020000" /> | 7 <uses-feature android:glEsVersion="0x00020000" /> |
| 8 | 8 |
| 9 <uses-sdk | 9 <uses-sdk |
| 10 android:minSdkVersion="10" | 10 android:minSdkVersion="10" |
| 11 android:targetSdkVersion="16" /> | 11 android:targetSdkVersion="16" /> |
| 12 | 12 |
| 13 <application | 13 <application |
| 14 android:allowBackup="true" | 14 android:allowBackup="true" |
| 15 android:hasCode="true" | 15 android:hasCode="true" |
| 16 android:debuggable="true" | 16 android:debuggable="true" |
| 17 android:icon="@drawable/ic_launcher" | 17 android:icon="@drawable/ic_launcher" |
| 18 android:label="@string/app_name" | 18 android:label="@string/app_name" |
| 19 android:theme="@style/AppTheme" > | 19 android:theme="@style/AppTheme" > |
| 20 <activity | 20 <activity |
| 21 android:name="DummyActivity" | 21 android:name="DummyActivity" |
| 22 android:label="@string/app_name" | 22 android:label="@string/app_name" |
| 23 android:screenOrientation="portrait" | 23 android:screenOrientation="portrait" |
| 24 android:configChanges="keyboardHidden|orientation|screenSize" > | 24 android:configChanges="keyboardHidden|orientation|screenSize" > |
| 25 <meta-data | 25 <meta-data |
| 26 android:name="android.app.lib_name" | 26 android:name="android.app.lib_name" |
| 27 android:value="DartNDK" /> | 27 android:value="android_embedder" /> |
| 28 <intent-filter> | 28 <intent-filter> |
| 29 <action android:name="android.intent.action.MAIN" /> | 29 <action android:name="android.intent.action.MAIN" /> |
| 30 <category android:name="android.intent.category.LAUNCHER" /> | 30 <category android:name="android.intent.category.LAUNCHER" /> |
| 31 </intent-filter> | 31 </intent-filter> |
| 32 </activity> | 32 </activity> |
| 33 </application> | 33 </application> |
| 34 </manifest> | 34 </manifest> |
| OLD | NEW |