| 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.webviewapp" | 
|  | 4           android:versionCode="1" | 
|  | 5           android:versionName="1.0"> | 
|  | 6 | 
|  | 7     <uses-sdk android:minSdkVersion="17"/> | 
|  | 8 | 
|  | 9     <application | 
|  | 10         android:icon="@drawable/icon" | 
|  | 11         android:label="@string/app_name"> | 
|  | 12 | 
|  | 13         <!-- main --> | 
|  | 14         <activity android:name=".MainActivity" | 
|  | 15                   android:label="@string/app_name" | 
|  | 16                   android:launchMode="singleTop"> | 
|  | 17             <intent-filter> | 
|  | 18                 <action android:name="android.intent.action.MAIN" /> | 
|  | 19                 <category android:name="android.intent.category.LAUNCHER" /> | 
|  | 20             </intent-filter> | 
|  | 21         </activity> | 
|  | 22     </application> | 
|  | 23 | 
|  | 24     <uses-permission android:name="android.permission.INTERNET"/> | 
|  | 25 | 
|  | 26 </manifest> | 
| OLD | NEW | 
|---|