| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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: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" />
- <!-- 阿里消息推送服务配置 -->
- <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>
|