android app
This commit is contained in:
27
saars/android-app/app/src/main/AndroidManifest.xml
Normal file
27
saars/android-app/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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: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>
|
||||
Reference in New Issue
Block a user