-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
66 lines (63 loc) · 2.81 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
66 lines (63 loc) · 2.81 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.attendr.app"
android:versionCode="1"
android:versionName=".5" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light.DarkActionBar" >
<activity
android:name="com.attendr.app.SplashActivity"
android:theme="@style/Theme.Splash"
android:noHistory="true">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.attendr.app.MainActivity" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.attendr.app.RegisterActivity"
android:parentActivityName="com.attendr.app.SplashActivity"
android:theme="@style/RegisterTheme"
android:noHistory="true">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.attendr.app.SplashActivity" />
</activity>
<activity
android:name="com.attendr.app.EventListActivity"
android:parentActivityName="com.attendr.app.RegisterActivity"
android:theme="@style/AppTheme"
android:configChanges="keyboardHidden|orientation|screenSize">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.attendr.app.SplashActivity" />
</activity>
<activity
android:name="com.attendr.app.EventActivity"
android:label="@string/app_name"
android:windowSoftInputMode="stateHidden"
android:configChanges="keyboardHidden|orientation|screenSize">
</activity>
<activity
android:name="com.attendr.app.EventPostViewActivity"
android:parentActivityName="com.attendr.app.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.attendr.app.MainActivity" />
</activity>
<meta-data android:value="@string/app_id" android:name="com.facebook.sdk.ApplicationId"/>
<activity android:name="com.facebook.LoginActivity"></activity>
</application>
</manifest>