bump to v0.3.3
[travelLog.git] / AndroidManifest.xml
blob734b61be784aae1e9b387f34b35ce5173b646daa
1 <?xml version="1.0" encoding="utf-8"?>
2         <!--
3                 Copyright (C) 2009 Felix Bechstein
4         -->
5         <!--
6                 This file is part of TravelLog. 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.travelLog" android:versionCode="33"
21         android:versionName="0.3.3">
22         <application android:icon="@drawable/icon" android:label="@string/app_name"
23                 android:configChanges="orientation" android:windowSoftInputMode="adjustResize"
24                 android:debuggable="true">
25                 <activity android:name="TravelLog" 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="TravelLog$Preferences" />
32                 <!-- The application's publisher ID assigned by AdMob -->
33                 <meta-data android:name="ADMOB_PUBLISHER_ID" android:value="a14ae9c6fae6c50" />
34         </application>
35         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
36         <supports-screen android:largeScreens="true" android:normalScreens="true"
37                 android:smallScreens="true" android:anyDensity="true"/>
38         <!-- AdMob SDK permissions -->
39         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
40         <uses-permission android:name="android.permission.INTERNET" />
41         <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
42 </manifest>