This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
HTPCRemote/AndroidManifest.xml
Gered 8568212428 Initial commit in preparation for further work to improve this app.
Since it's been a long while since I've worked on it and it was never version controlled to begin with...
2013-03-04 19:17:16 -05:00

81 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.geredking.htpcremote"
android:versionCode="1"
android:versionName="1.0"
>
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
<application
android:name=".HtpcRemoteApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar"
>
<activity
android:name=".HtpcRemoteActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".HtpcRemoteWidgetBigProvider"
android:label="HTPC Remote Control (Big)"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_remote_control_big_provider"
/>
</receiver>
<receiver
android:name=".HtpcRemoteWidgetMediumProvider"
android:label="HTPC Remote Control (Medium)"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_remote_control_medium_provider"
/>
</receiver>
<receiver
android:name=".HtpcRemoteWidgetSmallProvider"
android:label="HTPC Remote Control (Small)"
>
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_remote_control_small_provider"
/>
</receiver>
<service android:name=".HtpcRemoteService" />
</application>
</manifest>