2011-05-22 18:28:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.architects.findme"
|
|
|
|
|
android:versionCode="1"
|
2011-06-21 00:09:39 +02:00
|
|
|
android:versionName="0.1.8">
|
2011-05-22 18:28:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
2011-06-21 00:09:39 +02:00
|
|
|
|
|
|
|
|
<uses-library android:name="com.google.android.maps" />
|
|
|
|
|
|
|
|
|
|
<activity android:name=".Main"
|
2011-05-22 18:28:21 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2011-06-21 00:09:39 +02:00
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".FindMe"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
2011-05-22 18:28:21 +02:00
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Registration"
|
|
|
|
|
android:label="Registration"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Login"
|
|
|
|
|
android:label="Login"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Nearby"
|
|
|
|
|
android:label="Nearby"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Friends"
|
|
|
|
|
android:label="Friends"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Chat"
|
|
|
|
|
android:label="Chat"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Search"
|
|
|
|
|
android:label="Search"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
2011-06-18 01:00:57 +02:00
|
|
|
<activity android:name=".FindMeMenu"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="Menu"
|
2011-06-17 23:20:13 +02:00
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
2011-06-20 02:19:26 +02:00
|
|
|
<activity android:name=".Messages"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="Messages"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Conversation"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="Conversation"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
</activity>
|
2011-06-21 00:09:39 +02:00
|
|
|
<activity android:name=".MapNearby"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="Nearby"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
|
|
|
</activity>
|
|
|
|
|
<activity android:name=".Profile"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="Profile"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
|
|
|
</activity>
|
2011-05-22 18:28:21 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
</manifest>
|