2013-06-06 05:57:06 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-09-05 01:35:12 +02:00
|
|
|
package="org.kde.kdeconnect_tp"
|
2018-02-17 10:07:57 +01:00
|
|
|
android:versionCode="1720"
|
|
|
|
android:versionName="1.7.2">
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-09-10 11:56:36 +02:00
|
|
|
<supports-screens
|
|
|
|
android:anyDensity="true"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:xlargeScreens="true" />
|
2013-09-10 11:56:36 +02:00
|
|
|
|
2015-09-08 01:13:39 -07:00
|
|
|
<uses-feature android:name="android.hardware.telephony" android:required="false" />
|
2013-09-10 11:56:36 +02:00
|
|
|
|
2013-08-08 04:26:06 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2013-10-05 17:26:28 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-05-25 00:08:29 +02:00
|
|
|
<!--<uses-permission android:name="android.permission.BLUETOOTH" />-->
|
|
|
|
<!--<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />-->
|
2013-10-05 17:26:28 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
|
2013-08-08 04:26:06 +02:00
|
|
|
<uses-permission android:name="android.permission.BATTERY_STATS" />
|
2015-09-08 01:13:39 -07:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" android:required="false" />
|
2016-08-26 19:08:03 +02:00
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" android:required="false" />
|
2017-07-11 13:50:40 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_SMS" android:required="false" />
|
2013-08-08 04:26:06 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2013-11-23 01:48:46 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2015-08-20 00:59:21 -07:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2016-12-11 21:03:39 +01:00
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2013-08-08 04:26:06 +02:00
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2013-08-05 01:11:28 +02:00
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="KDE Connect"
|
2017-07-29 11:30:26 +02:00
|
|
|
android:supportsRtl="true"
|
2015-06-14 00:58:16 -07:00
|
|
|
android:theme="@style/KdeConnectTheme"
|
2013-08-16 10:31:01 +02:00
|
|
|
>
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-09-18 17:27:52 +02:00
|
|
|
<service
|
2015-08-20 00:59:21 -07:00
|
|
|
android:name="org.kde.kdeconnect.BackgroundService"
|
|
|
|
android:enabled="true" >
|
2013-09-18 17:27:52 +02:00
|
|
|
</service>
|
|
|
|
|
2017-01-23 09:07:18 +01:00
|
|
|
<service android:name="org.kde.kdeconnect.Plugins.RemoteKeyboardPlugin.RemoteKeyboardService"
|
|
|
|
android:label="KDE Connect Remote Keyboard"
|
|
|
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.view.InputMethod" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.view.im" android:resource="@xml/remotekeyboardplugin_method" />
|
|
|
|
</service>
|
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
<activity
|
2015-09-07 01:49:12 -07:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.MaterialActivity"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:label="KDE Connect"
|
|
|
|
android:theme="@style/KdeConnectTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2013-08-16 10:31:01 +02:00
|
|
|
|
2013-09-03 17:58:59 +02:00
|
|
|
<activity
|
2013-09-18 17:27:52 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.SettingsActivity"
|
2015-01-10 00:31:07 -08:00
|
|
|
android:label="@string/device_menu_plugins"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity" >
|
2015-08-20 00:59:21 -07:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
2013-08-16 10:31:01 +02:00
|
|
|
</activity>
|
2014-11-20 23:47:43 -08:00
|
|
|
<activity
|
2015-08-20 00:59:21 -07:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.CustomDevicesActivity"
|
|
|
|
android:label="@string/custom_devices_settings"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity" >
|
2015-08-20 00:59:21 -07:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
2014-11-20 23:47:43 -08:00
|
|
|
</activity>
|
2015-09-07 00:09:28 -07:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.SharePlugin.SendFileActivity"
|
|
|
|
android:label="KDE Connect"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity" >
|
2015-09-07 00:09:28 -07:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
2015-09-07 00:09:28 -07:00
|
|
|
</activity>
|
2014-09-16 15:45:31 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.UserInterface.PluginSettingsActivity"
|
2015-01-10 00:31:07 -08:00
|
|
|
android:label="@string/device_menu_plugins"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.SettingsActivity" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-09-16 15:45:31 +02:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.SettingsActivity" />
|
|
|
|
</activity>
|
2016-09-27 20:26:57 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.SharePlugin.ShareSettingsActivity"
|
|
|
|
android:label="@string/device_menu_plugins"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.SettingsActivity" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.Plugins.SharePlugin.ShareSettingsActivity" />
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
2014-09-16 15:45:31 +02:00
|
|
|
|
2015-08-20 00:59:21 -07:00
|
|
|
<receiver android:name="org.kde.kdeconnect.KdeConnectBroadcastReceiver" >
|
2013-06-19 16:15:25 +02:00
|
|
|
<intent-filter>
|
2013-09-05 10:37:42 +02:00
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
2015-08-20 00:59:21 -07:00
|
|
|
|
|
|
|
<data
|
2015-08-20 01:00:05 -07:00
|
|
|
android:host="kdeconnect"
|
|
|
|
android:path="/"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:scheme="package" />
|
2013-06-19 16:15:25 +02:00
|
|
|
</intent-filter>
|
2013-06-06 05:57:06 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
2013-06-19 16:15:25 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
|
|
|
|
</intent-filter>
|
2015-08-20 00:59:21 -07:00
|
|
|
<!--
|
|
|
|
<intent-filter>
|
2013-08-01 02:30:58 +02:00
|
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
|
|
|
|
</intent-filter>
|
2013-08-16 10:31:01 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PHONE_STATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BATTERY_CHANGED" />
|
2015-08-20 00:59:21 -07:00
|
|
|
</intent-filter>
|
|
|
|
-->
|
2013-06-06 05:57:06 +02:00
|
|
|
</receiver>
|
|
|
|
|
2015-09-11 16:54:43 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity"
|
2017-02-12 21:18:14 +01:00
|
|
|
android:configChanges="orientation|screenSize"
|
2016-11-23 18:31:06 +01:00
|
|
|
android:excludeFromRecents="true"
|
2017-07-29 11:30:26 +02:00
|
|
|
android:label="@string/findmyphone_title"
|
2015-09-11 16:54:43 +02:00
|
|
|
android:launchMode="singleInstance">
|
|
|
|
</activity>
|
|
|
|
|
2013-09-18 17:27:52 +02:00
|
|
|
<!-- Plugin-related activities and services -->
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity"
|
|
|
|
android:label="@string/remote_control"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity"
|
2013-09-18 17:27:52 +02:00
|
|
|
>
|
2015-08-20 00:59:21 -07:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
2013-09-18 17:27:52 +02:00
|
|
|
</activity>
|
2015-09-12 12:28:27 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.RunCommandPlugin.RunCommandActivity"
|
|
|
|
android:label="@string/remote_control"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity"
|
|
|
|
>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
|
|
|
</activity>
|
2014-06-26 17:37:32 +00:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.MousePadPlugin.MousePadActivity"
|
2014-10-17 19:10:51 -07:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:label="@string/remote_control"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MaterialActivity"
|
2015-08-20 00:59:21 -07:00
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2015-09-07 01:49:12 -07:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MaterialActivity" />
|
2014-06-26 17:37:32 +00:00
|
|
|
</activity>
|
2013-09-18 17:31:56 +02:00
|
|
|
<activity
|
2015-01-31 00:16:06 -08:00
|
|
|
android:name="org.kde.kdeconnect.Plugins.SharePlugin.ShareActivity"
|
2013-09-20 14:46:54 +02:00
|
|
|
android:label="KDE Connect"
|
2013-09-18 17:31:56 +02:00
|
|
|
>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
2015-08-20 00:59:21 -07:00
|
|
|
|
2013-09-18 17:31:56 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-20 00:59:21 -07:00
|
|
|
|
2013-09-18 17:31:56 +02:00
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2013-09-27 02:58:16 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2015-08-20 00:59:21 -07:00
|
|
|
|
2013-09-27 02:58:16 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-20 00:59:21 -07:00
|
|
|
|
2013-09-27 02:58:16 +02:00
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2017-07-29 11:30:26 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.service.chooser.chooser_target_service"
|
|
|
|
android:value="org.kde.kdeconnect.Plugins.SharePlugin.ShareChooserTargetService" />
|
2013-09-18 17:31:56 +02:00
|
|
|
</activity>
|
2017-12-20 17:49:36 +01:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="org.kde.kdeconnect_tp.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/fileprovider_paths" />
|
|
|
|
</provider>
|
2015-08-20 00:59:21 -07:00
|
|
|
<service
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationReceiver"
|
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" >
|
2013-09-18 17:27:52 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2017-07-29 11:30:26 +02:00
|
|
|
<service
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.SharePlugin.ShareChooserTargetService"
|
|
|
|
android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.chooser.ChooserTargetService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2013-09-18 17:27:52 +02:00
|
|
|
|
2015-01-10 00:22:53 -08:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationFilterActivity"
|
|
|
|
android:label="@string/title_activity_notification_filter"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.PluginSettingsActivity" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.PluginSettingsActivity" />
|
|
|
|
</activity>
|
2015-01-10 00:31:07 -08:00
|
|
|
|
2016-09-20 10:54:44 +02:00
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|