AndroidManifest.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <intent-filter>
  31. <action android:name="com.cooleshow.chatmodule.ui.PhotoPreviewActivity" />
  32. <category android:name="android.intent.category.DEFAULT" />
  33. </intent-filter>
  34. </activity>
  35. <activity
  36. android:name=".ui.JoinGroupApplyActivity"
  37. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  38. android:screenOrientation="portrait" />
  39. <activity
  40. android:name=".ui.SelectScoreChatActivity"
  41. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  42. android:screenOrientation="portrait"
  43. android:windowSoftInputMode="adjustPan" />
  44. <activity
  45. android:name=".ui.SelectContactActivity"
  46. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  47. android:windowSoftInputMode="adjustPan"
  48. android:screenOrientation="portrait" />
  49. <activity
  50. android:name=".ui.TUIChatGroupActivityV2"
  51. android:launchMode="singleTask"
  52. android:screenOrientation="portrait"
  53. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  54. android:windowSoftInputMode="adjustNothing|stateHidden"/>
  55. <activity
  56. android:name=".ui.CreateGroupActivity"
  57. android:windowSoftInputMode="adjustPan"
  58. android:configChanges="orientation|screenSize|keyboardHidden"
  59. android:screenOrientation="portrait" />
  60. <activity
  61. android:name=".ui.SetRemarksActivity"
  62. android:configChanges="orientation|screenSize|keyboardHidden"
  63. android:windowSoftInputMode="adjustPan"
  64. android:screenOrientation="portrait" />
  65. <activity
  66. android:name=".ui.MuteMemberManagerActivity"
  67. android:windowSoftInputMode="adjustPan"
  68. android:configChanges="orientation|screenSize|keyboardHidden|fontScale|smallestScreenSize|screenLayout"
  69. android:screenOrientation="portrait" />
  70. <provider
  71. android:name=".widget.CustomChatGroupTopRightIconExtension"
  72. android:authorities="${applicationId}.TUIGroup.ClassicUI.Init"
  73. android:enabled="true"
  74. android:initOrder="9998"
  75. android:exported="false" />
  76. </application>
  77. </manifest>