This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
controldna/AndroidManifest.xml

61 lines
2.3 KiB
XML
Raw Normal View History

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"/>
<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"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_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"
android:theme="@style/Theme.AppCompat.Light" >
2013-05-31 15:03:52 +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
2013-09-19 23:39:21 +00:00
android:name="com.github.nutomic.controldlna.gui.MainActivity"
2013-11-26 02:45:39 +00:00
android:label="@string/app_name"
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>
<service android:name="org.teleal.cling.android.AndroidUpnpServiceImpl" />
2013-06-10 00:24:03 +00:00
<service android:name="com.github.nutomic.controldlna.mediarouter.MediaRouterPlayService" />
2013-09-26 16:29:26 +00:00
<service android:name="com.github.nutomic.controldlna.upnp.RemotePlayService" />
2013-09-26 16:29:26 +00:00
<service android:name="com.github.nutomic.controldlna.upnp.ProviderService"
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>
2013-06-01 15:47:48 +00:00
</application>
2013-05-31 15:03:52 +00:00
</manifest>