1:修改系统和官方公告展示html出现标签展示的问题
2:添加群全员禁言和单个禁言的功能 3:将道具商城做成原生的 4:添加应用更新的时候,添加版本判断和重新刷新手机文本,预防出现安装缓存(自己测试十几次,未在出现问题,还需要大量测试)
This commit is contained in:
@@ -7,6 +7,27 @@
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
|
||||
<application android:theme="@style/AppTheme">
|
||||
<activity
|
||||
android:name=".activity.user.activity.PropMallActivity"
|
||||
android:exported="false"
|
||||
android:label="@string/title_activity_prop_mall"
|
||||
android:theme="@style/AppTheme.NoActionBar" />
|
||||
<activity
|
||||
android:name=".activity.GroupUserListActivity"
|
||||
android:exported="false" />
|
||||
<activity
|
||||
android:name=".activity.GroupChatSettingsActivity"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<!-- 自定义action -->
|
||||
<action android:name="com.example.mainmodule.action.GROUP_CHAT_SETTINGS" />
|
||||
<!-- 自定义category(可选) -->
|
||||
<category android:name="com.example.mainmodule.category.DETAIL" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.user.activity.MobilePhoneActivity"
|
||||
android:exported="false" />
|
||||
@@ -56,10 +77,10 @@
|
||||
android:configChanges="orientation|screenSize|keyboardHidden"
|
||||
android:enableOnBackInvokedCallback="false"
|
||||
android:exported="false"
|
||||
android:persistableMode="persistAcrossReboots"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/AppTheme"
|
||||
android:windowSoftInputMode="adjustPan"
|
||||
android:persistableMode="persistAcrossReboots"/><!-- 防止系统回收 View 层级(Android 11+) -->
|
||||
android:windowSoftInputMode="adjustPan" /> <!-- 防止系统回收 View 层级(Android 11+) -->
|
||||
<activity
|
||||
android:name=".activity.room.activity.RedResultActivity"
|
||||
android:exported="true" />
|
||||
|
||||
Reference in New Issue
Block a user