Merge branch 'master' of github.com:felixb/callmeter
[CallMeterNG.git] / AndroidManifest.xml
blob456a60e3bf9bdd51e485d86a533ba6afd7b3aab7
1 <?xml version="1.0" encoding="utf-8"?>
2         <!--
3                 Copyright (C) 2009 Felix Bechstein
4         -->
5         <!--
6                 This file is part of Call Meter NG. This program is free software; you
7                 can redistribute it and/or modify it under the terms of the GNU
8                 General Public License as published by the Free Software Foundation;
9                 either version 3 of the License, or (at your option) any later
10                 version.
11         -->
12         <!--
13                 This program is distributed in the hope that it will be useful, but
14                 WITHOUT ANY WARRANTY; without even the implied warranty of
15                 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16                 General Public License for more details. You should have received a
17                 copy of the GNU General Public License along with this program; If
18                 not, see <http://www.gnu.org/licenses/>.
19         -->
20 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
21         package="de.ub0r.de.android.callMeterNG" android:versionName="1.1.2"
22         android:versionCode="112">
23         <application android:icon="@drawable/sym_call_outgoing" android:label="@string/app_name"
24                 android:debuggable="true">
25                 <activity android:name="CallMeter" 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                 <activity android:name="Preferences" />
32                 <activity android:name="ExcludePeople" />
33                 <activity android:name="ResetData" />
34                 <receiver android:name="CMBroadcastReceiver">
35                         <intent-filter>
36                                 <action android:name="android.intent.action.BOOT_COMPLETED" />
37                                 <category android:name="android.intent.category.HOME" />
38                         </intent-filter>
39                 </receiver>
40                 <!-- The application's publisher ID assigned by AdMob -->
41                 <meta-data android:value="a14a439b2045eb6" android:name="ADMOB_PUBLISHER_ID" />
42         </application>
43         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
44         <supports-screen android:largeScreens="true"
45                 android:normalScreens="true" android:smallScreens="true"
46                 android:anyDensity="true" />
47         <uses-permission android:name="android.permission.READ_CONTACTS" />
48         <uses-permission android:name="android.permission.READ_SMS" />
49         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
50         <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
51         <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
52         <!-- AdMob SDK permissions -->
53         <uses-permission android:name="android.permission.INTERNET" />
54         <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
55 </manifest>