Nick
Nick
Looks like the lib is using a pretty old version of Google Play Services which may cause a conflict with the newer version. Perhaps there needs to be some dependency...
This is how I currently have the project included in a build.gradle: ``` // TV Input Framework implementation('com.google.android.libraries.tv:companionlibrary:0.2') { exclude group: "com.google.ads.interactivemedia.v3" exclude group: "com.google.android.gms" exclude group: "com.android.support" } ```...
Can you provide more details about the circumstances of when you encountered this issue?
Yeah I have noticed this as well. In the short-term you may be able to get away with using this in your build.gradle: ``` implementation('com.google.android.libraries.tv:companionlibrary:0.2') { exclude group: "com.google.ads.interactivemedia.v3" exclude...
The latest version, 0.4.1, has updated to the latest support library.
Can you provide more information about how you encountered the circumstances of this issue?
Can you elaborate on this?
You need to get the internal channel id by querying the channels database. Then you can construct a URI and pass that to an intent. ``` Uri liveChannelsUri = TvContract.buildChannelUri(yourChannelId);...
You can use the TvContract classes and run database calls to get the programs you inserted into your database for UI, but you can't get entire program guide (from other...