Reputation: 1502
I made an update to my app and among other things I set my targetSdkVersion to 14. Now, my app does not appear in the Google TV Market (note that it used to appear before the update).
Any ideas why this might happen?
PS: 1) I know about the "uses touchscreen required=false" tag, so it's not that. 2) I started using the Action Bar Sherlock in this update, but it seems unlikely that this is the cause.
Upvotes: 0
Views: 271
Reputation: 642
The google tv SDK current version is 3.1 honeycomb(12)
U can set a SDK version to 12 in AndroidManifest.xml
<uses-sdk android:minSdkVersion="12" />
above this command ur app will run 12 and above SDK version
and this command will set ur app to 12 SDK version and it will not run above 12 are belove 12 SDK version
<uses-sdk android:targetSdkVersion="12" />
i hope this help u
Upvotes: 0
Reputation: 1502
I think I figured it out. It wasn't the sdk version. It is because of native code currently only built for arm, and google tv runs x86.
Upvotes: 1