efd81d36
陶汉栋
no message
|
1
2
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
456ba80d
陶汉栋
no message
|
3
4
5
|
package="com.shunzhi.expressscanner">
<uses-permission android:name="android.permission.INTERNET" />
|
dec84d10
陶汉栋
no message
|
6
7
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
efd81d36
陶汉栋
no message
|
8
9
|
<application
|
456ba80d
陶汉栋
no message
|
10
|
android:name=".AppContext"
|
efd81d36
陶汉栋
no message
|
11
|
android:allowBackup="true"
|
dec84d10
陶汉栋
no message
|
12
|
android:icon="@mipmap/logo"
|
efd81d36
陶汉栋
no message
|
13
|
android:label="@string/app_name"
|
dec84d10
陶汉栋
no message
|
14
|
android:roundIcon="@mipmap/logo"
|
efd81d36
陶汉栋
no message
|
15
|
android:supportsRtl="true"
|
456ba80d
陶汉栋
no message
|
16
17
18
19
|
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
efd81d36
陶汉栋
no message
|
20
21
22
23
|
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
|
bad8dd97
陶汉栋
no message
|
24
25
26
27
28
|
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.HOME_FIRST"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.HOME.SEADEE"/>
<category android:name="android.intent.category.MONKEY"/>
|
efd81d36
陶汉栋
no message
|
29
30
|
</intent-filter>
</activity>
|
bad8dd97
陶汉栋
no message
|
31
32
33
34
35
36
37
38
|
<receiver android:name=".AppReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
|
456ba80d
陶汉栋
no message
|
39
40
41
42
|
<activity
android:name=".base.BaseActivity"
android:label="@string/title_activity_base"
android:theme="@style/AppTheme.NoActionBar"></activity>
|
efd81d36
陶汉栋
no message
|
43
44
45
|
</application>
</manifest>
|