summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carver <d_a_carver@yahoo.com>2013-04-25 12:34:00 -0400
committerDavid Carver <d_a_carver@yahoo.com>2013-04-25 12:34:00 -0400
commitd97750d8d13ec2dfcdd8eac0cce1ff36dfb6137f (patch)
tree9e4335c1f2340fa1ff599b6a4798a21dd37e0eb2
parent4707139def5500f1039de669e53822d47855008c (diff)
downloadAntennaPod-d97750d8d13ec2dfcdd8eac0cce1ff36dfb6137f.zip
Enable the app to be installed on a Google TV device.
The app supports all the necessary APKs for Google TV support. While the layouts aren't optimized for navigating around with the D-PAd the app does work. To enable Google TV support just need to specify that touchscreen is not required. Tested on the Sony 2nd gen google tv device.
-rw-r--r--AndroidManifest.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 888aa026a..fae6b862d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -23,6 +23,9 @@
<uses-feature
android:name="android.hardware.screen.portrait"
android:required="false" />
+ <uses-feature
+ android:name="android.hardware.touchscreen"
+ android:required="false" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
@@ -368,4 +371,4 @@
</receiver>
</application>
-</manifest> \ No newline at end of file
+</manifest>