mirror of
https://github.com/danog/termux-api.git
synced 2024-12-12 09:29:46 +01:00
7f050bded3
Fixes #19.
49 lines
2.9 KiB
XML
49 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.termux.api"
|
|
android:sharedUserId="com.termux">
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SMS" />
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
|
<!-- Resolve phone numbers to contact names: -->
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<!-- Some of the used permissions imply uses-feature, so we need to make it optional.
|
|
See http://developer.android.com/guide/topics/manifest/uses-feature-element.html#permissions -->
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
|
|
<uses-feature android:name="android.hardware.location" android:required="false" />
|
|
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
|
|
<uses-feature android:name="android.hardware.microphone" android:required="false" />
|
|
<uses-feature android:name="android.hardware.telephony" android:required="false" />
|
|
|
|
<!-- This permission is not used, but a permission is needed on the sharedfiles contentprovider,
|
|
which will always use FLAG_GRANT_READ_URI_PERMISSION. -->
|
|
<permission android:name="com.termux.sharedfiles.READ" android:protectionLevel="signature" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.Material.Light" >
|
|
<receiver android:name="com.termux.api.TermuxApiReceiver"/>
|
|
<activity android:name="com.termux.api.DialogActivity" android:theme="@android:style/Theme.Material.Light.Dialog.Alert" android:noHistory="true" android:excludeFromRecents="true" android:exported="false"/>
|
|
<activity android:name="com.termux.api.util.TermuxApiPermissionActivity" android:noHistory="true" android:excludeFromRecents="true" android:exported="false"/>
|
|
<service android:name="com.termux.api.SpeechToTextAPI$SpeechToTextService"/>
|
|
<service android:name="com.termux.api.TextToSpeechAPI$TextToSpeechService" />
|
|
<provider android:authorities="com.termux.sharedfiles"
|
|
android:readPermission="com.termux.sharedfiles.READ"
|
|
android:exported="true"
|
|
android:grantUriPermissions="true"
|
|
android:name="com.termux.api.ShareAPI$ContentProvider" />
|
|
</application>
|
|
|
|
</manifest>
|