29 lines
1.5 KiB
XML
29 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<application
|
|
android:name=".ChatPlatformApp"
|
|
android:allowBackup="true"
|
|
android:icon="@android:drawable/ic_menu_send"
|
|
android:roundIcon="@android:drawable/ic_menu_send"
|
|
android:label="@string/app_name"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:theme="@style/Theme.ChatPlatform">
|
|
<activity android:name=".presentation.login.LoginActivity" android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".presentation.MainActivity" android:exported="false" />
|
|
<activity android:name=".presentation.chat.ChatActivity" android:exported="false" />
|
|
<activity android:name=".presentation.agent.AgentChatActivity" android:exported="false" />
|
|
<service android:name=".fcm.ChatFirebaseMessagingService" android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
</manifest>
|