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"
|
2015-09-10 08:07:06 -07:00
|
|
|
android:versionCode="904"
|
2015-09-07 01:17:49 -07:00
|
|
|
android:versionName="0.9">
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-08-16 10:31:01 +02:00
|
|
|
<uses-sdk android:minSdkVersion="9"
|
2015-06-14 03:04:54 -07:00
|
|
|
android:targetSdkVersion="22" />
|
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" />
|
|
|
|
<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" />
|
|
|
|
<uses-permission android:name="android.permission.SEND_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" />
|
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"
|
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>
|
|
|
|
|
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>
|
|
|
|
|
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"
|
|
|
|
android:label="@string/findmyphone_title"
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
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>
|
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:screenOrientation="fullSensor"
|
|
|
|
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>
|
2013-09-18 17:31:56 +02:00
|
|
|
</activity>
|
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>
|
|
|
|
|
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
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|