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.
localroute/AndroidManifest.xml

31 lines
1.0 KiB
XML
Raw Normal View History

2013-12-16 12:15:52 +00:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2013-12-22 20:37:56 +00:00
package="com.github.nutomic.localroute"
2013-12-16 12:15:52 +00:00
android:versionCode="1"
2013-12-22 20:37:56 +00:00
android:versionName="0.1.0" >
2013-12-16 12:15:52 +00:00
<uses-sdk
android:minSdkVersion="8"
2013-12-24 16:30:11 +00:00
android:targetSdkVersion="19" />
2013-12-22 20:37:56 +00:00
<uses-permission android:name="android.permission.INTERNET" />
2013-12-16 12:15:52 +00:00
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
2013-12-22 20:37:56 +00:00
<service android:name="com.github.nutomic.controldlna.mediarouter.MediaRouterPlayService" />
<service android:name="com.github.nutomic.controldlna.upnp.RemotePlayService" />
<service android:name="com.github.nutomic.localroute.ProviderService"
android:process=":mrp">
<intent-filter>
<action android:name="android.media.MediaRouteProviderService" />
</intent-filter>
</service>
2013-12-16 12:15:52 +00:00
</application>
</manifest>