-
Notifications
You must be signed in to change notification settings - Fork 832
/
AndroidManifest.xml
40 lines (32 loc) · 1.63 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stfalcon.chatkit.sample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/GreenTheme">
<activity
android:name=".features.main.MainActivity"
android:theme="@style/BlueThemeNoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".features.demo.def.DefaultMessagesActivity"
android:theme="@style/BlueTheme" />
<activity
android:name=".features.demo.def.DefaultDialogsActivity"
android:theme="@style/BlueTheme" />
<activity android:name=".features.demo.styled.StyledMessagesActivity" />
<activity android:name=".features.demo.styled.StyledDialogsActivity" />
<activity android:name=".features.demo.custom.layout.CustomLayoutDialogsActivity" />
<activity android:name=".features.demo.custom.layout.CustomLayoutMessagesActivity" />
<activity android:name=".features.demo.custom.holder.CustomHolderDialogsActivity" />
<activity android:name=".features.demo.custom.holder.CustomHolderMessagesActivity" />
<activity
android:name=".features.demo.custom.media.CustomMediaMessagesActivity"
android:theme="@style/BlueTheme" />
</application>
</manifest>