| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- 网络请求 -->
- <uses-permission android:name="android.permission.INTERNET" />
- <application
- android:name=".Entry"
- android:allowBackup="true"
- android:dataExtractionRules="@xml/data_extraction_rules"
- android:fullBackupContent="@xml/backup_rules"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher_round"
- android:supportsRtl="true"
- android:theme="@style/Theme.Bozzys"
- android:usesCleartextTraffic="true">
- <!-- 闪屏页面 -->
- <activity
- android:name=".ui.pages.PageSplash"
- android:exported="true"
- android:label="@string/app_name"
- android:screenOrientation="portrait"
- android:theme="@style/Theme.BozzysSplash">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- 登录页面 -->
- <activity
- android:name=".ui.pages.login.PageLogin"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait" />
- <!-- 主页面 -->
- <activity
- android:name=".ui.pages.home.PageHome"
- android:exported="true"
- android:launchMode="singleTask"
- android:screenOrientation="portrait" />
- <!-- 选择流程类型 -->
- <activity
- android:name=".ui.pages.select.job.PageSelectJobType"
- android:exported="true"
- android:screenOrientation="portrait" />
- <!-- 创建作业 -->
- <activity
- android:name=".ui.pages.create.job.PageCreateJob"
- android:exported="true"
- android:screenOrientation="portrait"
- android:windowSoftInputMode="adjustNothing" />
- <!-- 编辑流程 -->
- <activity
- android:name=".ui.pages.edit.step.PageEditStep"
- android:exported="true"
- android:screenOrientation="portrait" />
- <!-- 作业详情 -->
- <activity
- android:name=".ui.pages.detail.job.PageDetailJob"
- android:exported="true"
- android:screenOrientation="portrait" />
- <!-- 任务详情 -->
- <activity
- android:name=".ui.pages.detail.task.PageDetailTask"
- android:exported="true"
- android:screenOrientation="portrait" />
- <!-- 消息中心 -->
- <activity
- android:name=".ui.pages.message.PageMessage"
- android:exported="true"
- android:screenOrientation="portrait" />
- <!-- 阿里消息推送服务配置 -->
- <service
- android:name=".service.AliPushService"
- android:exported="false">
- <intent-filter>
- <action android:name="com.alibaba.push2.action.NOTIFICATION_OPENED" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.alibaba.push2.action.NOTIFICATION_REMOVED" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.alibaba.sdk.android.push.RECEIVE" />
- </intent-filter>
- </service>
- </application>
- </manifest>
|