version:1.1.6

fix:
update:修改图标大小,增加闹钟
This commit is contained in:
2023-11-04 09:58:25 +08:00
parent 3d15a60ac9
commit e081884984
112 changed files with 16918 additions and 163 deletions

View File

@@ -215,6 +215,34 @@
</intent-filter>
</activity>
<activity
android:name=".alarm.AlarmActivity"
android:icon="@drawable/icon_alarm"
android:label="@string/app_alarm"
android:launchMode="singleTask"
android:theme="@style/AlarmTheme"
android:screenOrientation="userLandscape">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".alarm.NoticeActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:screenOrientation="userLandscape"
android:theme="@style/FloatingWindow" />
<activity
android:name=".alarm.NoticeInfoActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:screenOrientation="userPortrait"
android:theme="@style/activity_styles" />
<provider
android:name="com.uiuipad.os.testing.TestInformationProvider"
android:authorities="${packageName}.TestInfo"