move code to github
[otpdroid.git] / AndroidManifest.xml
blobbecfb42b00006120c3d93b36617c6d6ce97d2c5b
1 <?xml version="1.0" encoding="utf-8"?>
2         <!--
3                 Copyright (C) 2009 Felix Bechstein
4         -->
5 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
6         android:versionCode="140" android:versionName="1.4" package="de.ub0r.android.otpdroid">
7         <application android:icon="@drawable/icon" android:label="@string/app_name"
8                 android:configChanges="orientation|keyboard|keyboardHidden|fontScale"
9                 android:windowSoftInputMode="adjustResize" android:debuggable="true">
10                 <activity android:label="@string/app_name" android:name="OTPdroid">
11                         <intent-filter>
12                                 <action android:name="android.intent.action.MAIN" />
13                                 <category android:name="android.intent.category.LAUNCHER" />
14                         </intent-filter>
15                 </activity>
16                 <activity android:name=".Preferences" android:label="@string/app_name" />
17         </application>
18         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
19         <supports-screen android:largeScreens="true"
20                 android:normalScreens="true" android:smallScreens="true"
21                 android:anyDensity="true" />
22         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
23 </manifest>