2013-05-31 15:03:52 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.github.nutomic.controldlna"
|
2014-04-13 12:47:55 +00:00
|
|
|
android:versionCode="10"
|
|
|
|
android:versionName="0.5.3" >
|
2013-06-01 15:47:48 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
2013-10-18 13:01:26 +00:00
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
|
2013-06-01 15:47:48 +00:00
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
|
2014-05-01 18:55:06 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
2013-05-31 15:03:52 +00:00
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
2013-12-24 16:28:42 +00:00
|
|
|
android:targetSdkVersion="19" />
|
2013-05-31 15:03:52 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2013-09-23 23:45:04 +00:00
|
|
|
android:theme="@style/Theme.AppCompat.Light" >
|
2013-05-31 15:03:52 +00:00
|
|
|
|
2014-04-28 07:13:34 +00:00
|
|
|
<!--
|
|
|
|
NOTE: configChanges is needed to avoid MediaRouterPlayService being
|
|
|
|
killed on screen rotate. (why do you do this, Google???).
|
|
|
|
This comes with some rendering issues on screen rotate (sometimes)
|
|
|
|
on Android 4.4 (but that's not my error).
|
|
|
|
-->
|
2013-05-31 15:03:52 +00:00
|
|
|
<activity
|
2014-05-01 16:46:30 +00:00
|
|
|
android:name=".gui.MainActivity"
|
2013-11-26 02:45:39 +00:00
|
|
|
android:label="@string/app_name"
|
2014-04-28 07:13:34 +00:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize" >
|
2013-05-31 15:03:52 +00:00
|
|
|
|
|
|
|
<intent-filter android:label="@string/app_name" >
|
|
|
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
2014-05-01 16:46:30 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".gui.PreferencesActivity"
|
2014-05-01 18:34:54 +00:00
|
|
|
android:label="@string/settings_title" >
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.github.nutomic.controldlna.gui.MainActivity" />
|
|
|
|
|
|
|
|
</activity>
|
2013-10-03 18:57:36 +00:00
|
|
|
|
|
|
|
<service android:name="org.teleal.cling.android.AndroidUpnpServiceImpl" />
|
2013-06-10 00:24:03 +00:00
|
|
|
|
2014-05-01 16:46:30 +00:00
|
|
|
<service android:name=".mediarouter.MediaRouterPlayService" />
|
2013-09-26 16:29:26 +00:00
|
|
|
|
2014-05-01 16:46:30 +00:00
|
|
|
<service android:name=".upnp.RemotePlayService" />
|
2013-09-26 16:29:26 +00:00
|
|
|
|
2014-05-01 16:46:30 +00:00
|
|
|
<service android:name=".upnp.ProviderService"
|
2014-01-04 16:25:56 +00:00
|
|
|
android:label="@string/upnp_route_provider_service"
|
2013-09-26 16:29:26 +00:00
|
|
|
android:process=":mrp">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.media.MediaRouteProviderService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2014-05-01 22:23:12 +00:00
|
|
|
|
|
|
|
<service android:name=".localroute.ProviderService"
|
|
|
|
android:process=":mrp">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.media.MediaRouteProviderService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2013-06-01 15:47:48 +00:00
|
|
|
|
|
|
|
</application>
|
2013-05-31 15:03:52 +00:00
|
|
|
|
|
|
|
</manifest>
|