forked from alibaba/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
33 lines (30 loc) · 1.13 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.taobao.atlas.update">
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="23" />
<application>
<service
android:name="com.taobao.atlas.dexmerge.DexMergeService"
android:process=":dexmerge">
<intent-filter>
<action android:name="com.taobao.atlas.dexmerge.DexMergeService"></action>
</intent-filter>
</service>
<receiver android:name="com.taobao.atlas.update.AwoPatchReceiver" >
<intent-filter>
<action android:name="com.taobao.atlas.intent.PATCH_APP"/>
</intent-filter>
<intent-filter>
<action android:name="com.taobao.atlas.intent.DEX_PATCH_APP"/>
</intent-filter>
<intent-filter>
<action android:name="com.taobao.atlas.intent.ROLLBACK_PATCH"/>
</intent-filter>
<intent-filter>
<action android:name="com.taobao.atlas.intent.ROLLBACK_DEX_PATCH"/>
</intent-filter>
</receiver>
</application>
</manifest>