-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
223 lines (189 loc) · 7.55 KB
/
AndroidManifest.xml
File metadata and controls
223 lines (189 loc) · 7.55 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shixi.jxctest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
<!--在sdcard中创建/删除文件的权限 -->
<uses-permission
android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<!--往sdcard中写入数据的权限 -->
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<!-- android:icon="@drawable/ic_launcher" -->
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.shixi.jxctest.MainActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
<!--
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
-->
</activity>
<activity
android:name="com.shixi.jxctest.BasicInfo"
android:label="基本信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.ProviderInfo"
android:label="供货商详细信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.StaffInfo"
android:label="职工详细信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.CustomerInfo"
android:label="客户详细信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.GoodsInfo"
android:label="商品详细信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.AddProviderInfo"
android:label="添加供货商信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.AddStaffInfo"
android:label="添加职工信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.AddCustomerInfo"
android:label="添加客户信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.jxctest.AddGoodsInfo"
android:label="添加商品信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".XiaoShouActivity"
android:label="销售管理"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".LuRuDingDan"
android:label="录入订单"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".TuiDanChuLi"
android:label="退单处理"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".ChaXunDingDan"
android:label="查询订单"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".QianKuanXianShi"
android:label="欠款显示"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".CangKuActivity"
android:label="仓库管理"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".CaiGouActivity"
android:label="采购管理"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".LuRuHuoDan"
android:label="商品信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".ChaXunHuoDan"
android:label="货单信息"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".CaiGouQianKuanXianShi"
android:label="还款"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".TuiCangActivity"
android:label="退仓处理"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".ChaCangActivity"
android:label="仓库商品信息"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".TuiHuoChuLi"
android:label="退货处理"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.log.Login"
android:label="进销存管理系统"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.shixi.log.Register"
android:label="注册"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<activity
android:name="com.shixi.log.FindPwd"
android:label="找回密码"
android:windowSoftInputMode="stateHidden"
android:screenOrientation="landscape">
</activity>
<!-- Settings -->
<activity
android:name=".Settings"
android:theme="@style/MyDialogStyleBottom">
</activity>
<uses-library android:name="android.test.runner" />"
</application>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.shixi.jxctest" android:label="Tests for My App"/>"
</manifest>