| | |
| | | <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:roundIcon="@mipmap/ic_launcher_round" |
| | | android:supportsRtl="true" |
| | | android:theme="@style/Theme.FirstApp" |
| | | tools:targetApi="31" |
| | | android:usesCleartextTraffic="true" |
| | | > |
| | | tools:targetApi="31"> |
| | | <activity |
| | | android:name=".activity.AboutCompanyActivity" |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".activity.SettingActivity" |
| | | android:configChanges="orientation|keyboardHidden|screenSize" |
| | | android:exported="false" |
| | | android:label="@string/title_activity_setting" |
| | | android:theme="@style/Theme.FirstApp.Fullscreen" /> |
| | | <activity |
| | | android:name=".pay.wxpay.WXPayEntryActivity" |
| | | android:exported="true" |
| | | android:launchMode="singleTop" /> <!-- 微信支付回调组件别名 --> |
| | | <activity-alias |
| | | android:name="${applicationId}.wxapi.WXPayEntryActivity" |
| | | android:exported="true" |
| | | android:targetActivity=".pay.wxpay.WXPayEntryActivity" |
| | | android:theme="@android:style/Theme.NoDisplay" /> |
| | | |
| | | <provider |
| | | android:name="androidx.startup.InitializationProvider" |
| | | android:authorities="${applicationId}.androidx-startup" |
| | | android:exported="false" |
| | | tools:node="remove" /> |
| | | |
| | | |
| | | <activity |
| | | android:name=".activity.VipActivity" |
| | |
| | | android:theme="@style/Theme.ContentDetail" /> |
| | | <activity |
| | | android:name=".ui.profile.EditProfileActivity" |
| | | android:exported="false"/> |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".ui.invitation.InvitationActivity" |
| | | android:exported="false"/> |
| | | |
| | | android:exported="false" /> |
| | | <activity |
| | | android:name=".activity.ReminderListActivity" |
| | | android:exported="false" |
| | | android:label="提醒列表" /> |
| | | <activity |
| | | android:name=".activity.ReminderSettingsActivity" |
| | | android:exported="false" |
| | | android:label="设置提醒" /> |
| | | <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> |
| | | </application> |
| | | |
| | | </manifest> |