Hello
LG has contacted us to include our game on LG´s Featured channel at Google Play Store, this channel is only visible on new LG smart TVs using Google TV.
They asked us to add these lines to the manifest because it is required for the game to be visible on those TV´s in their Google Plays Store :
android:name=“android.hardware.touchscreen” <uses-feature android:required=“false”/>
android:name=“android.hardware.faketouch” <uses-feature android:required=“false”/>
The equivalent in Corona should be to add these lines in the file build.settings:
usesFeatures =
{
{Name = “android.hardware.touchscreen”, required = false},
{Name = “android.hardware.faketouch”, required = false},
}
The problem is that after we have submitted the new version of our game with these changes to Google Play, Google TV devices (models cosmo and eden) remain in the list of unsupported devices in the developer console.
Any ideas?