-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAndroidManifest.xml
90 lines (88 loc) · 4.69 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
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hyperionics.fbreader.plugin.tts_plus"
>
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<application android:name=".TtsApp" android:icon="@drawable/fbreader_plugin">
<activity android:name=".InfoActivity"
android:label="@string/title"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Black.NoTitleBar"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<receiver android:name="com.hyperionics.fbreader.plugin.tts_plus.PluginInfo">
<intent-filter>
<action android:name="android.fbreader.action.plugin.REGISTER" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
<intent-filter>
<action android:name="com.fbreader.action.plugin.REGISTER" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
</receiver>
<activity android:name="com.hyperionics.fbreader.plugin.tts_plus.SpeakActivity"
android:theme="@android:style/Theme.Dialog"
android:configChanges="orientation|screenSize|keyboardHidden"
>
</activity>
<activity android:name=".CmdActivity"
android:theme="@style/NoAnimDialog"
>
<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="com.hyperionics.fbreader.plugin.tts_plus.COPY_SPEECH_FILES" />
</intent-filter>
</activity>
<activity android:name="com.hyperionics.fbreader.plugin.tts_plus.SettingsActivity"
android:theme="@android:style/Theme.Dialog">
</activity>
<activity android:name="com.hyperionics.fbreader.plugin.tts_plus.StartupActivity"
android:theme="@android:style/Theme.Dialog">
<intent-filter>
<action android:name="android.fbreader.action.plugin.RUN" />
<category android:name="android.intent.category.DEFAULT" />
<data android:host="hyperionics.com" android:scheme="http" android:path="/plugin/tts_plus/speak" />
</intent-filter>
<intent-filter>
<action android:name="com.fbreader.action.plugin.RUN" />
<category android:name="android.intent.category.DEFAULT" />
<data android:host="hyperionics.com" android:scheme="http" android:path="/plugin/tts_plus/speak" />
</intent-filter>
</activity>
<service android:name=".SpeakService">
</service>
<receiver android:name="com.hyperionics.fbreader.plugin.tts_plus.MediaButtonIntentReceiver" android:enabled="false">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
<receiver android:name="com.hyperionics.fbreader.plugin.tts_plus.BluetoothConnectReceiver" android:enabled="false">
<intent-filter>
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
<action android:name="android.bluetooth.device.action.ACL_CONNECTED"/>
</intent-filter>
</receiver>
<receiver android:name=".IncomingReceiver" android:enabled="true">
<intent-filter>
<action android:name="com.hyperionics.fbreader.plugin.tts_plus.SVC_STARTED"/>
<action android:name="com.hyperionics.fbreader.plugin.tts_plus.API_CONNECTED"/>
<action android:name="com.hyperionics.fbreader.plugin.tts_plus.TTSP_KILL"/>
</intent-filter>
</receiver>
</application>
</manifest>