-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAndroidManifest.xml
executable file
·63 lines (57 loc) · 2.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.sengjea.calibre"
android:versionCode="9"
android:versionName="1.1.4.4" >
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<meta-data android:name="android.app.default_searchable"
android:value=".BookSearchActivity" />
<activity
android:name="net.sengjea.calibre.MainActivity"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="net.sengjea.calibre.CalibreService"
android:icon="@drawable/ic_launcher"
android:label="@string/service_name" >
</service>
<receiver
android:name="net.sengjea.calibre.ServiceReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter>
<action android:name="android.net.wifi.STATE_CHANGE" />
</intent-filter>
</receiver>
<activity
android:name="net.sengjea.calibre.OpenBookActivity"
android:enabled="true"
android:exported="false"
android:finishOnTaskLaunch="true">
</activity>
<activity android:name="net.sengjea.calibre.SettingsActivity" >
</activity>
<activity android:name=".BookSearchActivity">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
</application>
</manifest>