55 lines
2.1 KiB
Kotlin

package com.github.libretube.constants
object IntentData {
const val downloadData = "downloadData"
const val playerData = "playerData"
const val id = "id"
const val videoId = "videoId"
const val videoIds = "videoIds"
const val channelId = "channelId"
const val channelName = "channelName"
const val channelAvatar = "channelAvatar"
const val playlistId = "playlistId"
const val timeStamp = "timeStamp"
const val playlistType = "playlistType"
const val downloading = "downloading"
const val openAudioPlayer = "openAudioPlayer"
const val fragmentToOpen = "fragmentToOpen"
const val comment = "comment"
const val minimizeByDefault = "minimizeByDefault"
const val query = "query"
const val playlistDescription = "playlistDescription"
const val playlistName = "playlistName"
const val shareObjectType = "shareObjectType"
const val shareData = "shareData"
const val currentPosition = "currentPosition"
const val duration = "duration"
const val appUpdateChangelog = "updateChangelog"
const val appUpdateURL = "updateURL"
const val backupFile = "backupFile"
const val playlistTask = "playlistTask"
const val loginTask = "loginTask"
const val logoutTask = "logoutTask"
const val color = "color"
const val streamItem = "streamItem"
const val url = "url"
const val videoStats = "videoStats"
const val bitmapUrl = "bitmapUrl"
const val isCurrentlyPlaying = "isCurrentlyPlaying"
const val isSubscribed = "isSubscribed"
const val sortOptions = "sortOptions"
const val hideWatched = "hideWatched"
const val maxVideoQuality = "maxVideoQuality"
const val maxAudioQuality = "maxAudioQuality"
const val audioLanguage = "audioLanguage"
const val captionLanguage = "captionLanguage"
const val wasIntentStopped = "wasIntentStopped"
const val tabData = "tabData"
const val videoList = "videoList"
const val nextPage = "nextPage"
const val videoInfo = "videoInfo"
const val offlinePlayer = "offlinePlayer"
const val downloadTab = "downloadTab"
const val shuffle = "shuffle"
}