-
Notifications
You must be signed in to change notification settings - Fork 4
/
AndroidManifest.xml
72 lines (67 loc) · 3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.t3hh4xx0r.haxchat"
android:versionCode="6"
android:versionName="1.0.1.1" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.t3hh4xx0r.haxchat.activities.LoginActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize|stateVisible" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.activities.ChatMainActivity" >
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.activities.ChatPrivateActivity">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.preferences.PushFragment">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.activities.UserProfileActivity">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.activities.EditableUserProfileActivity">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.preferences.GeneralFragment">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.preferences.AlertFragment">
</activity>
<activity
android:name="com.t3hh4xx0r.haxchat.preferences.PreferencesActivity"
android:label="@string/preferences_title" >
</activity>
<service android:name="com.parse.PushService" />
<receiver android:name="com.parse.ParseBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
<receiver android:name="com.t3hh4xx0r.haxchat.parse.ChatReceiver" >
<intent-filter android:priority="420" >
<action android:name="com.t3hh4xx0r.haxchat.ACTION_CHAT_SENT" />
</intent-filter>
</receiver>
</application>
</manifest>