|
|
@@ -2,8 +2,7 @@
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
package="com.tencent.qcloud.tuikit.tuichat">
|
|
|
|
|
|
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
- android:maxSdkVersion="28" />
|
|
|
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
@@ -12,21 +11,21 @@
|
|
|
<provider
|
|
|
android:name=".TUIChatService"
|
|
|
android:authorities="${applicationId}.TUIChat.Init"
|
|
|
- android:initOrder="9999"
|
|
|
android:enabled="true"
|
|
|
- android:exported="false" />
|
|
|
+ android:exported="false"
|
|
|
+ android:initOrder="9999" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".component.imagevideoscan.ImageVideoScanActivity"
|
|
|
- android:launchMode="singleTask"
|
|
|
- android:configChanges="screenSize|keyboardHidden|orientation" />
|
|
|
+ android:configChanges="screenSize|keyboardHidden|orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
|
|
|
|
|
|
<!-- **************** Classic UI Start **************** -->
|
|
|
<activity
|
|
|
android:name=".classicui.page.MessageReplyDetailActivity"
|
|
|
- android:windowSoftInputMode="adjustResize|stateHidden"
|
|
|
- android:screenOrientation="portrait" />
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
<activity
|
|
|
android:name=".classicui.page.TUIForwardChatActivity"
|
|
|
android:screenOrientation="portrait" />
|
|
|
@@ -41,7 +40,7 @@
|
|
|
android:name=".classicui.page.TUIGroupChatActivity"
|
|
|
android:launchMode="singleTask"
|
|
|
android:screenOrientation="portrait"
|
|
|
- android:windowSoftInputMode="adjustNothing|stateHidden"/>
|
|
|
+ android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
|
|
<activity
|
|
|
android:name=".classicui.page.MessageReceiptDetailActivity"
|
|
|
@@ -53,15 +52,12 @@
|
|
|
<provider
|
|
|
android:name=".classicui.ClassicUIService"
|
|
|
android:authorities="${applicationId}.TUIChat.ClassicUI.Init"
|
|
|
- android:initOrder="9998"
|
|
|
android:enabled="true"
|
|
|
- android:exported="false"/>
|
|
|
+ android:exported="false"
|
|
|
+ android:initOrder="9998" />
|
|
|
<!-- **************** Classic UI End **************** -->
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<!-- **************** Minimalist UI Start **************** -->
|
|
|
<activity
|
|
|
android:name=".minimalistui.component.camera.CameraActivity"
|
|
|
@@ -69,8 +65,8 @@
|
|
|
|
|
|
<activity
|
|
|
android:name=".minimalistui.widget.messagepopmenu.ChatPopActivity"
|
|
|
- android:theme="@style/ChatTransparentPopActivityStyle"
|
|
|
android:launchMode="singleTask"
|
|
|
+ android:theme="@style/ChatTransparentPopActivityStyle"
|
|
|
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
|
|
|
|
|
<activity
|
|
|
@@ -97,8 +93,8 @@
|
|
|
android:name=".minimalistui.MinimalistUIService"
|
|
|
android:authorities="${applicationId}.TUIChat.MinimalistUI.Init"
|
|
|
android:enabled="true"
|
|
|
- android:initOrder="9998"
|
|
|
- android:exported="false"/>
|
|
|
+ android:exported="false"
|
|
|
+ android:initOrder="9998" />
|
|
|
<!-- **************** Minimalist UI End **************** -->
|
|
|
|
|
|
|