| 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.skia" | 3 package="com.skia" |
| 4 android:versionCode="1" | 4 android:versionCode="1" |
| 5 android:versionName="1.0"> | 5 android:versionName="1.0"> |
| 6 <uses-sdk android:minSdkVersion="14" /> | 6 <uses-sdk android:minSdkVersion="14" /> |
| 7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | 7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 8 <uses-permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAG
E" /> | 8 <uses-permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAG
E" /> |
| 9 <!-- Needed to add to the download manager. --> | 9 <!-- Needed to add to the download manager. --> |
| 10 <uses-permission android:name="android.permission.INTERNET" /> | 10 <uses-permission android:name="android.permission.INTERNET" /> |
| 11 <application android:label="SkiaAndroid"> | 11 <application android:label="SkiaAndroid"> |
| 12 <receiver android:name=".SkiaReceiver" android:enabled="true"> | |
| 13 <intent-filter> | |
| 14 <action android:name="com.skia.intent.action.LAUNCH_SKIA" /> | |
| 15 </intent-filter> | |
| 16 </receiver> | |
| 17 <service android:name=".SkiaIntentService" | |
| 18 android:process=":skia_native"> | |
| 19 </service> | |
| 20 <activity android:name=".SkiaSampleActivity" | 12 <activity android:name=".SkiaSampleActivity" |
| 21 android:theme="@android:style/Theme.Holo.Light" | 13 android:theme="@android:style/Theme.Holo.Light" |
| 22 android:configChanges="orientation|screenSize" | 14 android:configChanges="orientation|screenSize" |
| 23 android:label="@string/app_name"> | 15 android:label="@string/app_name"> |
| 24 <intent-filter> | 16 <intent-filter> |
| 25 <action android:name="android.intent.action.MAIN" /> | 17 <action android:name="android.intent.action.MAIN" /> |
| 26 <category android:name="android.intent.category.LAUNCHER" /> | 18 <category android:name="android.intent.category.LAUNCHER" /> |
| 27 </intent-filter> | 19 </intent-filter> |
| 28 </activity> | 20 </activity> |
| 29 </application> | 21 </application> |
| 30 </manifest> | 22 </manifest> |
| OLD | NEW |