forked from jingle1267/android-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
43 lines (38 loc) · 1.73 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
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.worthed"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8"/>
<!-- 工具库中有些工具类需要这些权限 可根据应用需求进行删减 -->
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:name="com.ihongqiqu.app.BaseApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<!-- 工具库中不需要下列测试Activity -->
<activity
android:name="com.ihongqiqu.demo.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name="com.ihongqiqu.demo.BitmapActivity"
android:label="BitmapDemo"></activity>
<activity
android:name="com.ihongqiqu.demo.ViewFinderActivity"
android:label="ViewFinderDemo">
</activity>
<!-- 注册自定义静态广播接收器 开机启动工具类需要此配置 -->
<receiver android:name="com.ihongqiqu.app.StartAppReceiver" />
</application>
</manifest>