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"
|
2014-10-14 01:31:51 -07:00
|
|
|
android:versionCode="730"
|
2014-10-13 21:56:07 -07:00
|
|
|
android:versionName="0.7.3">
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-08-16 10:31:01 +02:00
|
|
|
<uses-sdk android:minSdkVersion="9"
|
2014-03-29 01:47:15 +01:00
|
|
|
android:targetSdkVersion="19" />
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-09-10 11:56:36 +02:00
|
|
|
<supports-screens
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.telephony" android:required="false" />
|
|
|
|
|
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" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" android:required="false" />
|
2013-08-08 04:26:06 +02:00
|
|
|
<uses-permission android:name="android.permission.BATTERY_STATS" />
|
2013-10-05 17:26:28 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_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" />
|
2014-01-06 19:30:55 +04: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"
|
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
|
|
|
|
android:enabled="true"
|
|
|
|
android:name="org.kde.kdeconnect.BackgroundService">
|
|
|
|
</service>
|
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
2013-09-05 01:37:59 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.MainActivity"
|
2013-08-05 01:11:28 +02:00
|
|
|
android:label="KDE Connect" >
|
2013-08-16 10:31:01 +02:00
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2013-10-30 01:36:00 +01:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.UserInterface.MainSettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity"
|
|
|
|
>
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
|
|
|
</activity>
|
|
|
|
|
2013-07-29 18:42:12 +02:00
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
2013-09-05 01:37:59 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.DeviceActivity"
|
2013-09-05 02:38:06 +02:00
|
|
|
android:label="@string/device"
|
2013-09-18 17:27:52 +02:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity"
|
2013-09-03 17:58:59 +02:00
|
|
|
>
|
2013-08-16 10:31:01 +02:00
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
2013-09-18 17:27:52 +02:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
2013-10-14 16:10:58 +02:00
|
|
|
</activity>
|
2013-08-16 10:31:01 +02:00
|
|
|
|
2013-08-09 22:33:12 +02:00
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
2013-09-05 01:37:59 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.PairActivity"
|
2013-09-05 02:38:06 +02:00
|
|
|
android:label="@string/pair_device"
|
2013-09-18 17:27:52 +02:00
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity"
|
2013-09-03 17:58:59 +02:00
|
|
|
>
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
2013-09-18 17:27:52 +02:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
2013-09-03 17:58:59 +02:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
2013-09-18 17:27:52 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.DeviceActivity"
|
2013-09-03 17:58:59 +02:00
|
|
|
>
|
2013-08-16 10:31:01 +02:00
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
2013-09-18 17:27:52 +02:00
|
|
|
android:value="org.kde.kdeconnect.UserInterface.DeviceActivity" />
|
2013-08-16 10:31:01 +02:00
|
|
|
</activity>
|
2013-07-29 18:42:12 +02:00
|
|
|
|
2014-09-16 15:45:31 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.kdeconnect.UserInterface.PluginSettingsActivity"
|
|
|
|
android:label="@string/mpris_settings"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.SettingsActivity"
|
|
|
|
>
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.SettingsActivity" />
|
|
|
|
</activity>
|
|
|
|
|
2013-09-05 01:37:59 +02: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" />
|
2013-06-19 16:15:25 +02:00
|
|
|
<data android:scheme="package" android:path="org.kde.kdeconnect" />
|
|
|
|
</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>
|
2013-08-16 10:31:01 +02: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" />
|
|
|
|
</intent-filter>-->
|
2013-06-06 05:57:06 +02:00
|
|
|
</receiver>
|
|
|
|
|
2013-09-18 17:27:52 +02:00
|
|
|
<!-- Plugin-related activities and services -->
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity"
|
|
|
|
android:label="@string/remote_control"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.DeviceActivity"
|
|
|
|
>
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.DeviceActivity" />
|
|
|
|
</activity>
|
|
|
|
|
2014-06-26 17:37:32 +00:00
|
|
|
<activity
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
android:name="org.kde.kdeconnect.Plugins.MousePadPlugin.MousePadActivity"
|
|
|
|
android:label="@string/remote_control"
|
2014-10-17 19:10:51 -07:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2014-06-26 17:37:32 +00:00
|
|
|
android:screenOrientation="fullSensor"
|
|
|
|
android:parentActivityName="org.kde.kdeconnect.UserInterface.DeviceActivity"
|
|
|
|
>
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="org.kde.kdeconnect.UserInterface.DeviceActivity" />
|
|
|
|
</activity>
|
|
|
|
|
2013-09-18 17:31:56 +02:00
|
|
|
<activity
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
2013-09-20 17:27:59 +02:00
|
|
|
android:name="org.kde.kdeconnect.UserInterface.ShareToReceiver"
|
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" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2013-09-27 02:58:16 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2013-09-18 17:31:56 +02:00
|
|
|
</activity>
|
|
|
|
|
2013-09-18 17:27:52 +02:00
|
|
|
<service android:name="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationReceiver"
|
|
|
|
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.notification.NotificationListenerService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|