version:1.1.5

update:
bugfixes:优化闹钟自动接听
This commit is contained in:
2024-08-19 10:30:50 +08:00
parent 9f8057cd33
commit 261016b9bd
103 changed files with 2478 additions and 781 deletions

View File

@@ -124,15 +124,15 @@
android:requestLegacyExternalStorage="true"
android:restoreAnyVersion="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppThemeFitsSystem">
<activity
android:name=".activity.main.MainActivity"
android:exported="true"
android:excludeFromRecents="true"
android:resizeableActivity="true"
android:exported="true"
android:launchMode="singleTask"
android:screenOrientation="portrait">
android:resizeableActivity="true"
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -143,7 +143,11 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.activation.ActivationActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/DialogStylesWithoutClose" />
<activity android:name=".activity.control.ControlActivity" />
<activity android:name=".activity.quickapp.QuickAppActivity" />
<activity
@@ -239,7 +243,11 @@
android:name=".activity.tts.TtsActivity"
android:screenOrientation="portrait"
android:theme="@style/activity_styles" />
<activity
android:name=".activity.update.UpdateActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/activity_styles" />
<!-- Intent received used to install shortcuts from other applications -->
<receiver
@@ -270,11 +278,6 @@
</intent-filter>
</receiver>
<receiver
android:name=".receiver.InstallResultReceiver"
android:enabled="true"
android:exported="true" />
<!-- <receiver-->
<!-- android:name=".receiver.SmsReceiver"-->
<!-- android:enabled="true"-->
@@ -336,6 +339,21 @@
</intent-filter>
</receiver>
<receiver
android:name=".receiver.InstallResultReceiver"
android:enabled="true"
android:exported="true" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.FileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<!-- 定位需要的服务 适配Android Q需要加上android:foregroundServiceType="location"-->
<service
android:name="com.amap.api.location.APSService"