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-06-19 16:15:25 +02:00
|
|
|
package="org.kde.kdeconnect"
|
2013-06-06 05:57:06 +02:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
|
2013-08-16 10:31:01 +02:00
|
|
|
<uses-sdk android:minSdkVersion="9"
|
|
|
|
android:targetSdkVersion="18" />
|
2013-06-06 05:57:06 +02:00
|
|
|
|
2013-08-08 04:26:06 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<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"/>
|
|
|
|
<uses-permission android:name="android.permission.BATTERY_STATS" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
|
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
|
|
|
|
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
2013-06-06 05:57:06 +02:00
|
|
|
android:name="org.kde.connect.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-07-29 18:42:12 +02:00
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
android:name="org.kde.connect.DeviceActivity"
|
|
|
|
android:label="Device"
|
|
|
|
android:parentActivityName=".MainActivity">
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MainActivity" />
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
2013-07-29 18:42:12 +02:00
|
|
|
|
2013-08-09 22:33:12 +02:00
|
|
|
<activity
|
2013-08-16 10:31:01 +02:00
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
android:name="org.kde.connect.MprisActivity"
|
|
|
|
android:label="MPRIS controls"
|
|
|
|
android:parentActivityName=".DeviceActivity">
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".DeviceActivity" />
|
|
|
|
</activity>
|
2013-08-09 22:33:12 +02:00
|
|
|
|
2013-07-31 18:02:22 +02:00
|
|
|
<activity
|
|
|
|
android:name="org.kde.connect.SettingsActivity"
|
2013-08-05 01:11:28 +02:00
|
|
|
android:label="KDE Connect Settings"
|
2013-08-16 10:31:01 +02:00
|
|
|
android:parentActivityName=".DeviceActivity">
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".DeviceActivity" />
|
|
|
|
</activity>
|
2013-07-29 18:42:12 +02:00
|
|
|
|
2013-06-06 05:57:06 +02:00
|
|
|
<service
|
|
|
|
android:enabled="true"
|
2013-06-19 16:15:25 +02:00
|
|
|
android:name="org.kde.connect.BackgroundService">
|
2013-06-06 05:57:06 +02:00
|
|
|
</service>
|
|
|
|
|
2013-08-16 10:31:01 +02:00
|
|
|
<receiver android:name="org.kde.connect.KdeConnectBroadcastReceiver">
|
2013-06-19 16:15:25 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED"></action>
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|