| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.cooleshow.chatmodule">
- <application>
- <activity
- android:name=".ui.ChatGroupSettingActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.GroupMemberActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.NoticeActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.NoticeEditActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.ImAppealActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:windowSoftInputMode="adjustPan"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.PhotoPreviewActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.JoinGroupApplyActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.SelectScoreChatActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" />
- <activity
- android:name=".ui.SelectContactActivity"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:windowSoftInputMode="adjustPan"
- android:screenOrientation="portrait" />
- <activity
- android:name=".ui.TUIChatGroupActivityV2"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
- android:windowSoftInputMode="adjustNothing|stateHidden"/>
- <provider
- android:name=".widget.CustomChatGroupTopRightIconExtension"
- android:authorities="${applicationId}.TUIGroup.ClassicUI.Init"
- android:enabled="true"
- android:exported="false" />
- </application>
- </manifest>
|