30 lines
1 KiB
XML
30 lines
1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.github.nutomic.localroute"
|
|
android:versionCode="1"
|
|
android:versionName="0.1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="8"
|
|
android:targetSdkVersion="18" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<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>
|
|
</application>
|
|
|
|
</manifest>
|