AndroidManifest.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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:launchMode="singleTask"
  33. android:screenOrientation="portrait" />
  34. <!-- 主页面 -->
  35. <activity
  36. android:name=".ui.pages.home.PageHome"
  37. android:exported="true"
  38. android:launchMode="singleTask"
  39. android:screenOrientation="portrait" />
  40. <!-- 选择流程类型 -->
  41. <activity
  42. android:name=".ui.pages.select.job.PageSelectJobType"
  43. android:exported="true"
  44. android:screenOrientation="portrait" />
  45. <!-- 创建作业 -->
  46. <activity
  47. android:name=".ui.pages.create.job.PageCreateJob"
  48. android:exported="true"
  49. android:screenOrientation="portrait"
  50. android:windowSoftInputMode="adjustNothing" />
  51. <!-- 编辑流程 -->
  52. <activity
  53. android:name=".ui.pages.edit.step.PageEditStep"
  54. android:exported="true"
  55. android:screenOrientation="portrait" />
  56. <!-- 作业详情 -->
  57. <activity
  58. android:name=".ui.pages.detail.job.PageDetailJob"
  59. android:exported="true"
  60. android:screenOrientation="portrait" />
  61. <!-- 任务详情 -->
  62. <activity
  63. android:name=".ui.pages.detail.task.PageDetailTask"
  64. android:exported="true"
  65. android:screenOrientation="portrait" />
  66. <!-- 消息中心 -->
  67. <activity
  68. android:name=".ui.pages.message.PageMessage"
  69. android:exported="true"
  70. android:screenOrientation="portrait" />
  71. <!-- 阿里消息推送服务配置 -->
  72. <service
  73. android:name=".service.AliPushService"
  74. android:exported="false">
  75. <intent-filter>
  76. <action android:name="com.alibaba.push2.action.NOTIFICATION_OPENED" />
  77. </intent-filter>
  78. <intent-filter>
  79. <action android:name="com.alibaba.push2.action.NOTIFICATION_REMOVED" />
  80. </intent-filter>
  81. <intent-filter>
  82. <action android:name="com.alibaba.sdk.android.push.RECEIVE" />
  83. </intent-filter>
  84. </service>
  85. </application>
  86. </manifest>