2026-04-21 22:07:29 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2026-04-28 09:45:20 +08:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2026-04-21 22:07:29 +08:00
|
|
|
|
|
|
|
|
<application
|
2026-04-24 16:46:38 +08:00
|
|
|
android:name=".XuqmSampleApp"
|
2026-04-27 17:18:55 +08:00
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:label="XuqmGroup Demo"
|
|
|
|
|
android:theme="@style/Theme.XuqmDemo">
|
2026-04-21 22:07:29 +08:00
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
2026-04-27 17:18:55 +08:00
|
|
|
android:exported="true"
|
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
2026-04-21 22:07:29 +08:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
<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>
|
2026-04-27 17:18:55 +08:00
|
|
|
</application>
|
2026-04-21 22:07:29 +08:00
|
|
|
</manifest>
|