-
Notifications
You must be signed in to change notification settings - Fork 20
/
AndroidManifest.xml
33 lines (33 loc) · 1.85 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.geometerplus.fbreader.plugin.tts" android:versionCode="102000" android:versionName="1.2" android:installLocation="auto">
<uses-sdk android:minSdkVersion="4" android:maxSdkVersion="10"/>
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application android:label="@string/title" android:icon="@drawable/fbreader_plugin">
<receiver android:name=".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=".SpeakActivity" android:configChanges="orientation|keyboardHidden" 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="data.fbreader.org" android:scheme="http" android:path="/plugin/tts/speak" />
</intent-filter>
<intent-filter>
<action android:name="com.fbreader.action.plugin.RUN" />
<category android:name="android.intent.category.DEFAULT" />
<data android:host="data.fbreader.org" android:scheme="http" android:path="/plugin/tts/speak" />
</intent-filter>
</activity>
</application>
</manifest>