Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ShenghuoquanBusiness
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bp
ShenghuoquanBusiness
Commits
30f0a0c3
Commit
30f0a0c3
authored
Aug 05, 2021
by
chengkun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
移动manifest配置文件到组件模块
parent
07eb40c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
145 additions
and
146 deletions
+145
-146
AndroidManifest.xml
Components/BPush/src/main/AndroidManifest.xml
+145
-0
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+0
-146
No files found.
Components/BPush/src/main/AndroidManifest.xml
View file @
30f0a0c3
...
...
@@ -116,6 +116,151 @@
<action
android:name=
"com.huawei.push.action.MESSAGING_EVENT"
/>
</intent-filter>
</service>
<!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 start-->
<service
android:name=
"com.taobao.accs.ChannelService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.SERVICE"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.ELECTION"
/>
</intent-filter>
</service>
<service
android:name=
"com.taobao.accs.data.MsgDistributeService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.taobao.accs.EventReceiver"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.net.conn.CONNECTIVITY_CHANGE"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.PACKAGE_REMOVED"
/>
<data
android:scheme=
"package"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.USER_PRESENT"
/>
</intent-filter>
</receiver>
<receiver
android:name=
"com.taobao.accs.ServiceReceiver"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.COMMAND"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.START_FROM_AGOO"
/>
</intent-filter>
</receiver>
<service
android:name=
"com.taobao.accs.internal.AccsJobService"
android:permission=
"android.permission.BIND_JOB_SERVICE"
android:process=
":channel"
/>
<service
android:name=
"com.taobao.accs.ChannelService$KernelService"
android:process=
":channel"
/>
<service
android:name=
"org.android.agoo.accs.AgooService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.UmengIntentService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.agoo.android.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.XiaomiIntentService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.agoo.android.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.taobao.agoo.AgooCommondReceiver"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"${applicationId}.intent.action.COMMAND"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.PACKAGE_REMOVED"
/>
<data
android:scheme=
"package"
/>
</intent-filter>
</receiver>
<service
android:name=
"com.umeng.message.UmengMessageIntentReceiverService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.android.agoo.client.MessageReceiverService"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.umeng.message.NotificationProxyBroadcastReceiver"
android:exported=
"false"
/>
<service
android:name=
"com.umeng.message.UmengMessageCallbackHandlerService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
>
<intent-filter>
<action
android:name=
"com.umeng.messge.registercallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.enablecallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.disablecallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.message.handler.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.message.sendmessage.action"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.UmengDownloadResourceService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
/>
<provider
android:name=
"com.umeng.message.provider.MessageProvider"
android:authorities=
"${applicationId}.umeng.message"
android:exported=
"false"
>
<grant-uri-permission
android:pathPattern=
".*"
/>
</provider>
<!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 end-->
</application>
</manifest>
\ No newline at end of file
app/src/main/AndroidManifest.xml
View file @
30f0a0c3
...
...
@@ -86,152 +86,6 @@
android:screenOrientation=
"portrait"
android:theme=
"@style/Theme.AppCompat.Light.NoActionBar"
tools:replace=
"android:theme"
/>
<!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 start-->
<service
android:name=
"com.taobao.accs.ChannelService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.SERVICE"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.ELECTION"
/>
</intent-filter>
</service>
<service
android:name=
"com.taobao.accs.data.MsgDistributeService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.taobao.accs.EventReceiver"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.net.conn.CONNECTIVITY_CHANGE"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.PACKAGE_REMOVED"
/>
<data
android:scheme=
"package"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.USER_PRESENT"
/>
</intent-filter>
</receiver>
<receiver
android:name=
"com.taobao.accs.ServiceReceiver"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.COMMAND"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.START_FROM_AGOO"
/>
</intent-filter>
</receiver>
<service
android:name=
"com.taobao.accs.internal.AccsJobService"
android:permission=
"android.permission.BIND_JOB_SERVICE"
android:process=
":channel"
/>
<service
android:name=
"com.taobao.accs.ChannelService$KernelService"
android:process=
":channel"
/>
<service
android:name=
"org.android.agoo.accs.AgooService"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"com.taobao.accs.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.UmengIntentService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.agoo.android.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.XiaomiIntentService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.agoo.android.intent.action.RECEIVE"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.taobao.agoo.AgooCommondReceiver"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"${applicationId}.intent.action.COMMAND"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.PACKAGE_REMOVED"
/>
<data
android:scheme=
"package"
/>
</intent-filter>
</receiver>
<service
android:name=
"com.umeng.message.UmengMessageIntentReceiverService"
android:exported=
"true"
android:process=
":channel"
>
<intent-filter>
<action
android:name=
"org.android.agoo.client.MessageReceiverService"
/>
</intent-filter>
</service>
<receiver
android:name=
"com.umeng.message.NotificationProxyBroadcastReceiver"
android:exported=
"false"
/>
<service
android:name=
"com.umeng.message.UmengMessageCallbackHandlerService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
>
<intent-filter>
<action
android:name=
"com.umeng.messge.registercallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.enablecallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.disablecallback.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.message.handler.action"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"com.umeng.message.message.sendmessage.action"
/>
</intent-filter>
</service>
<service
android:name=
"com.umeng.message.UmengDownloadResourceService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
/>
<provider
android:name=
"com.umeng.message.provider.MessageProvider"
android:authorities=
"${applicationId}.umeng.message"
android:exported=
"false"
>
<grant-uri-permission
android:pathPattern=
".*"
/>
</provider>
<!-- 以下为基本配置信息,需要自行添加至您的AndroidManifest文件中 end-->
</application>
</manifest>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment