105 lines
4.6 KiB
XML
105 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="32" />
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
<application>
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.component.imagevideobrowse.ImageVideoBrowseActivity"
|
|
|
|
android:configChanges="screenSize|keyboardHidden|orientation" />
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.FriendProfileActivity"
|
|
android:screenOrientation="portrait" />
|
|
<!-- **************** Classic UI Start **************** -->
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.MessageReplyDetailActivity"
|
|
android:windowSoftInputMode="adjustResize|stateHidden"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.TUIForwardChatActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.TUIC2CChatActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.TUIGroupChatActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustNothing|stateHidden"/>
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.MessageReceiptDetailActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.component.camera.CameraActivity"
|
|
android:screenOrientation="portrait" />
|
|
|
|
<activity android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.GroupInfoActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity android:name="com.tencent.qcloud.tuikit.tuichat.classicui.page.GroupNoticeActivity"
|
|
android:screenOrientation="portrait" />
|
|
<!-- **************** Classic UI End **************** -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- **************** Minimalist UI Start **************** -->
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.widget.messagepopmenu.ChatPopActivity"
|
|
android:theme="@style/ChatTransparentPopActivityStyle"
|
|
|
|
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.TUIC2CChatMinimalistActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.TUIGroupChatMinimalistActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.MessageDetailMinimalistActivity"
|
|
android:screenOrientation="portrait" />
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.TUIForwardChatMinimalistActivity"
|
|
android:screenOrientation="portrait" />
|
|
|
|
<activity android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.GroupInfoMinimalistActivity"
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
<activity
|
|
android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.FriendProfileMinimalistActivity"
|
|
android:screenOrientation="portrait" />
|
|
|
|
<activity android:name="com.tencent.qcloud.tuikit.tuichat.minimalistui.page.GroupNoticeMinimalistActivity"
|
|
android:screenOrientation="portrait" />
|
|
<!-- **************** Minimalist UI End **************** -->
|
|
<service
|
|
android:name=".TUIChatService"
|
|
android:authorities="${applicationId}.TUIChat.Init"
|
|
android:enabled="true"
|
|
android:exported="false"
|
|
tools:ignore="Instantiatable" />
|
|
</application>
|
|
|
|
</manifest> |