-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
49 lines (44 loc) · 3.77 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0" package="com.allplayers.android">
<uses-sdk android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/launch_icon" android:label="@string/app_name" android:debuggable="true">
<uses-library android:name="com.google.android.maps" android:required="false"/>
<activity android:name="Login" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- <activity android:name="Login" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
replaced the FirstScreen page with Login (moved search groups to Login) -->
<activity android:name="MainScreen" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="MessageActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="PhotosActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="EventsActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="AccountActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<!-- Start Find Groups Activities -->
<activity android:name="FindGroupsActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="SearchGroupsListActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<!-- End Find Groups Activities -->
<!-- Start Group Activities -->
<activity android:name="GroupsActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="GroupPageActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="GroupMembersActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="GroupEventsActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="EventDisplayActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="GroupAlbumsActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="AlbumPhotosActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="PhotoDisplayActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<!-- End Group Activities -->
<!-- Start Message Activities -->
<activity android:name="MessageInbox" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="MessageSent" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="MessageViewSingle" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="MessageReply" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="MessageThread" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"/>
<!-- End Message Activities -->
</application>
</manifest>