2026-05-23 04:11:23 +08:00
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2026-07-17 13:35:27 +08:00
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
|
|
|
|
2026-05-23 04:11:23 +08:00
|
|
|
|
<application>
|
2026-07-17 13:35:27 +08:00
|
|
|
|
<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/xuqm_file_paths" />
|
|
|
|
|
|
</provider>
|
|
|
|
|
|
|
2026-06-18 15:58:53 +08:00
|
|
|
|
<!--
|
2026-07-17 13:35:27 +08:00
|
|
|
|
合并启动入口:替代 core 与扩展 SDK 分别注册的初始化 Provider。
|
2026-06-18 15:58:53 +08:00
|
|
|
|
主线程只读文件字节(<10ms),PBKDF2 解密 + 初始化全部移到 IO 线程。
|
|
|
|
|
|
initOrder=50 尽早执行,但不阻塞主线程。
|
|
|
|
|
|
-->
|
2026-05-23 04:11:23 +08:00
|
|
|
|
<provider
|
2026-06-18 15:58:53 +08:00
|
|
|
|
android:name="com.xuqm.sdk.internal.XuqmMergedProvider"
|
2026-05-23 04:11:23 +08:00
|
|
|
|
android:authorities="${applicationId}.xuqm-init"
|
|
|
|
|
|
android:exported="false"
|
2026-06-18 15:58:53 +08:00
|
|
|
|
android:initOrder="50" />
|
2026-05-23 04:11:23 +08:00
|
|
|
|
</application>
|
|
|
|
|
|
</manifest>
|