I received the ADT-1 Developer Box in the mail on Tuesday and I was able to create a Corona SDK game that runs on it using the game controller. However, when I publish it to Google Play, it says that is not compatible with the ADT-1.
I believe it has something to do with the manifest file. Since we cannot edit the manifest in Corona SDK, I’ve been trying different build settings, but none of them seem to work.
Here’s my build.settings:
settings ={ orientation = { default = "landscapeRight", supported = { "landscapeRight", "landscapeLeft" }, }, android = { mainIntentFilter = { categories = { "android.intent.category.LEANBACK\_LAUNCHER", "android.intent.action.MAIN" }, }, activities = { "com.gpanimations.mbsttv.TvActivity" }, usesPermissions = { }, }, }
And that’s based off the documentation (https://developer.android.com/training/tv/start/start.html) that you need the following in the manifest:
<activity
android:name=“com.example.android. TvActivity”
android:label="@string/app_name"
android:theme="@style/Theme.Leanback">
<intent-filter>
<action android:name=“android.intent.action.MAIN” />
<category android:name=" android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
I think it’s the TVactivity line that isn’t being read and hence making it show as incompatible on the Play Store. Any suggestions would be greatly appreciated.