| | |
| | | <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" /> <!-- 允许语言识别。 --> |
| | | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| | | |
| | | <!-- Android 13 及以上 --> |
| | | <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/> |
| | | |
| | | <application |
| | | android:name=".App" |
| | | android:allowBackup="true" |
| | |
| | | android:theme="@style/Theme.FirstApp" |
| | | android:usesCleartextTraffic="true" |
| | | tools:targetApi="31"> |
| | | <activity |
| | | android:name=".activity.AboutCompanyActivity" |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".activity.SettingActivity" |
| | | android:configChanges="orientation|keyboardHidden|screenSize" |
| | |
| | | <activity |
| | | android:name=".ui.invitation.InvitationActivity" |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".activity.ReminderListActivity" |
| | | android:exported="false" |
| | | android:label="提醒列表" /> |
| | | <activity |
| | | android:name=".activity.ReminderSettingsActivity" |
| | | android:exported="false" |
| | | android:label="设置提醒" /> |
| | | </application> |
| | | |
| | | </manifest> |