AndroidManifest.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.cooleshow.chatmodule">
  4. <application>
  5. <activity
  6. android:name=".ui.ChatGroupSettingActivity"
  7. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  8. android:screenOrientation="portrait" />
  9. <activity
  10. android:name=".ui.GroupMemberActivity"
  11. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  12. android:screenOrientation="portrait" />
  13. <activity
  14. android:name=".ui.NoticeActivity"
  15. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  16. android:screenOrientation="portrait" />
  17. <activity
  18. android:name=".ui.NoticeEditActivity"
  19. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  20. android:screenOrientation="portrait" />
  21. <activity
  22. android:name=".ui.ImAppealActivity"
  23. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  24. android:windowSoftInputMode="adjustPan"
  25. android:screenOrientation="portrait" />
  26. <activity
  27. android:name=".ui.PhotoPreviewActivity"
  28. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  29. android:screenOrientation="portrait" />
  30. <activity
  31. android:name=".ui.JoinGroupApplyActivity"
  32. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  33. android:screenOrientation="portrait" />
  34. <activity
  35. android:name=".ui.SelectScoreChatActivity"
  36. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  37. android:screenOrientation="portrait"
  38. android:windowSoftInputMode="adjustPan" />
  39. <activity
  40. android:name=".ui.SelectContactActivity"
  41. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  42. android:windowSoftInputMode="adjustPan"
  43. android:screenOrientation="portrait" />
  44. <activity
  45. android:name=".ui.TUIChatGroupActivityV2"
  46. android:launchMode="singleTask"
  47. android:screenOrientation="portrait"
  48. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  49. android:windowSoftInputMode="adjustNothing|stateHidden"/>
  50. <provider
  51. android:name=".widget.CustomChatGroupTopRightIconExtension"
  52. android:authorities="${applicationId}.TUIGroup.ClassicUI.Init"
  53. android:enabled="true"
  54. android:exported="false" />
  55. </application>
  56. </manifest>