mirror of
https://github.com/danog/termux-api.git
synced 2024-12-12 09:29:46 +01:00
44 lines
2.4 KiB
XML
44 lines
2.4 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"
|
||
|
android:versionCode="2"
|
||
|
android:versionName="0.2" >
|
||
|
|
||
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
||
|
|
||
|
<uses-sdk
|
||
|
android:minSdkVersion="21"
|
||
|
android:targetSdkVersion="22" />
|
||
|
|
||
|
<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" />
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@drawable/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:theme="@android:style/Theme.Material.Light" >
|
||
|
<receiver android:name="com.termux.api.TermuxApiReceiver"/>
|
||
|
<activity android:name="com.termux.api.PhotoActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="false"/>
|
||
|
<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"/>
|
||
|
<service android:name="com.termux.api.SpeechToTextAPI$SpeechToTextService"/>
|
||
|
<service android:name="com.termux.api.TextToSpeechAPI$TextToSpeechService" />
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|