-private to inner classes
[travelLog.git] / AndroidManifest.xml
blobfac06006b802c353e5d8873dc3ad692f8a4813ca
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="2"
21         android:versionName="0.2">
22         <application android:icon="@drawable/icon" android:label="@string/app_name"
23                 android:configChanges="orientation" android:windowSoftInputMode="adjustResize">
24                 <activity android:name="TravelLog" android:label="@string/app_name">
25                         <intent-filter>
26                                 <action android:name="android.intent.action.MAIN" />
27                                 <category android:name="android.intent.category.LAUNCHER" />
28                         </intent-filter>
29                 </activity>
30                 <activity android:name="TravelLog$Preferences" />
31                 <!-- The application's publisher ID assigned by AdMob -->
32                 <meta-data android:name="ADMOB_PUBLISHER_ID" android:value="a14ae9c6fae6c50" />
33         </application>
34         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
35         <supports-screen android:largeScreens="true" android:normalScreens="true"
36                 android:smallScreens="true" android:anyDensity="true"/>
37         <!-- AdMob SDK permissions -->
38         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
39         <uses-permission android:name="android.permission.INTERNET" />
40         <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
41 </manifest>