| 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.adblockplus.libadblockplus.android.webviewapp"> | |
| 4 | |
| 5 <uses-sdk | |
| 6 android:minSdkVersion="21" | |
| 7 android:targetSdkVersion="21"/> | |
| 8 | |
| 9 <uses-permission android:name="android.permission.INTERNET"/> | |
| 10 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
| 11 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
| 12 | |
| 13 <application | |
| 14 android:icon="@drawable/icon" | |
| 15 android:name=".Application" | |
| 16 android:supportsRtl="true" | |
| 17 android:label="@string/app_name"> | |
| 18 | |
| 19 <!-- main --> | |
| 20 <activity | |
| 21 android:name=".MainActivity" | |
| 22 android:label="@string/app_name" | |
| 23 android:launchMode="singleTop"> | |
| 24 <intent-filter> | |
| 25 <action android:name="android.intent.action.MAIN"/> | |
| 26 | |
| 27 <category android:name="android.intent.category.LAUNCHER"/> | |
| 28 </intent-filter> | |
| 29 </activity> | |
| 30 | |
| 31 <!-- settings --> | |
| 32 <activity | |
| 33 android:name=".SettingsActivity" | |
| 34 android:label="@string/settings_name" | |
| 35 android:theme="@android:style/Theme.DeviceDefault.Light"/> | |
| 36 </application> | |
| 37 | |
| 38 </manifest> | |
| OLD | NEW |