OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="com.skia" |
| 4 android:versionCode="1" |
| 5 android:versionName="1.0"> |
| 6 <uses-sdk android:minSdkVersion="14" /> |
| 7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 8 <uses-permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAG
E" /> |
| 9 <!-- Needed to add to the download manager. --> |
| 10 <uses-permission android:name="android.permission.INTERNET" /> |
| 11 <application android:label="SkiaAndroid"> |
| 12 <activity android:name=".SkiaSampleActivity" |
| 13 android:theme="@android:style/Theme.Holo.Light" |
| 14 android:configChanges="orientation|screenSize" |
| 15 android:label="@string/app_name"> |
| 16 <intent-filter> |
| 17 <action android:name="android.intent.action.MAIN" /> |
| 18 <category android:name="android.intent.category.LAUNCHER" /> |
| 19 </intent-filter> |
| 20 </activity> |
| 21 </application> |
| 22 </manifest> |
OLD | NEW |