123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="com.huntersun.vkyes.etcopencard">
- <!-- 蓝牙相关 -->
- <uses-permission android:name="android.permission.BLUETOOTH" />
- <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> <!-- 网络相关 -->
- <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- 拍照权限 -->
- <uses-permission android:name="android.permission.INTERNET" /> <!-- 外部存储 -->
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <!-- 安卓11还需要另外添加下面这条权限 -->
- <uses-permission
- android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
- tools:ignore="ScopedStorage" />
- <uses-permission
- android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
- tools:ignore="ProtectedPermissions" />
- <uses-permission android:name="android.permission.CAMERA" /> <!-- 安装权限 -->
- <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> <!-- 定位权限(用于 WebView 定位) -->
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <!-- Android 11 软件包可见性适配:https://www.jianshu.com/p/d1ccd425c4ce -->
- <queries>
-
- <!-- 拍照意图:MediaStore.ACTION_IMAGE_CAPTURE -->
- <intent>
- <action android:name="android.media.action.IMAGE_CAPTURE" />
- </intent>
-
- <!-- 拍摄意图:MediaStore.ACTION_VIDEO_CAPTURE -->
- <intent>
- <action android:name="android.media.action.VIDEO_CAPTURE" />
- </intent>
-
- <!-- 图片裁剪意图 -->
- <intent>
- <action android:name="com.android.camera.action.CROP" />
- </intent>
-
- <!-- 打电话意图:Intent.ACTION_DIAL -->
- <intent>
- <action android:name="android.intent.action.DIAL" />
- </intent>
-
- <!-- 调起分享意图:Intent.ACTION_SEND -->
- <intent>
- <action android:name="android.intent.action.SEND" />
- </intent>
-
- <!-- 调起其他页面意图:Intent.ACTION_VIEW -->
- <intent>
- <action android:name="android.intent.action.VIEW" />
- </intent>
-
- <!-- 调起系统文件选择器:Intent.ACTION_GET_CONTENT -->
- <intent>
- <action android:name="android.intent.action.GET_CONTENT" />
- </intent>
- </queries>
-
- <application
- android:name="com.huntersun.vkyes.etcopencard.src.app.AppApplication"
- android:allowBackup="false"
- android:icon="@mipmap/logo"
- android:label="${app_name}"
- android:networkSecurityConfig="@xml/network_security_config"
- android:requestLegacyExternalStorage="true"
- android:resizeableActivity="true"
- android:roundIcon="@mipmap/logo"
- android:supportsRtl="false"
- android:theme="@style/AppTheme"
- android:usesCleartextTraffic="true"
- tools:ignore="AllowBackup,LockedOrientationActivity"
- tools:replace="android:allowBackup,android:supportsRtl,android:label"
- tools:targetApi="n">
- <!-- 表示当前已经适配了分区存储 -->
- <meta-data
- android:name="ScopedStorage"
- android:value="true" /> <!-- 适配 Android 7.0 文件意图 -->
- <provider
- android:name="androidx.core.content.FileProvider"
- android:authorities="${applicationId}.provider"
- android:exported="false"
- android:grantUriPermissions="true">
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/file_paths" />
- </provider> <!-- 闪屏页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.SplashActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:theme="@style/SplashTheme">
-
- <!-- 程序入口 -->
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <action android:name="android.intent.action.VIEW" />
-
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity> <!-- 引导页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.GuideActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 首页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.HomeActivity"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" /> <!-- 登录页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.LoginActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="stateHidden" /> <!-- 注册页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.RegisterActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="stateHidden" /> <!-- 崩溃展示(必须在独立进程) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.CrashActivity"
- android:launchMode="singleTop"
- android:process=":crash"
- android:screenOrientation="landscape" /> <!-- 重启应用(必须在独立进程) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.RestartActivity"
- android:launchMode="singleTop"
- android:process=":restart" /> <!-- 设置页 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.SettingActivity"
- android:label="@string/setting_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 忘记密码 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.PasswordForgetActivity"
- android:label="@string/password_forget_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="stateHidden" /> <!-- 重置密码 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.PasswordResetActivity"
- android:label="@string/password_reset_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="stateHidden" /> <!-- 更换手机 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.PhoneResetActivity"
- android:label="@string/phone_reset_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="stateHidden" /> <!-- 关于我们 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.AboutActivity"
- android:label="@string/about_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 个人资料 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.PersonalDataActivity"
- android:label="@string/personal_data_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 网页浏览 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.BrowserActivity"
- android:label="@string/web_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 拍照选择 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.CameraActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 图片裁剪 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.ImageCropActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 图片选择 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.ImageSelectActivity"
- android:label="@string/image_select_title"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 查看大图 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.ImagePreviewActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 播放视频(自适应方向) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.VideoPlayActivity"
- android:launchMode="singleTop"
- android:theme="@style/FullScreenTheme" /> <!-- 播放视频(竖屏方向) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.VideoPlayActivity$Portrait"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:theme="@style/FullScreenTheme" /> <!-- 播放视频(横屏方向) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.VideoPlayActivity$Landscape"
- android:launchMode="singleTop"
- android:screenOrientation="landscape"
- android:theme="@style/FullScreenTheme" /> <!-- 选择视频 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.VideoSelectActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 对话框案例 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.DialogActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 状态案例 -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.ui.activity.StatusActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 微信回调(请注意这个 Activity 放置的包名要和当前项目的包名保持一致,否则将不能正常回调) -->
- <activity
- android:name="com.huntersun.vkyes.etcopencard.src.wxapi.WXEntryActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:exported="true"
- android:theme="@android:style/Theme.Translucent.NoTitleBar" />
- <activity android:name=".project.ui.activity.MyBluetooth" /> <!-- 首页 -->
- <activity
- android:name=".project.ui.activity.MainActivity"
- android:launchMode="singleTask"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" /> <!-- ETC办理 -->
- <activity
- android:name=".project.ui.activity.ETCHandleActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 信息填写 -->
- <activity
- android:name=".project.ui.activity.FillOutMessage"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 车辆信息填写 -->
- <activity
- android:name=".project.ui.activity.evaluate.YwblEvaluateActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:exported="false"> <!-- 业务满意度评价 -->
- </activity>
- <activity
- android:name=".project.ui.activity.evaluate.YWYServicePJActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:exported="false"> <!-- 业务员服务评价 -->
- </activity>
- <activity
- android:name=".project.ui.activity.evaluate.UserEvaluateActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 发布评价 -->
- <activity
- android:name=".project.ui.activity.evaluate.ProductPublishPJActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 问题建议 -->
- <activity
- android:name=".project.ui.activity.evaluate.QuestionAndSuggestionActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.IdentityInformationUploadActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 签约 -->
- <activity
- android:name=".project.ui.activity.ContractActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 支付 -->
- <activity
- android:name=".project.ui.activity.DefrayActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 签名 -->
- <activity
- android:name=".project.ui.activity.SignActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 车牌信息 -->
- <activity
- android:name=".project.ui.activity.VehicleInformationActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 首页信息查询 -->
- <activity
- android:name=".project.ui.activity.order.OrderDetailsActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 信息确认 -->
- <activity
- android:name=".project.ui.activity.InformationConfirmedActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 卡签版本查询 -->
- <activity
- android:name=".project.ui.activity.CardSignQueryActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.SubscribeListActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.SubscribeInfoActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.ETCHandleSonActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.ETCHandleCompleteActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.mail.ListDeliveryActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.mail.FormDeliveryActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.CancellationActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.EquipmentLossReportActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.DevicePendingActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.TopUpActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.TopDefrayActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.after.TopEntrapmentActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.TestActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- <activity
- android:name=".project.ui.activity.mail.InfoTabActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 审核 -->
- <activity
- android:name=".project.ui.activity.order.AuditingActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 充值记录 -->
- <activity
- android:name=".project.ui.activity.after.RechargeRecordActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 申请退款 -->
- <activity
- android:name=".project.ui.activity.after.ApplyReturnMoneyActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 撤销圈存 -->
- <activity
- android:name=".project.ui.activity.after.UndoLoopActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 忘记密码第一步 -->
- <activity
- android:name=".project.ui.activity.user.ForgetPwdStep1Activity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 忘记密码第二步 -->
- <activity
- android:name=".project.ui.activity.user.ForgetPwdStep2Activity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustPan" /> <!-- 忘记密码第三步 -->
- <activity
- android:name=".project.ui.activity.user.ForgetPwdStep3Activity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 修改密码 -->
- <activity
- android:name=".project.ui.activity.user.EditPwdActivity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 申请换货第一步 -->
- <activity
- android:name=".project.ui.activity.order.ApplyExGoodsStep1Activity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" /> <!-- 申请换货第二步 -->
- <activity
- android:name=".project.ui.activity.order.ApplyExGoodsStep2Activity"
- android:launchMode="singleTop"
- android:screenOrientation="portrait" />
- </application>
- </manifest>
|