bump to v0.5
[adBlock.git] / AndroidManifest.xml
blobc01545a5d94fd5d76798b2280083b4b215dc0413
1 <?xml version="1.0" encoding="utf-8"?>
2         <!--
3                 Copyright (C) 2009 Felix Bechstein
4         -->
5         <!--
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.
10         -->
11         <!--
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/>.
18         -->
19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
20         package="de.ub0r.android.adBlock" android:versionName="0.5"
21         android:versionCode="5">
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">
26                         <intent-filter>
27                                 <action android:name="android.intent.action.MAIN" />
28                                 <category android:name="android.intent.category.LAUNCHER" />
29                         </intent-filter>
30                 </activity>
31                 <service android:name="Proxy" android:exported="false" />
32                 <receiver android:name="ProxyStarter">
33                         <intent-filter>
34                                 <action android:name="android.intent.action.BOOT_COMPLETED" />
35                                 <category android:name="android.intent.category.HOME" />
36                         </intent-filter>
37                 </receiver>
38         </application>
39         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
40         <supports-screen android:largeScreens="true" android:normalScreens="true"
41                 android:smallScreens="true" android:anyDensity="true"/>
42         <uses-permission android:name="android.permission.INTERNET" />
43 </manifest>