AndroidManifest.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!-- 网络请求 -->
  4. <uses-permission android:name="android.permission.INTERNET" />
  5. <application
  6. android:name=".Entry"
  7. android:allowBackup="true"
  8. android:dataExtractionRules="@xml/data_extraction_rules"
  9. android:fullBackupContent="@xml/backup_rules"
  10. android:icon="@mipmap/ic_launcher"
  11. android:label="@string/app_name"
  12. android:roundIcon="@mipmap/ic_launcher_round"
  13. android:supportsRtl="true"
  14. android:theme="@style/Theme.Bozzys"
  15. android:usesCleartextTraffic="true">
  16. <!-- 闪屏页面 -->
  17. <activity
  18. android:name=".ui.pages.PageSplash"
  19. android:exported="true"
  20. android:label="@string/app_name"
  21. android:screenOrientation="portrait"
  22. android:theme="@style/Theme.BozzysSplash">
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. <!-- 登录页面 -->
  29. <activity
  30. android:name=".ui.pages.login.PageLogin"
  31. android:exported="true"
  32. android:screenOrientation="portrait" />
  33. <!-- 主页面 -->
  34. <activity
  35. android:name=".ui.pages.home.PageHome"
  36. android:exported="true"
  37. android:launchMode="singleTask"
  38. android:screenOrientation="portrait" />
  39. <!-- 选择流程类型 -->
  40. <activity
  41. android:name=".ui.pages.select.job.PageSelectJobType"
  42. android:exported="true"
  43. android:screenOrientation="portrait" />
  44. <!-- 创建作业 -->
  45. <activity
  46. android:name=".ui.pages.create.job.PageCreateJob"
  47. android:exported="true"
  48. android:screenOrientation="portrait"
  49. android:windowSoftInputMode="adjustNothing" />
  50. <!-- 编辑流程 -->
  51. <activity
  52. android:name=".ui.pages.edit.step.PageEditStep"
  53. android:exported="true"
  54. android:screenOrientation="portrait" />
  55. <!-- 阿里消息推送服务配置 -->
  56. <service
  57. android:name=".service.AliPushService"
  58. android:exported="false">
  59. <intent-filter>
  60. <action android:name="com.alibaba.push2.action.NOTIFICATION_OPENED" />
  61. </intent-filter>
  62. <intent-filter>
  63. <action android:name="com.alibaba.push2.action.NOTIFICATION_REMOVED" />
  64. </intent-filter>
  65. <intent-filter>
  66. <action android:name="com.alibaba.sdk.android.push.RECEIVE" />
  67. </intent-filter>
  68. </service>
  69. </application>
  70. </manifest>