1 <?xml version="1.0" encoding="utf-8"?>
3 Copyright (C) 2009 Felix Bechstein
6 This file is part of AdBlock. This program is free software; you can
7 redistribute it and/or modify it under the terms of the GNU General
8 Public License as published by the Free Software Foundation; either
9 version 3 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details. You should have received a
16 copy of the GNU General Public License along with this program; If
17 not, see <http://www.gnu.org/licenses/>.
19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 package="de.ub0r.android.adBlock" android:versionName="0.4"
21 android:versionCode="4">
22 <application android:icon="@drawable/icon" android:label="@string/app_name"
23 android:debuggable="true" android:configChanges="orientation"
24 android:windowSoftInputMode="adjustResize">
25 <activity android:name="AdBlock" android:label="@string/app_name">
27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.LAUNCHER" />
31 <service android:name="Proxy" android:exported="false" />
32 <receiver android:name="ProxyStarter">
34 <action android:name="android.intent.action.BOOT_COMPLETED" />
35 <category android:name="android.intent.category.HOME" />
39 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="6" />
40 <supports-screen android:largeScreens="true" android:normalScreens="true"
41 android:smallScreens="true" android:anyDensity="true"/>
42 <uses-permission android:name="android.permission.INTERNET" />