OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="org.dartlang.example.dart" |
| 4 android:versionCode="1" |
| 5 android:versionName="1.0"> |
| 6 <uses-feature android:glEsVersion="0x00020000" android:required="true" /> |
| 7 <application android:label="@string/app_name" android:icon="@drawable/ic_lau
ncher"> |
| 8 <activity android:name="DartActivity" |
| 9 android:configChanges="keyboardHidden|orientation|screenSize" |
| 10 android:label="@string/app_name"> |
| 11 <intent-filter> |
| 12 <action android:name="android.intent.action.MAIN" /> |
| 13 <category android:name="android.intent.category.LAUNCHER" /> |
| 14 </intent-filter> |
| 15 </activity> |
| 16 </application> |
| 17 </manifest> |
OLD | NEW |