# tivi **Repository Path**: pythonzz/tivi ## Basic Information - **Project Name**: tivi - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: cb/android-smoke-test - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-13 - **Last Updated**: 2024-09-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![Tivi](art/banner.png) # Tivi 📺 (work-in-progress 👷🔧️👷‍♀️⛏) **This is not an official Google product** Tivi is a **work-in-progress** TV show tracking Android app, which connects to [Trakt.tv](https://www.trakt.tv). ## Download ## Android development Tivi is an app that attempts to use the latest libraries and tools. As a summary: * Entirely written in [Kotlin](https://kotlinlang.org/). * UI completely written in [Jetpack Compose](https://developer.android.com/jetpack/compose) (see below). * Uses [Kotlin Coroutines](https://kotlinlang.org/docs/reference/coroutines/coroutines-guide.html) throughout. * Uses many of the [Architecture Components](https://developer.android.com/topic/libraries/architecture/), including: Room, Lifecycle, Navigation. * Uses [Hilt](https://dagger.dev/hilt/) for dependency injection ## Development setup First off, you require the latest [Android Studio Flamingo](https://developer.android.com/studio/preview) (or newer) to be able to build the app. ### Code style This project uses [ktlint](https://github.com/pinterest/ktlint), provided via the [spotless](https://github.com/diffplug/spotless) gradle plugin, and the bundled project IntelliJ codestyle. If you find that one of your pull reviews does not pass the CI server check due to a code style conflict, you can easily fix it by running: `./gradlew spotlessApply`. ### API keys You need to supply API / client keys for the various services the app uses: - [Trakt.tv](https://trakt.docs.apiary.io) - [TMDb](https://developers.themoviedb.org) You can find information about how to gain access via the relevant links. When creating a Trakt API project, you need to set the OAuth redirect uri to `app.tivi.debug://auth/oauth2callback` for debug build types, or `app.tivi://auth/oauth2callback` for release build types. Once you obtain the keys, you can set them in your `~/.gradle/gradle.properties`: ``` # Get these from Trakt.tv TIVI_TRAKT_CLIENT_ID= TIVI_TRAKT_CLIENT_SECRET= # Get this from TMDb TIVI_TMDB_API_KEY= ``` ## Jetpack Compose As mentioned above, this app's UI is completely written in [Jetpack Compose](https://developer.android.com/jetpack/compose). Some screens highlighted are: ### Show details [[source](/ui-showdetails)] ![Show Details demo](art/show-details.gif) ### Episode details [[source](/ui-episodedetails)] ![Show Details demo](art/episode-details.gif) ### Account [[source](/ui-account)] ![Show Details demo](art/account.png) ## Contributions If you've found an error in this sample, please file an issue. Patches are encouraged and may be submitted by forking this project and submitting a pull request. Since this project is still in its very early stages, if your change is substantial, please raise an issue first to discuss it. ## License ``` Copyright 2016-2021 Google LLC Copyright 2023 Christopher Banes Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```