<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.edufound.reader"
    android:versionCode="100"
    android:versionName="1.0.2" >

    <uses-sdk
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:minSdkVersion="21"
        android:targetSdkVersion="28" />

    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.INTERNET" /> <!-- 网络通信 -->
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />

    <queries package="com.edufound.reader" >
        <package android:name="com.tencent.mm" />

        <intent>
            <action android:name="android.media.action.IMAGE_CAPTURE" >
            </action>
        </intent>
        <intent>
            <action android:name="android.media.action.ACTION_VIDEO_CAPTURE" >
            </action>
        </intent>

        <package android:name="com.lenovo.lsf" />
        <package android:name="com.lenovo.lsf.user" />

        <intent>
            <action android:name="com.huawei.hms.core.aidlservice" />
        </intent>
        <intent>
            <action android:name="com.huawei.hms.core" />
        </intent>

        <package android:name="com.huawei.works" />
    </queries>

    <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> <!-- 适配Android R包可见性 结束 -->
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.VIBRATE" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.ALARM_LOCK" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.WAKE_LOCK" />

    <permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="com.edufound.reader.vfs.broadcast"
        android:protectionLevel="signature" />

    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="com.edufound.reader.vfs.broadcast" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.CAMERA"
        android:required="true" />

    <uses-feature
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.hardware.camera"
        android:required="true" />
    <uses-feature
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.hardware.camera.autofocus"
        android:required="true" />

    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.CHANGE_NETWORK_STATE" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.BLUETOOTH" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.NFC" />
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.READ_EXTERNAL_STORAGE" />

    <permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="com.edufound.reader.voiceassist.permission.READ"
        android:protectionLevel="normal" />
    <permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="com.edufound.reader.voiceassist.permission.WRITE"
        android:protectionLevel="normal" />

    <uses-permission android:name="android.permission.FLASHLIGHT" />
    <uses-permission android:name="com.asus.msa.SupplementaryDID.ACCESS" />
    <uses-permission android:name="freemme.permission.msa" />

    <application
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="com.edufound.reader.DemoApplication"
        android:allowBackup="false"
        android:appComponentFactory="androidx.core.app.CoreComponentFactory"
        android:debuggable="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:persistent="true"
        android:requestLegacyExternalStorage="true"
        android:testOnly="true"
        android:theme="@style/Theme.App.Global"
        android:usesCleartextTraffic="true" >

        <!-- 兼容支持 -->
        <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />

        <activity
            android:name="com.edufound.reader.ui.MainActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:exported="true"
            android:theme="@style/Theme.Translucent" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:scheme="__placeholder__" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.edufound.reader.wxapi.WXEntryActivity"
            android:exported="true"
            android:launchMode="singleTask" />
        <activity
            android:name="com.edufound.reader.wxapi.WXPayEntryActivity"
            android:exported="true"
            android:launchMode="singleTask" />

        <meta-data
            android:name="com.huawei.hms.client.appid"
            android:value="appid=109457863" />

        <activity
            android:name="com.donut.plugin.activity.LenovoActivity"
            android:exported="false"
            android:theme="@style/TransparentTheme" />
        <activity
            android:name="com.donut.plugin.activity.AliPayActivity"
            android:exported="false"
            android:theme="@style/TransparentTheme" />
        <activity
            android:name="com.donut.plugin.activity.HuaWeiActivity"
            android:exported="false"
            android:theme="@style/TransparentTheme" />
        <activity
            android:name="com.donut.plugin.activity.PermissionsActivity"
            android:exported="false"
            android:theme="@style/TransparentTheme" />
        <activity
            android:name="com.lenovo.intermodal.ui.PayActionActivity"
            android:configChanges="keyboardHidden|orientation|screenSize|navigation|locale|layoutDirection"
            android:exported="false"
            android:launchMode="singleTask"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.alipay.sdk.app.H5PayActivity"
            android:configChanges="orientation|keyboardHidden|navigation|screenSize"
            android:exported="false"
            android:screenOrientation="behind"
            android:windowSoftInputMode="adjustResize|stateHidden" />
        <activity
            android:name="com.alipay.sdk.app.H5AuthActivity"
            android:configChanges="orientation|keyboardHidden|navigation"
            android:exported="false"
            android:screenOrientation="behind"
            android:windowSoftInputMode="adjustResize|stateHidden" />
        <activity
            android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:process=":wxa_container0"
            android:screenOrientation="behind"
            android:theme="@style/WxaAppContainerTheme" />

        <activity-alias
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity0"
            android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0" />

        <activity
            android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:process=":wxa_container1"
            android:screenOrientation="behind"
            android:theme="@style/WxaAppContainerTheme" />

        <activity-alias
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity1"
            android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1" />

        <activity
            android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:process=":wxa_container2"
            android:screenOrientation="behind"
            android:theme="@style/WxaAppContainerTheme" />

        <activity-alias
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity2"
            android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2" />

        <activity
            android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:process=":wxa_container3"
            android:screenOrientation="behind"
            android:theme="@style/WxaAppContainerTheme" />

        <activity-alias
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity3"
            android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3" />

        <activity
            android:name="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:process=":wxa_container4"
            android:screenOrientation="behind"
            android:theme="@style/WxaAppContainerTheme" />

        <activity-alias
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerActivity4"
            android:targetActivity="com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4" />

        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_OWNER"
            android:value="coverguo" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_HOSTNAME"
            android:value="null" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_TIME"
            android:value="2023-11-21 14:53:34" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_REV"
            android:value="507a0d9c46b1cd69207bb2a8d7008b1c6c974d89" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION"
            android:value="2.1.0" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_SDK_VERSION_INT"
            android:value="0x22010001" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_UPSTREAM_CLIENT_VERSION"
            android:value="0x28000730" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_WEBGL_MAP_COMP"
            android:value="false" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_SUPPORT_GAME"
            android:value="false" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_USE_MINIFIED_LITEAV_SDK"
            android:value="false" />
        <meta-data
            android:name="com.tencent.wmpf.BuildInfo.BUILD_PIPELINE_NUM"
            android:value="-1" />

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.WxaProfileActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
        <activity
            android:name="com.tencent.luggage.wxaapi.internal.ui.WxaScanResultDelegateActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />
        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerToFrontProxyActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:screenOrientation="behind" />

        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCMainService"
            android:exported="false" />
        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService0"
            android:exported="false"
            android:process=":wxa_container0" />
        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService1"
            android:exported="false"
            android:process=":wxa_container1" />
        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService2"
            android:exported="false"
            android:process=":wxa_container2" />
        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService3"
            android:exported="false"
            android:process=":wxa_container3" />
        <service
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService4"
            android:exported="false"
            android:process=":wxa_container4" />

        <activity
            android:name="com.tencent.mm.ui.AlertActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:theme="@style/WeUITheme.NoTitleTranslucent" />

        <provider
            android:name="com.luck.picture.lib.basic.PictureFileProvider"
            android:authorities="com.edufound.reader.luckProvider"
            android:exported="false"
            android:grantUriPermissions="true" >
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/ps_file_paths" />
        </provider>

        <service
            android:name="com.luck.picture.lib.service.ForegroundService"
            android:enabled="true"
            android:foregroundServiceType="location" />

        <activity
            android:name="com.luck.picture.lib.basic.PictureSelectorSupporterActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:multiprocess="true"
            android:theme="@style/Base.Theme.NoActionBar" />
        <activity
            android:name="com.luck.picture.lib.basic.PictureSelectorTransparentActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:multiprocess="true"
            android:theme="@style/Picture.Theme.Translucent" />

        <meta-data
            android:name="use_xweb_camera"
            android:value="true" />
        <meta-data
            android:name="use_cpu_crop"
            android:value="false" />

        <service
            android:name="com.tencent.mm.plugin.appbrand.jsapi.nfc.hce.HCEService"
            android:exported="true"
            android:permission="android.permission.BIND_NFC_SERVICE" >
            <intent-filter>
                <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

            <meta-data
                android:name="android.nfc.cardemulation.host_apdu_service"
                android:resource="@xml/hce_apdu" />
        </service>

        <uses-library
            android:name="com.google.android.maps"
            android:required="false" />
        <uses-library
            android:name="com.here.android"
            android:required="false" />

        <meta-data
            android:name="TencentMapSDK"
            android:value="Q3PBZ-TDH3R-4XEWO-WJUMV-YBAUJ-MQBAS" />
        <meta-data
            android:name="TencentMapSubKey"
            android:value="E6FBZ-OLSCQ-UIU5C-GWLJ7-ABUPT-V7FJX" />

        <activity
            android:name="com.tencent.mm.plugin.appbrand.jsapi.lbs.LbsProxyActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:theme="@style/WeUITheme.NoTitleTranslucent" />
        <activity
            android:name="com.tencent.luggage.sdk.customize.impl.FullSdkExternalToolsHelper$SimpleWebViewActivity"
            android:launchMode="singleTask" />

        <provider
            android:name="com.tencent.luggage.storage.StandaloneCriticalDataProvider"
            android:authorities="com.edufound.reader.wxa_critical_content"
            android:exported="false" />

        <activity
            android:name="com.tencent.luggage.ui.OpenSDKBridgedActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" />

        <provider
            android:name="com.tencent.luggage.opensdk.OpenSDKApiContentProvider"
            android:authorities="com.edufound.reader.openapidata"
            android:exported="false"
            android:grantUriPermissions="true" >
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/openapipath" />
        </provider>

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode" />

        <activity-alias
            android:name="com.tencent.luggage.ui.WxaSimpleWebViewActivity"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity" />

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity"
            android:theme="@style/WeUITheme.NoTitleTranslucent" />

        <activity-alias
            android:name="com.tencent.luggage.setting.ui.WxaSettingActivity"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity" />

        <activity
            android:name="com.tencent.luggage.ui.WxaAlertActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:theme="@style/Theme.LuggageApp.Standalone.WxaSetting.Dialog" />
        <activity android:name="com.tencent.luggage.ui.BlankActivity" />
        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:theme="@style/WeUITheme" />

        <activity-alias
            android:name="com.tencent.luggage.setting.ui.WmpfAuthorizeDetailUI"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity" />

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity"
            android:theme="@style/WeUITheme" />

        <activity-alias
            android:name="com.tencent.luggage.setting.ui.AppBrandUserInfoAuthorizeUI"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity" />

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity"
            android:theme="@style/wmpf_round_checkbox_WeUITheme" />

        <activity-alias
            android:name="com.tencent.luggage.setting.ui.BizSubscribeMsgManagerUI"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity" />

        <activity
            android:name="com.tencent.luggage.ui.WxaMusicActivity"
            android:theme="@style/WeUITheme" />

        <provider
            android:name="com.tencent.luggage.jsapi.file.LuggageOpenDocFileProvider"
            android:authorities="com.edufound.reader.shareFileProvide"
            android:exported="false"
            android:grantUriPermissions="true" >
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/share_file_path" />
        </provider>

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity"
            android:screenOrientation="portrait"
            android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" />

        <activity-alias
            android:name="com.tencent.luggage.scanner.scanner.ui.BaseScanUI"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity" />

        <activity
            android:name="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity"
            android:theme="@style/WeUITheme.NoTitleTranslucent"
            android:windowSoftInputMode="adjustUnspecified|stateHidden" />

        <activity-alias
            android:name="com.tencent.luggage.ui.WxaLaunchProxyActivity"
            android:enabled="true"
            android:targetActivity="com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity" />

        <activity
            android:name="com.tencent.luggage.ui.WxaPreviewImageUI"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:theme="@style/WeUITheme.NoTitleTranslucent" />

        <service
            android:name="com.tencent.luggage.crash.WxaCrashUploaderService"
            android:exported="false" />

        <provider
            android:name="com.tencent.luggage.wxa.WxaFileExportContentProvider"
            android:authorities="com.edufound.reader.external.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true" >
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>

        <meta-data
            android:name="lenovo:applicationToken"
            android:value="E9EEWZU78683" /> <!-- android:theme="@style/com_lenovo_lsf_ui.no_title" -->
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.PsLoginCommonActivity"
            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.id.action.EMAIL_LOGIN" />
                <action android:name="com.lenovo.lsf.id.action.PHONENUMBER_LOGIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.PsLoginActivity"
            android:configChanges="keyboard|keyboardHidden"
            android:excludeFromRecents="true"
            android:exported="false"
            android:launchMode="singleTask"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateAlwaysHidden|adjustPan" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.PsLoginPhoneCodeActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateAlwaysHidden|adjustPan" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.id.action.PHONENUMBER_AUTHENCODE_LOGIN" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.account.PsUserSettingActivity"
            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.PreAccountBindingActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingRegistActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.AccountBindingRegistFinalActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.IncludeAreaCodeActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.AccountInfoActivity"
            android:exported="false"
            android:launchMode="singleTop"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.lenovoid.action.MYACCOUNT" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.ChangePasswordFirstActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.lenovoid.action.CHANGEPASSWORD" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.ChangePasswordCompleteActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.id.action.REGISTER" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivitySecondStep"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivityThirdStep"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.ServiceProtocolActivity"
            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.MyselfInformationActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.id.action.MY_ACCOUNT_INFO" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.PwdGuideActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepSecond"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepThird"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepForth"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumConfirmActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
            <intent-filter>

                <!-- 该action可以提供给三方应用 用以调出激活界面 -->
                <action android:name="com.lenovo.lsf.bindaccount" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordConfirmActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.FindPasswordFinalActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="adjustPan|stateVisible" /> <!-- 账号激活 -->
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.ActivationbyPhoneActivity"
            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_theme_dialog"
            android:windowSoftInputMode="stateVisible" >
            <intent-filter>

                <!-- 该action可以提供给三方应用 用以调出激活界面 -->
                <action android:name="com.lenovo.lsf.activation.phone" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.ActivationbyMailActivity"
            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_theme_dialog"
            android:windowSoftInputMode="stateHidden" >
            <intent-filter>

                <!-- 该action可以提供给三方应用 用以调出激活界面 -->
                <action android:name="com.lenovo.lsf.activation.mail" />
            </intent-filter>
        </activity> <!-- 实名认证 -->
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RealnameAuthActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible|adjustPan" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RealnameAuthSecondActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible|adjustPan" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.IdAuthActivty"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.IdAuthActivtySecond"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.AccountH5InfoActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.CountryCodeH5Activity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.SafeQuestionActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.EmailRegistedDoneActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title" />
        <activity
            android:name="com.lenovo.lsf.account.qrcode.ui.CaptureActivity"
            android:exported="false"
            android:permission="com.lenovo.lsf.permission.IDSERVICE"
            android:screenOrientation="portrait"
            android:theme="@style/com_lenovo_lsf_ui" >
            <intent-filter>
                <action android:name="com.lenovo.lsf.account.QRCODE" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.lenovo.lsf.account.qrcode.ui.WebLoginConfirmActivity"
            android:configChanges="keyboardHidden"
            android:exported="false"
            android:screenOrientation="portrait"
            android:theme="@style/com_lenovo_lsf_ui" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailSecondActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible|adjustPan" >
        </activity>
        <activity
            android:name="com.lenovo.lsf.lenovoid.ui.RegistByEmailThirdActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:theme="@style/com_lenovo_lsf_ui.no_title"
            android:windowSoftInputMode="stateVisible|adjustPan" >
        </activity>
        <activity
            android:name="com.huawei.hms.hwid.internal.ui.activity.HwIdSignInHubActivity"
            android:configChanges="fontScale|uiMode"
            android:excludeFromRecents="true"
            android:exported="false"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        </activity>
        <activity
            android:name="com.huawei.hms.account.internal.ui.activity.AccountSignInHubActivity"
            android:excludeFromRecents="true"
            android:exported="false"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        </activity> <!-- 切记同步修改 HuaweiIdAuthInternalConstant.HMS_SDK_VERSION -->
        <meta-data
            android:name="com.huawei.hms.client.service.name:hwid"
            android:value="hwid:6.11.0.300" />
        <meta-data
            android:name="com.huawei.hms.min_api_level:hwid:hwid"
            android:value="1" /> <!-- 5.3.0 独立授权依赖的api_level为11 -->
        <!-- 5.3.0 setCarrierId依赖的api_level为13 -->
        <meta-data
            android:name="com.huawei.hms.min_api_level:hwid:account"
            android:value="13" /> <!-- 为后续统计第三方app集成了哪些Kit,因此需要Kit在自己的AndroidManifest.xml文件中定义业务标签元数据 -->
        <meta-data
            android:name="com.huawei.hms.client.service.name:base"
            android:value="base:6.11.0.301" /> <!-- SDK依赖的HMSCore的最低api level元数据 -->
        <meta-data
            android:name="com.huawei.hms.min_api_level:base:hmscore"
            android:value="1" /> <!-- 用于判断是否集成了本lib -->
        <meta-data
            android:name="availableLoaded"
            android:value="yes" />

        <activity
            android:name="com.huawei.hms.activity.BridgeActivity"
            android:configChanges="orientation|locale|layoutDirection|fontScale|screenSize|smallestScreenSize|screenLayout|uiMode"
            android:excludeFromRecents="true"
            android:exported="false"
            android:hardwareAccelerated="true"
            android:screenOrientation="behind"
            android:theme="@style/Base_Translucent" >
            <meta-data
                android:name="hwc-theme"
                android:value="androidhwext:style/Theme.Emui.Translucent" />
        </activity>
        <activity
            android:name="com.huawei.hms.activity.EnableServiceActivity"
            android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout"
            android:exported="false" >
        </activity>

        <provider
            android:name="com.huawei.agconnect.core.provider.AGConnectInitializeProvider"
            android:authorities="com.edufound.reader.AGCInitializeProvider"
            android:exported="false" />

        <service
            android:name="com.huawei.agconnect.core.ServiceDiscovery"
            android:exported="false" />

        <provider
            android:name="androidx.lifecycle.ProcessLifecycleOwnerInitializer"
            android:authorities="com.edufound.reader.lifecycle-process"
            android:exported="false"
            android:multiprocess="true" />
    </application>

</manifest>