diff --git a/.gitignore b/.gitignore index 7806729..ebfcc5b 100644 --- a/.gitignore +++ b/.gitignore @@ -55,6 +55,8 @@ android-tv/.kotlin/ # Build and Release release/ *.apk +!frontend-react/public/streamflow-tv.apk +*.zip # Environment and IDE .agent/ diff --git a/README.md b/README.md index 05bd2e9..4c827e0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# StreamFlow V3.7 +# StreamFlow V3.9 A high-performance video streaming web application with a pure Go backend and modern React + Tailwind frontend. @@ -31,7 +31,7 @@ version: '3.8' services: streamflow: - image: git.khoavo.myds.me/vndangkhoa/kv-streamflow:v3.8 + image: git.khoavo.myds.me/vndangkhoa/kv-streamflow:v3.9 container_name: streamflow platform: linux/amd64 ports: @@ -119,7 +119,14 @@ Streamflow/ ## Changelog -### v3.7 (Current) +### v3.9 (Current) +- Bundled Android TV APK with the webapp for direct download +- Verified D-pad navigation on Android TV app + +### v3.8 +- Updated docker compose configuration + +### v3.7 - Codebase cleanup and security improvements - Added SSRF protection with URL validation - Added graceful shutdown and config module diff --git a/android-tv/app/src/main/AndroidManifest.xml b/android-tv/app/src/main/AndroidManifest.xml index 810c5bd..93c9385 100644 --- a/android-tv/app/src/main/AndroidManifest.xml +++ b/android-tv/app/src/main/AndroidManifest.xml @@ -6,7 +6,7 @@ + android:required="false" /> @@ -30,6 +30,7 @@ + diff --git a/android-tv/app/src/main/java/com/streamflow/tv/MainActivity.kt b/android-tv/app/src/main/java/com/streamflow/tv/MainActivity.kt index cc90c9d..0cdee94 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/MainActivity.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/MainActivity.kt @@ -1,6 +1,7 @@ package com.streamflow.tv import android.os.Bundle +import android.util.Log import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.compose.foundation.background @@ -22,31 +23,11 @@ import com.streamflow.tv.ui.theme.StreamFlowTheme import com.streamflow.tv.ui.theme.StreamFlowTvTheme import kotlinx.coroutines.flow.first import kotlinx.coroutines.launch -import coil.Coil -import coil.ImageLoader -import coil.disk.DiskCache -import coil.memory.MemoryCache class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) - - // Setup Coil with caching - val imageLoader = ImageLoader.Builder(this) - .memoryCache { - MemoryCache.Builder(this) - .maxSizePercent(0.25) - .build() - } - .diskCache { - DiskCache.Builder() - .directory(this.cacheDir.resolve("image_cache")) - .maxSizePercent(0.02) - .build() - } - .build() - Coil.setImageLoader(imageLoader) - + Log.d("MainActivity", "onCreate started") setContent { StreamFlowTvApp() } @@ -65,10 +46,15 @@ fun StreamFlowTvApp() { // Load persisted settings LaunchedEffect(Unit) { - currentTheme = userRepo.theme.first() - val serverUrl = userRepo.serverUrl.first() - if (serverUrl.isNotBlank()) { - ApiClient.baseUrl = serverUrl + try { + currentTheme = userRepo.theme.first() + val serverUrl = userRepo.serverUrl.first() + if (serverUrl.isNotBlank()) { + ApiClient.baseUrl = serverUrl + } + Log.d("StreamFlowTvApp", "Settings loaded: theme=$currentTheme, url=$serverUrl") + } catch (e: Exception) { + Log.e("StreamFlowTvApp", "Error loading settings", e) } } @@ -146,9 +132,8 @@ fun StreamFlowTvApp() { ) { entry -> val slug = entry.arguments?.getString("slug") val episode = entry.arguments?.getInt("episode") ?: 1 - android.util.Log.e("StreamFlowNav", "Navigating to player: slug=$slug, episode=$episode") + Log.d("StreamFlowNav", "Navigating to player: slug=$slug, episode=$episode") if (slug == null) { - android.util.Log.e("StreamFlowNav", "Slug is null - not rendering PlayerScreen") return@composable } PlayerScreen( diff --git a/android-tv/app/src/main/java/com/streamflow/tv/StreamFlowApp.kt b/android-tv/app/src/main/java/com/streamflow/tv/StreamFlowApp.kt index 7752c4d..481d8d6 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/StreamFlowApp.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/StreamFlowApp.kt @@ -1,9 +1,30 @@ package com.streamflow.tv import android.app.Application +import coil.ImageLoader +import coil.ImageLoaderFactory +import coil.disk.DiskCache +import coil.memory.MemoryCache -class StreamFlowApp : Application() { +class StreamFlowApp : Application(), ImageLoaderFactory { override fun onCreate() { super.onCreate() } + + override fun newImageLoader(): ImageLoader { + return ImageLoader.Builder(this) + .memoryCache { + MemoryCache.Builder(this) + .maxSizePercent(0.25) + .build() + } + .diskCache { + DiskCache.Builder() + .directory(this.cacheDir.resolve("image_cache")) + .maxSizePercent(0.02) + .build() + } + .respectCacheHeaders(false) // Often needed for some CDNs + .build() + } } diff --git a/android-tv/app/src/main/java/com/streamflow/tv/data/api/ApiClient.kt b/android-tv/app/src/main/java/com/streamflow/tv/data/api/ApiClient.kt index c14fc61..483214f 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/data/api/ApiClient.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/data/api/ApiClient.kt @@ -2,6 +2,7 @@ package com.streamflow.tv.data.api import com.squareup.moshi.Moshi import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory +import okhttp3.Interceptor import okhttp3.OkHttpClient import okhttp3.logging.HttpLoggingInterceptor import retrofit2.Retrofit @@ -10,23 +11,35 @@ import java.util.concurrent.TimeUnit object ApiClient { - // Production server on Synology NAS - var baseUrl: String = "https://nf.khoavo.myds.me/" + private var _baseUrl: String = "https://nf.khoavo.myds.me/" + + var baseUrl: String + get() = _baseUrl set(value) { - field = if (value.endsWith("/")) value else "$value/" - _api = null // Reset to rebuild + _baseUrl = if (value.endsWith("/")) value else "$value/" + synchronized(this) { + _api = null // Reset to rebuild + } } private val moshi: Moshi = Moshi.Builder() .addLast(KotlinJsonAdapterFactory()) .build() + private val userAgentInterceptor = Interceptor { chain -> + val request = chain.request().newBuilder() + .header("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36") + .build() + chain.proceed(request) + } + private val okHttpClient: OkHttpClient = OkHttpClient.Builder() - .connectTimeout(15, TimeUnit.SECONDS) - .readTimeout(30, TimeUnit.SECONDS) + .connectTimeout(20, TimeUnit.SECONDS) + .readTimeout(60, TimeUnit.SECONDS) + .addInterceptor(userAgentInterceptor) .addInterceptor( HttpLoggingInterceptor().apply { - level = HttpLoggingInterceptor.Level.BASIC + level = HttpLoggingInterceptor.Level.HEADERS } ) .build() @@ -35,18 +48,21 @@ object ApiClient { val api: StreamFlowApi get() { - if (_api == null) { - _api = Retrofit.Builder() - .baseUrl(baseUrl) - .client(okHttpClient) - .addConverterFactory(MoshiConverterFactory.create(moshi)) - .build() - .create(StreamFlowApi::class.java) + return synchronized(this) { + if (_api == null) { + _api = Retrofit.Builder() + .baseUrl(_baseUrl) + .client(okHttpClient) + .addConverterFactory(MoshiConverterFactory.create(moshi)) + .build() + .create(StreamFlowApi::class.java) + } + _api!! } - return _api!! } fun imageProxyUrl(url: String, width: Int = 400): String { - return "${baseUrl}api/images/proxy?url=${java.net.URLEncoder.encode(url, "UTF-8")}&width=$width" + val base = _baseUrl.removeSuffix("/") + return "$base/api/images/proxy?url=${java.net.URLEncoder.encode(url, "UTF-8")}&width=$width" } } diff --git a/android-tv/app/src/main/java/com/streamflow/tv/ui/components/SideNavRail.kt b/android-tv/app/src/main/java/com/streamflow/tv/ui/components/SideNavRail.kt index d9ebb89..7f6618e 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/ui/components/SideNavRail.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/ui/components/SideNavRail.kt @@ -15,6 +15,8 @@ import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.unit.dp import androidx.tv.material3.* import com.streamflow.tv.ui.theme.StreamFlowTheme +import androidx.compose.ui.focus.FocusRequester +import androidx.compose.ui.focus.focusRequester data class NavItem( val id: String, @@ -39,6 +41,15 @@ fun SideNavRail( modifier: Modifier = Modifier ) { val colors = StreamFlowTheme.colors + val focusRequester = remember { FocusRequester() } + + LaunchedEffect(Unit) { + try { + focusRequester.requestFocus() + } catch (e: Exception) { + // Ignore + } + } Column( modifier = modifier @@ -71,7 +82,8 @@ fun SideNavRail( item = item, isSelected = selectedId == item.id, onClick = { onNavigate(item) }, - accentColor = colors.primary + accentColor = colors.primary, + modifier = if (item.id == "home") Modifier.focusRequester(focusRequester) else Modifier ) } } @@ -84,13 +96,14 @@ private fun NavRailItem( item: NavItem, isSelected: Boolean, onClick: () -> Unit, - accentColor: Color + accentColor: Color, + modifier: Modifier = Modifier ) { var isFocused by remember { mutableStateOf(false) } Surface( onClick = onClick, - modifier = Modifier + modifier = modifier .size(48.dp), shape = ClickableSurfaceDefaults.shape(shape = RoundedCornerShape(12.dp)), colors = ClickableSurfaceDefaults.colors( diff --git a/android-tv/app/src/main/java/com/streamflow/tv/ui/screens/DetailScreen.kt b/android-tv/app/src/main/java/com/streamflow/tv/ui/screens/DetailScreen.kt index d7999ea..5975b73 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/ui/screens/DetailScreen.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/ui/screens/DetailScreen.kt @@ -36,120 +36,165 @@ fun DetailScreen( viewModel: DetailViewModel = viewModel() ) { val uiState by viewModel.uiState.collectAsState() + val colors = StreamFlowTheme.colors LaunchedEffect(slug) { viewModel.loadMovie(slug) } - Log.e("DetailScreen", "Composing DetailScreen(slug=$slug, isLoading=${uiState.isLoading})") + Log.d("DetailScreen", "Composing DetailScreen(slug=$slug, isLoading=${uiState.isLoading})") Box( - modifier = Modifier.fillMaxSize(), + modifier = Modifier + .fillMaxSize() + .background(colors.background), contentAlignment = Alignment.Center ) { - val movie = uiState.movie ?: return@Box - Log.e("DetailScreen", "Rendering movie details: ${movie.title}") + if (uiState.isLoading) { + CircularLoadingIndicator() + } else if (uiState.error != null) { + ErrorState(message = uiState.error ?: "Unknown error", onRetry = { viewModel.loadMovie(slug) }) + } else { + val movie = uiState.movie ?: return@Box + Log.d("DetailScreen", "Rendering movie details: ${movie.title}") - val colors = StreamFlowTheme.colors + // Background Image + AsyncImage( + model = ApiClient.imageProxyUrl(movie.backdrop ?: movie.thumbnail, 1280), + contentDescription = null, + contentScale = ContentScale.Crop, + modifier = Modifier.fillMaxSize() + ) - // Background Image - AsyncImage( - model = ApiClient.imageProxyUrl(movie.backdrop ?: movie.thumbnail, 1280), - contentDescription = null, - contentScale = ContentScale.Crop, - modifier = Modifier.fillMaxSize() - ) - - // Gradient Overlays - Box( - modifier = Modifier - .fillMaxSize() - .background( - Brush.horizontalGradient( - colors = listOf( - colors.background.copy(alpha = 0.95f), - colors.background.copy(alpha = 0.7f), - Color.Transparent + // Gradient Overlays + Box( + modifier = Modifier + .fillMaxSize() + .background( + Brush.horizontalGradient( + colors = listOf( + colors.background.copy(alpha = 0.95f), + colors.background.copy(alpha = 0.7f), + Color.Transparent + ) ) ) - ) - ) - Box( - modifier = Modifier - .fillMaxWidth() - .fillMaxHeight(0.3f) - .align(Alignment.BottomCenter) - .background( - Brush.verticalGradient( - colors = listOf(Color.Transparent, colors.background) + ) + Box( + modifier = Modifier + .fillMaxWidth() + .fillMaxHeight(0.3f) + .align(Alignment.BottomCenter) + .background( + Brush.verticalGradient( + colors = listOf(Color.Transparent, colors.background) + ) ) - ) - ) + ) - // Content - val focusRequester = remember { FocusRequester() } + // Content + val focusRequester = remember { FocusRequester() } - LaunchedEffect(uiState.movie) { - if (uiState.movie != null) { - focusRequester.requestFocus() - android.util.Log.e("DetailScreen", "Focus requested on Play button") + LaunchedEffect(uiState.movie) { + if (uiState.movie != null) { + focusRequester.requestFocus() + } } - } - Column( - modifier = Modifier - .fillMaxSize() - .padding(horizontal = 48.dp, vertical = 32.dp), - verticalArrangement = Arrangement.Center - ) { - Text( - text = movie.title, - style = StreamFlowTheme.typography.displayLarge, - maxLines = 2, - overflow = TextOverflow.Ellipsis - ) - - Spacer(Modifier.height(16.dp)) - - Text( - text = movie.description, - style = StreamFlowTheme.typography.bodyMedium, - maxLines = 3, - overflow = TextOverflow.Ellipsis, - modifier = Modifier.widthIn(max = 600.dp) - ) - - Spacer(Modifier.height(32.dp)) - - Surface( - onClick = { onPlayClick(movie.slug, 1) }, - shape = ClickableSurfaceDefaults.shape(shape = RoundedCornerShape(8.dp)), - colors = ClickableSurfaceDefaults.colors( - containerColor = colors.primary, - focusedContainerColor = colors.accent - ), - scale = ClickableSurfaceDefaults.scale(focusedScale = 1.05f), - modifier = Modifier.focusRequester(focusRequester) + Column( + modifier = Modifier + .fillMaxSize() + .padding(horizontal = 48.dp, vertical = 32.dp), + verticalArrangement = Arrangement.Center ) { Text( - "▶ Play", - style = StreamFlowTheme.typography.titleMedium.copy(color = Color.White), - modifier = Modifier.padding(horizontal = 24.dp, vertical = 12.dp) + text = movie.title, + style = StreamFlowTheme.typography.displayLarge, + maxLines = 2, + overflow = TextOverflow.Ellipsis ) - } - - if (!movie.episodes.isNullOrEmpty()) { - Spacer(Modifier.height(32.dp)) - EpisodeSelector( - episodes = movie.episodes, - currentEpisode = 1, // Default to 1 for initial detail load - onEpisodeSelect = { episode -> onPlayClick(movie.slug, episode.number) }, - modifier = Modifier - .fillMaxWidth() - .height(200.dp) + Spacer(Modifier.height(16.dp)) + + Text( + text = movie.description, + style = StreamFlowTheme.typography.bodyMedium, + maxLines = 3, + overflow = TextOverflow.Ellipsis, + modifier = Modifier.widthIn(max = 600.dp) ) + + Spacer(Modifier.height(32.dp)) + + Surface( + onClick = { onPlayClick(movie.slug, 1) }, + shape = ClickableSurfaceDefaults.shape(shape = RoundedCornerShape(8.dp)), + colors = ClickableSurfaceDefaults.colors( + containerColor = colors.primary, + focusedContainerColor = colors.accent + ), + scale = ClickableSurfaceDefaults.scale(focusedScale = 1.05f), + modifier = Modifier.focusRequester(focusRequester) + ) { + Text( + "▶ Play", + style = StreamFlowTheme.typography.titleMedium.copy(color = Color.White), + modifier = Modifier.padding(horizontal = 24.dp, vertical = 12.dp) + ) + } + + if (!movie.episodes.isNullOrEmpty()) { + Spacer(Modifier.height(32.dp)) + + EpisodeSelector( + episodes = movie.episodes, + currentEpisode = 1, + onEpisodeSelect = { episode -> onPlayClick(movie.slug, episode.number) }, + modifier = Modifier + .fillMaxWidth() + .height(200.dp) + ) + } } } } } + +@Composable +fun CircularLoadingIndicator() { + Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) { + Text( + text = "Loading...", + style = StreamFlowTheme.typography.headlineMedium.copy(color = StreamFlowTheme.colors.primary) + ) + } +} + +@OptIn(ExperimentalTvMaterial3Api::class) +@Composable +fun ErrorState(message: String, onRetry: () -> Unit) { + Column( + modifier = Modifier.fillMaxSize(), + verticalArrangement = Arrangement.Center, + horizontalAlignment = Alignment.CenterHorizontally + ) { + val colors = StreamFlowTheme.colors + Text( + text = message, + style = StreamFlowTheme.typography.bodyLarge.copy(color = Color.Red), + modifier = Modifier.padding(bottom = 16.dp) + ) + Surface( + onClick = onRetry, + shape = ClickableSurfaceDefaults.shape(shape = RoundedCornerShape(8.dp)), + colors = ClickableSurfaceDefaults.colors( + containerColor = colors.surfaceVariant + ) + ) { + Text( + "Retry", + modifier = Modifier.padding(horizontal = 24.dp, vertical = 12.dp) + ) + } + } +} diff --git a/android-tv/app/src/main/java/com/streamflow/tv/ui/theme/Theme.kt b/android-tv/app/src/main/java/com/streamflow/tv/ui/theme/Theme.kt index be14900..4701b4e 100644 --- a/android-tv/app/src/main/java/com/streamflow/tv/ui/theme/Theme.kt +++ b/android-tv/app/src/main/java/com/streamflow/tv/ui/theme/Theme.kt @@ -2,6 +2,7 @@ package com.streamflow.tv.ui.theme import androidx.compose.runtime.* import androidx.compose.ui.graphics.Color +import androidx.tv.material3.* data class StreamFlowColors( val primary: Color, @@ -53,13 +54,69 @@ fun streamFlowColors(themeName: String): StreamFlowColors { } } +@OptIn(ExperimentalTvMaterial3Api::class) @Composable fun StreamFlowTvTheme( themeName: String = "default", content: @Composable () -> Unit ) { val colors = streamFlowColors(themeName) + + val colorScheme = ColorScheme( + primary = colors.primary, + onPrimary = Color.White, + primaryContainer = colors.primary.copy(alpha = 0.3f), + onPrimaryContainer = Color.White, + secondary = colors.secondary, + onSecondary = Color.White, + secondaryContainer = colors.secondary.copy(alpha = 0.3f), + onSecondaryContainer = Color.White, + tertiary = colors.accent, + onTertiary = Color.Black, + tertiaryContainer = colors.accent.copy(alpha = 0.3f), + onTertiaryContainer = Color.White, + background = colors.background, + onBackground = Color.White, + surface = colors.surface, + onSurface = Color.White, + surfaceVariant = colors.surfaceVariant, + onSurfaceVariant = Color.White, + error = Color.Red, + onError = Color.White, + errorContainer = Color.Red.copy(alpha = 0.1f), + onErrorContainer = Color.Red, + border = colors.divider, + borderVariant = colors.divider, + scrim = Color.Black, + inverseSurface = Color.White, + inverseOnSurface = Color.Black, + inversePrimary = colors.primary, + surfaceTint = colors.primary + ) + + val tvTypography = Typography( + displayLarge = AppTypography.displayLarge, + displayMedium = AppTypography.displayMedium, + displaySmall = AppTypography.displayMedium, + headlineLarge = AppTypography.headlineLarge, + headlineMedium = AppTypography.headlineMedium, + headlineSmall = AppTypography.headlineMedium, + titleLarge = AppTypography.titleLarge, + titleMedium = AppTypography.titleMedium, + titleSmall = AppTypography.titleMedium, + bodyLarge = AppTypography.bodyLarge, + bodyMedium = AppTypography.bodyMedium, + bodySmall = AppTypography.bodyMedium, + labelLarge = AppTypography.labelLarge, + labelMedium = AppTypography.labelLarge, + labelSmall = AppTypography.labelSmall + ) + CompositionLocalProvider(LocalStreamFlowColors provides colors) { - content() + MaterialTheme( + colorScheme = colorScheme, + typography = tvTypography, + content = content + ) } } diff --git a/android-tv/dump_initial.xml b/android-tv/dump_initial.xml new file mode 100644 index 0000000..9cbc44d --- /dev/null +++ b/android-tv/dump_initial.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/android-tv/gradle-8.4/LICENSE b/android-tv/gradle-8.4/LICENSE new file mode 100644 index 0000000..f013fd5 --- /dev/null +++ b/android-tv/gradle-8.4/LICENSE @@ -0,0 +1,420 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================================== +Licenses for included components: + +------------------------------------------------------------------------------ +Eclipse Public License 1.0 +https://opensource.org/licenses/EPL-1.0 + +junit:junit +org.sonatype.aether:aether-api +org.sonatype.aether:aether-connector-wagon +org.sonatype.aether:aether-impl +org.sonatype.aether:aether-spi +org.sonatype.aether:aether-util + +------------------------------------------------------------------------------ +3-Clause BSD +https://opensource.org/licenses/BSD-3-Clause + +com.google.code.findbugs:jsr305 + +org.hamcrest:hamcrest-core +BSD License + +Copyright (c) 2000-2015 www.hamcrest.org +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list of +conditions and the following disclaimer. Redistributions in binary form must reproduce +the above copyright notice, this list of conditions and the following disclaimer in +the documentation and/or other materials provided with the distribution. + +Neither the name of Hamcrest nor the names of its contributors may be used to endorse +or promote products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +com.esotericsoftware.kryo:kryo +com.esotericsoftware.minlog:minlog +Copyright (c) 2008-2018, Nathan Sweet All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +Neither the name of Esoteric Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +org.ow2.asm:asm +org.ow2.asm:asm-analysis +org.ow2.asm:asm-commons +org.ow2.asm:asm-tree +org.ow2.asm:asm-util +ASM: a very small and fast Java bytecode manipulation framework + Copyright (c) 2000-2011 INRIA, France Telecom + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ +MIT + +com.googlecode.plist:dd-plist +dd-plist - An open source library to parse and generate property lists +Copyright (C) 2016 Daniel Dreibrodt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +org.bouncycastle:bcpg-jdk15on +org.bouncycastle:bcprov-jdk15on +Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +org.slf4j:jcl-over-slf4j +org.slf4j:jul-to-slf4j +org.slf4j:log4j-over-slf4j +org.slf4j:slf4j-api + Copyright (c) 2004-2017 QOS.ch + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +------------------------------------------------------------------------------ +CDDL +https://opensource.org/licenses/CDDL-1.0 + +com.sun.xml.bind:jaxb-impl + +------------------------------------------------------------------------------ +LGPL 2.1 +https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html + +org.samba.jcifs:jcifs + +org.jetbrains.intellij.deps:trove4j + +------------------------------------------------------------------------------ +License for the GNU Trove library included by the Kotlin embeddable compiler +------------------------------------------------------------------------------ +The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). + + Copyright (c) 2001, Eric D. Friedman All Rights Reserved. This library is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + +Two classes (HashFunctions and PrimeFinder) included in Trove are licensed under the following terms: + + Copyright (c) 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software + and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the + suitability of this software for any purpose. It is provided "as is" without expressed or implied warranty. + +The source code of modified GNU Trove library is available at + https://github.com/JetBrains/intellij-deps-trove4j (with trove4j_changes.txt describing the changes) + +------------------------------------------------------------------------------ +Eclipse Distribution License 1.0 +https://www.eclipse.org/org/documents/edl-v10.php + +org.eclipse.jgit:org.eclipse.jgit + +------------------------------------------------------------------------------ +BSD-style + +com.jcraft:jsch +com.jcraft:jzlib + +Copyright (c) 2000-2011 ymnk, JCraft,Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the distribution. + + 3. The names of the authors may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, +INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ +Eclipse Public License 2.0 +https://www.eclipse.org/legal/epl-2.0/ + +org.junit.platform:junit-platform-launcher + +------------------------------------------------------------------------------ +Mozilla Public License 2.0 +https://www.mozilla.org/en-US/MPL/2.0/ + +org.mozilla:rhino diff --git a/android-tv/gradle-8.4/NOTICE b/android-tv/gradle-8.4/NOTICE new file mode 100644 index 0000000..00a36ef --- /dev/null +++ b/android-tv/gradle-8.4/NOTICE @@ -0,0 +1,21 @@ +========================================================================= +== NOTICE file corresponding to the section 4 d of == +== the Apache License, Version 2.0, == +== in this case for the Gradle distribution. == +========================================================================= + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +It includes the following other software: + +Groovy (http://groovy-lang.org) +SLF4J (http://www.slf4j.org) +JUnit (http://www.junit.org) +JCIFS (http://jcifs.samba.org) +HttpClient (https://hc.apache.org/httpcomponents-client-4.5.x/) + +For licenses, see the LICENSE file. + +If any software distributed with Gradle does not have an Apache 2 License, its license is explicitly listed in the +LICENSE file. diff --git a/android-tv/gradle-8.4/README b/android-tv/gradle-8.4/README new file mode 100644 index 0000000..97d48bd --- /dev/null +++ b/android-tv/gradle-8.4/README @@ -0,0 +1,11 @@ +Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins. + +For more information about Gradle, please visit: https://gradle.org + +If you are using the "all" distribution, the User Manual is included in your distribution. + +If you are using the "bin" distribution, a copy of the User Manual is available on https://docs.gradle.org. + +Typing `gradle help` prints the command line help. + +Typing `gradle tasks` shows all the tasks of a Gradle build. diff --git a/android-tv/gradle-8.4/bin/gradle b/android-tv/gradle-8.4/bin/gradle new file mode 100644 index 0000000..3404a17 --- /dev/null +++ b/android-tv/gradle-8.4/bin/gradle @@ -0,0 +1,249 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# 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. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}.." > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/lib/gradle-launcher-8.4.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/gradle-instrumentation-agent-8.4.jar\"" + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.launcher.GradleMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/android-tv/gradle-8.4/bin/gradle.bat b/android-tv/gradle-8.4/bin/gradle.bat new file mode 100644 index 0000000..9c2613c --- /dev/null +++ b/android-tv/gradle-8.4/bin/gradle.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME%.. + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" "-javaagent:%APP_HOME%/lib/agents/gradle-instrumentation-agent-8.4.jar" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\lib\gradle-launcher-8.4.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.launcher.GradleMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/android-tv/gradle-8.4/init.d/readme.txt b/android-tv/gradle-8.4/init.d/readme.txt new file mode 100644 index 0000000..d8e210f --- /dev/null +++ b/android-tv/gradle-8.4/init.d/readme.txt @@ -0,0 +1 @@ +You can add .gradle (e.g. test.gradle) init scripts to this directory. Each one is executed at the start of the build. diff --git a/android-tv/gradle-8.4/lib/HikariCP-4.0.3.jar b/android-tv/gradle-8.4/lib/HikariCP-4.0.3.jar new file mode 100644 index 0000000..f328920 Binary files /dev/null and b/android-tv/gradle-8.4/lib/HikariCP-4.0.3.jar differ diff --git a/android-tv/gradle-8.4/lib/agents/gradle-instrumentation-agent-8.4.jar b/android-tv/gradle-8.4/lib/agents/gradle-instrumentation-agent-8.4.jar new file mode 100644 index 0000000..0f4ed91 Binary files /dev/null and b/android-tv/gradle-8.4/lib/agents/gradle-instrumentation-agent-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/annotations-24.0.1.jar b/android-tv/gradle-8.4/lib/annotations-24.0.1.jar new file mode 100644 index 0000000..a4198f7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/annotations-24.0.1.jar differ diff --git a/android-tv/gradle-8.4/lib/ant-1.10.13.jar b/android-tv/gradle-8.4/lib/ant-1.10.13.jar new file mode 100644 index 0000000..6dad9ad Binary files /dev/null and b/android-tv/gradle-8.4/lib/ant-1.10.13.jar differ diff --git a/android-tv/gradle-8.4/lib/ant-antlr-1.10.12.jar b/android-tv/gradle-8.4/lib/ant-antlr-1.10.12.jar new file mode 100644 index 0000000..909f37e Binary files /dev/null and b/android-tv/gradle-8.4/lib/ant-antlr-1.10.12.jar differ diff --git a/android-tv/gradle-8.4/lib/ant-junit-1.10.12.jar b/android-tv/gradle-8.4/lib/ant-junit-1.10.12.jar new file mode 100644 index 0000000..d6cae3e Binary files /dev/null and b/android-tv/gradle-8.4/lib/ant-junit-1.10.12.jar differ diff --git a/android-tv/gradle-8.4/lib/ant-launcher-1.10.13.jar b/android-tv/gradle-8.4/lib/ant-launcher-1.10.13.jar new file mode 100644 index 0000000..8718a72 Binary files /dev/null and b/android-tv/gradle-8.4/lib/ant-launcher-1.10.13.jar differ diff --git a/android-tv/gradle-8.4/lib/antlr4-runtime-4.7.2.jar b/android-tv/gradle-8.4/lib/antlr4-runtime-4.7.2.jar new file mode 100644 index 0000000..7a27e1b Binary files /dev/null and b/android-tv/gradle-8.4/lib/antlr4-runtime-4.7.2.jar differ diff --git a/android-tv/gradle-8.4/lib/asm-9.5.jar b/android-tv/gradle-8.4/lib/asm-9.5.jar new file mode 100644 index 0000000..f5701dc Binary files /dev/null and b/android-tv/gradle-8.4/lib/asm-9.5.jar differ diff --git a/android-tv/gradle-8.4/lib/asm-commons-9.5.jar b/android-tv/gradle-8.4/lib/asm-commons-9.5.jar new file mode 100644 index 0000000..21898df Binary files /dev/null and b/android-tv/gradle-8.4/lib/asm-commons-9.5.jar differ diff --git a/android-tv/gradle-8.4/lib/asm-tree-9.5.jar b/android-tv/gradle-8.4/lib/asm-tree-9.5.jar new file mode 100644 index 0000000..5c6da65 Binary files /dev/null and b/android-tv/gradle-8.4/lib/asm-tree-9.5.jar differ diff --git a/android-tv/gradle-8.4/lib/commons-compress-1.21.jar b/android-tv/gradle-8.4/lib/commons-compress-1.21.jar new file mode 100644 index 0000000..4892334 Binary files /dev/null and b/android-tv/gradle-8.4/lib/commons-compress-1.21.jar differ diff --git a/android-tv/gradle-8.4/lib/commons-io-2.11.0.jar b/android-tv/gradle-8.4/lib/commons-io-2.11.0.jar new file mode 100644 index 0000000..be507d9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/commons-io-2.11.0.jar differ diff --git a/android-tv/gradle-8.4/lib/commons-lang-2.6.jar b/android-tv/gradle-8.4/lib/commons-lang-2.6.jar new file mode 100644 index 0000000..98467d3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/commons-lang-2.6.jar differ diff --git a/android-tv/gradle-8.4/lib/failureaccess-1.0.1.jar b/android-tv/gradle-8.4/lib/failureaccess-1.0.1.jar new file mode 100644 index 0000000..9b56dc7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/failureaccess-1.0.1.jar differ diff --git a/android-tv/gradle-8.4/lib/fastutil-8.5.2-min.jar b/android-tv/gradle-8.4/lib/fastutil-8.5.2-min.jar new file mode 100644 index 0000000..8261b51 Binary files /dev/null and b/android-tv/gradle-8.4/lib/fastutil-8.5.2-min.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-0.22-milestone-25.jar new file mode 100644 index 0000000..eff16c3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-linux-aarch64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-linux-aarch64-0.22-milestone-25.jar new file mode 100644 index 0000000..b972696 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-linux-aarch64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-linux-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-linux-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..2f79dfd Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-linux-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-osx-aarch64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-osx-aarch64-0.22-milestone-25.jar new file mode 100644 index 0000000..95ee5b8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-osx-aarch64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-osx-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-osx-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..3a8c505 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-osx-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-windows-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-windows-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..381767d Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-windows-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-windows-amd64-min-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-windows-amd64-min-0.22-milestone-25.jar new file mode 100644 index 0000000..0058f04 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-windows-amd64-min-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-windows-i386-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-windows-i386-0.22-milestone-25.jar new file mode 100644 index 0000000..5f9fbe2 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-windows-i386-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/file-events-windows-i386-min-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/file-events-windows-i386-min-0.22-milestone-25.jar new file mode 100644 index 0000000..1941ca6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/file-events-windows-i386-min-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-api-metadata-8.4.jar b/android-tv/gradle-8.4/lib/gradle-api-metadata-8.4.jar new file mode 100644 index 0000000..2e903de Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-api-metadata-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-base-annotations-8.4.jar b/android-tv/gradle-8.4/lib/gradle-base-annotations-8.4.jar new file mode 100644 index 0000000..91242e5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-base-annotations-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-base-services-8.4.jar b/android-tv/gradle-8.4/lib/gradle-base-services-8.4.jar new file mode 100644 index 0000000..15fe304 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-base-services-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-base-services-groovy-8.4.jar b/android-tv/gradle-8.4/lib/gradle-base-services-groovy-8.4.jar new file mode 100644 index 0000000..6af5ece Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-base-services-groovy-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-bootstrap-8.4.jar b/android-tv/gradle-8.4/lib/gradle-bootstrap-8.4.jar new file mode 100644 index 0000000..6e1477b Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-bootstrap-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-cache-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-cache-8.4.jar new file mode 100644 index 0000000..08a6902 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-cache-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-cache-base-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-cache-base-8.4.jar new file mode 100644 index 0000000..cf96a5a Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-cache-base-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-cache-packaging-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-cache-packaging-8.4.jar new file mode 100644 index 0000000..5d9388e Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-cache-packaging-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-events-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-events-8.4.jar new file mode 100644 index 0000000..b051673 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-events-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-operations-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-operations-8.4.jar new file mode 100644 index 0000000..60b3189 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-operations-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-build-option-8.4.jar b/android-tv/gradle-8.4/lib/gradle-build-option-8.4.jar new file mode 100644 index 0000000..b9a2684 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-build-option-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-cli-8.4.jar b/android-tv/gradle-8.4/lib/gradle-cli-8.4.jar new file mode 100644 index 0000000..301022a Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-cli-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-core-8.4.jar b/android-tv/gradle-8.4/lib/gradle-core-8.4.jar new file mode 100644 index 0000000..5ee6e74 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-core-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-core-api-8.4.jar b/android-tv/gradle-8.4/lib/gradle-core-api-8.4.jar new file mode 100644 index 0000000..7c06158 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-core-api-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-enterprise-logging-8.4.jar b/android-tv/gradle-8.4/lib/gradle-enterprise-logging-8.4.jar new file mode 100644 index 0000000..5522b38 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-enterprise-logging-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-enterprise-operations-8.4.jar b/android-tv/gradle-8.4/lib/gradle-enterprise-operations-8.4.jar new file mode 100644 index 0000000..1d095a3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-enterprise-operations-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-enterprise-workers-8.4.jar b/android-tv/gradle-8.4/lib/gradle-enterprise-workers-8.4.jar new file mode 100644 index 0000000..1322e2d Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-enterprise-workers-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-execution-8.4.jar b/android-tv/gradle-8.4/lib/gradle-execution-8.4.jar new file mode 100644 index 0000000..1de1430 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-execution-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-file-collections-8.4.jar b/android-tv/gradle-8.4/lib/gradle-file-collections-8.4.jar new file mode 100644 index 0000000..2ad2e5c Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-file-collections-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-file-temp-8.4.jar b/android-tv/gradle-8.4/lib/gradle-file-temp-8.4.jar new file mode 100644 index 0000000..47d632d Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-file-temp-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-file-watching-8.4.jar b/android-tv/gradle-8.4/lib/gradle-file-watching-8.4.jar new file mode 100644 index 0000000..4b027bf Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-file-watching-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-files-8.4.jar b/android-tv/gradle-8.4/lib/gradle-files-8.4.jar new file mode 100644 index 0000000..aeca1b9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-files-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-functional-8.4.jar b/android-tv/gradle-8.4/lib/gradle-functional-8.4.jar new file mode 100644 index 0000000..d328fb6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-functional-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-hashing-8.4.jar b/android-tv/gradle-8.4/lib/gradle-hashing-8.4.jar new file mode 100644 index 0000000..6a1d0a9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-hashing-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-installation-beacon-8.4.jar b/android-tv/gradle-8.4/lib/gradle-installation-beacon-8.4.jar new file mode 100644 index 0000000..15075fe Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-installation-beacon-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-internal-instrumentation-api-8.4.jar b/android-tv/gradle-8.4/lib/gradle-internal-instrumentation-api-8.4.jar new file mode 100644 index 0000000..7748f3b Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-internal-instrumentation-api-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-jvm-services-8.4.jar b/android-tv/gradle-8.4/lib/gradle-jvm-services-8.4.jar new file mode 100644 index 0000000..46decb7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-jvm-services-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-8.4.jar b/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-8.4.jar new file mode 100644 index 0000000..7da3a70 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-tooling-models-8.4.jar b/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-tooling-models-8.4.jar new file mode 100644 index 0000000..02f5544 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-kotlin-dsl-tooling-models-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-launcher-8.4.jar b/android-tv/gradle-8.4/lib/gradle-launcher-8.4.jar new file mode 100644 index 0000000..e8fc876 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-launcher-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-logging-8.4.jar b/android-tv/gradle-8.4/lib/gradle-logging-8.4.jar new file mode 100644 index 0000000..585f078 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-logging-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-logging-api-8.4.jar b/android-tv/gradle-8.4/lib/gradle-logging-api-8.4.jar new file mode 100644 index 0000000..c38574f Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-logging-api-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-messaging-8.4.jar b/android-tv/gradle-8.4/lib/gradle-messaging-8.4.jar new file mode 100644 index 0000000..c2bc623 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-messaging-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-model-core-8.4.jar b/android-tv/gradle-8.4/lib/gradle-model-core-8.4.jar new file mode 100644 index 0000000..429da9a Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-model-core-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-model-groovy-8.4.jar b/android-tv/gradle-8.4/lib/gradle-model-groovy-8.4.jar new file mode 100644 index 0000000..6f6d0fd Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-model-groovy-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-native-8.4.jar b/android-tv/gradle-8.4/lib/gradle-native-8.4.jar new file mode 100644 index 0000000..f703abd Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-normalization-java-8.4.jar b/android-tv/gradle-8.4/lib/gradle-normalization-java-8.4.jar new file mode 100644 index 0000000..a4acda5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-normalization-java-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-persistent-cache-8.4.jar b/android-tv/gradle-8.4/lib/gradle-persistent-cache-8.4.jar new file mode 100644 index 0000000..96ae0a8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-persistent-cache-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-problems-8.4.jar b/android-tv/gradle-8.4/lib/gradle-problems-8.4.jar new file mode 100644 index 0000000..437f043 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-problems-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-process-services-8.4.jar b/android-tv/gradle-8.4/lib/gradle-process-services-8.4.jar new file mode 100644 index 0000000..00ffcdc Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-process-services-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-resources-8.4.jar b/android-tv/gradle-8.4/lib/gradle-resources-8.4.jar new file mode 100644 index 0000000..8ccbc34 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-resources-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-runtime-api-info-8.4.jar b/android-tv/gradle-8.4/lib/gradle-runtime-api-info-8.4.jar new file mode 100644 index 0000000..7af5d71 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-runtime-api-info-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-snapshots-8.4.jar b/android-tv/gradle-8.4/lib/gradle-snapshots-8.4.jar new file mode 100644 index 0000000..2fcfee6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-snapshots-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-tooling-api-8.4.jar b/android-tv/gradle-8.4/lib/gradle-tooling-api-8.4.jar new file mode 100644 index 0000000..7d34813 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-tooling-api-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-worker-processes-8.4.jar b/android-tv/gradle-8.4/lib/gradle-worker-processes-8.4.jar new file mode 100644 index 0000000..4bc7b42 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-worker-processes-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-worker-services-8.4.jar b/android-tv/gradle-8.4/lib/gradle-worker-services-8.4.jar new file mode 100644 index 0000000..571b670 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-worker-services-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/gradle-wrapper-shared-8.4.jar b/android-tv/gradle-8.4/lib/gradle-wrapper-shared-8.4.jar new file mode 100644 index 0000000..43ba648 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gradle-wrapper-shared-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-3.0.17.jar new file mode 100644 index 0000000..13f0946 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-ant-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-ant-3.0.17.jar new file mode 100644 index 0000000..57e1aad Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-ant-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-astbuilder-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-astbuilder-3.0.17.jar new file mode 100644 index 0000000..a2f9e93 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-astbuilder-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-console-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-console-3.0.17.jar new file mode 100644 index 0000000..2e8d700 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-console-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-datetime-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-datetime-3.0.17.jar new file mode 100644 index 0000000..16c0b01 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-datetime-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-dateutil-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-dateutil-3.0.17.jar new file mode 100644 index 0000000..5ef253a Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-dateutil-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-docgenerator-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-docgenerator-3.0.17.jar new file mode 100644 index 0000000..93c1bf9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-docgenerator-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-groovydoc-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-groovydoc-3.0.17.jar new file mode 100644 index 0000000..8f0ae55 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-groovydoc-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-json-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-json-3.0.17.jar new file mode 100644 index 0000000..68940e8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-json-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-nio-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-nio-3.0.17.jar new file mode 100644 index 0000000..e20fea8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-nio-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-sql-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-sql-3.0.17.jar new file mode 100644 index 0000000..2f02df2 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-sql-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-swing-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-swing-3.0.17.jar new file mode 100644 index 0000000..7295bd9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-swing-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-templates-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-templates-3.0.17.jar new file mode 100644 index 0000000..98afe44 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-templates-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-test-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-test-3.0.17.jar new file mode 100644 index 0000000..8bb8d0c Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-test-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/groovy-xml-3.0.17.jar b/android-tv/gradle-8.4/lib/groovy-xml-3.0.17.jar new file mode 100644 index 0000000..62ad5e3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/groovy-xml-3.0.17.jar differ diff --git a/android-tv/gradle-8.4/lib/gson-2.8.9.jar b/android-tv/gradle-8.4/lib/gson-2.8.9.jar new file mode 100644 index 0000000..3351867 Binary files /dev/null and b/android-tv/gradle-8.4/lib/gson-2.8.9.jar differ diff --git a/android-tv/gradle-8.4/lib/guava-32.1.2-jre.jar b/android-tv/gradle-8.4/lib/guava-32.1.2-jre.jar new file mode 100644 index 0000000..e71fd46 Binary files /dev/null and b/android-tv/gradle-8.4/lib/guava-32.1.2-jre.jar differ diff --git a/android-tv/gradle-8.4/lib/h2-2.2.220.jar b/android-tv/gradle-8.4/lib/h2-2.2.220.jar new file mode 100644 index 0000000..ee971e1 Binary files /dev/null and b/android-tv/gradle-8.4/lib/h2-2.2.220.jar differ diff --git a/android-tv/gradle-8.4/lib/hamcrest-core-1.3.jar b/android-tv/gradle-8.4/lib/hamcrest-core-1.3.jar new file mode 100644 index 0000000..9d5fe16 Binary files /dev/null and b/android-tv/gradle-8.4/lib/hamcrest-core-1.3.jar differ diff --git a/android-tv/gradle-8.4/lib/jansi-1.18.jar b/android-tv/gradle-8.4/lib/jansi-1.18.jar new file mode 100644 index 0000000..a7be6db Binary files /dev/null and b/android-tv/gradle-8.4/lib/jansi-1.18.jar differ diff --git a/android-tv/gradle-8.4/lib/javaparser-core-3.17.0.jar b/android-tv/gradle-8.4/lib/javaparser-core-3.17.0.jar new file mode 100644 index 0000000..8d65838 Binary files /dev/null and b/android-tv/gradle-8.4/lib/javaparser-core-3.17.0.jar differ diff --git a/android-tv/gradle-8.4/lib/javax.inject-1.jar b/android-tv/gradle-8.4/lib/javax.inject-1.jar new file mode 100644 index 0000000..b2a9d0b Binary files /dev/null and b/android-tv/gradle-8.4/lib/javax.inject-1.jar differ diff --git a/android-tv/gradle-8.4/lib/jcl-over-slf4j-1.7.30.jar b/android-tv/gradle-8.4/lib/jcl-over-slf4j-1.7.30.jar new file mode 100644 index 0000000..44e9f63 Binary files /dev/null and b/android-tv/gradle-8.4/lib/jcl-over-slf4j-1.7.30.jar differ diff --git a/android-tv/gradle-8.4/lib/jsr305-3.0.2.jar b/android-tv/gradle-8.4/lib/jsr305-3.0.2.jar new file mode 100644 index 0000000..59222d9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/jsr305-3.0.2.jar differ diff --git a/android-tv/gradle-8.4/lib/jul-to-slf4j-1.7.30.jar b/android-tv/gradle-8.4/lib/jul-to-slf4j-1.7.30.jar new file mode 100644 index 0000000..7dea58b Binary files /dev/null and b/android-tv/gradle-8.4/lib/jul-to-slf4j-1.7.30.jar differ diff --git a/android-tv/gradle-8.4/lib/junit-4.13.2.jar b/android-tv/gradle-8.4/lib/junit-4.13.2.jar new file mode 100644 index 0000000..6da55d8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/junit-4.13.2.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-assignment-compiler-plugin-embeddable-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-assignment-compiler-plugin-embeddable-1.9.10.jar new file mode 100644 index 0000000..7ec5dc8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-assignment-compiler-plugin-embeddable-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-compiler-embeddable-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-compiler-embeddable-1.9.10.jar new file mode 100644 index 0000000..aa8076f Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-compiler-embeddable-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-daemon-embeddable-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-daemon-embeddable-1.9.10.jar new file mode 100644 index 0000000..8d9f8b5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-daemon-embeddable-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-reflect-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-reflect-1.9.10.jar new file mode 100644 index 0000000..ce429e9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-reflect-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-sam-with-receiver-compiler-plugin-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-sam-with-receiver-compiler-plugin-1.9.10.jar new file mode 100644 index 0000000..70870dc Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-sam-with-receiver-compiler-plugin-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-script-runtime-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-script-runtime-1.9.10.jar new file mode 100644 index 0000000..d4ad1b6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-script-runtime-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-scripting-common-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-scripting-common-1.9.10.jar new file mode 100644 index 0000000..705473c Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-scripting-common-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-embeddable-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-embeddable-1.9.10.jar new file mode 100644 index 0000000..dd7b037 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-embeddable-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-impl-embeddable-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-impl-embeddable-1.9.10.jar new file mode 100644 index 0000000..fb83a09 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-scripting-compiler-impl-embeddable-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-1.9.10.jar new file mode 100644 index 0000000..c569d05 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-host-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-host-1.9.10.jar new file mode 100644 index 0000000..8e7058e Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-scripting-jvm-host-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-stdlib-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-stdlib-1.9.10.jar new file mode 100644 index 0000000..43e27f1 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-stdlib-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlin-stdlib-common-1.9.10.jar b/android-tv/gradle-8.4/lib/kotlin-stdlib-common-1.9.10.jar new file mode 100644 index 0000000..b48d773 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlin-stdlib-common-1.9.10.jar differ diff --git a/android-tv/gradle-8.4/lib/kotlinx-metadata-jvm-0.5.0.jar b/android-tv/gradle-8.4/lib/kotlinx-metadata-jvm-0.5.0.jar new file mode 100644 index 0000000..e6c983e Binary files /dev/null and b/android-tv/gradle-8.4/lib/kotlinx-metadata-jvm-0.5.0.jar differ diff --git a/android-tv/gradle-8.4/lib/kryo-2.24.0.jar b/android-tv/gradle-8.4/lib/kryo-2.24.0.jar new file mode 100644 index 0000000..4d18180 Binary files /dev/null and b/android-tv/gradle-8.4/lib/kryo-2.24.0.jar differ diff --git a/android-tv/gradle-8.4/lib/log4j-over-slf4j-1.7.30.jar b/android-tv/gradle-8.4/lib/log4j-over-slf4j-1.7.30.jar new file mode 100644 index 0000000..d94b90e Binary files /dev/null and b/android-tv/gradle-8.4/lib/log4j-over-slf4j-1.7.30.jar differ diff --git a/android-tv/gradle-8.4/lib/minlog-1.2.jar b/android-tv/gradle-8.4/lib/minlog-1.2.jar new file mode 100644 index 0000000..3d174a6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/minlog-1.2.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-0.22-milestone-25.jar new file mode 100644 index 0000000..0696183 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-25.jar new file mode 100644 index 0000000..d073567 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-freebsd-amd64-libcpp-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-0.22-milestone-25.jar new file mode 100644 index 0000000..1bd4385 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-25.jar new file mode 100644 index 0000000..84dd7b3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses5-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-25.jar new file mode 100644 index 0000000..a6e65d2 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-aarch64-ncurses6-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..c2e46c2 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-25.jar new file mode 100644 index 0000000..017d355 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses5-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-25.jar new file mode 100644 index 0000000..7fe389d Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-linux-amd64-ncurses6-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-osx-aarch64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-osx-aarch64-0.22-milestone-25.jar new file mode 100644 index 0000000..36b67f7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-osx-aarch64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-osx-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-osx-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..dd8ae87 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-osx-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-windows-amd64-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-windows-amd64-0.22-milestone-25.jar new file mode 100644 index 0000000..15740ad Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-windows-amd64-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-windows-amd64-min-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-windows-amd64-min-0.22-milestone-25.jar new file mode 100644 index 0000000..7db9fae Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-windows-amd64-min-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-windows-i386-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-windows-i386-0.22-milestone-25.jar new file mode 100644 index 0000000..1b29881 Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-windows-i386-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/native-platform-windows-i386-min-0.22-milestone-25.jar b/android-tv/gradle-8.4/lib/native-platform-windows-i386-min-0.22-milestone-25.jar new file mode 100644 index 0000000..5efa93b Binary files /dev/null and b/android-tv/gradle-8.4/lib/native-platform-windows-i386-min-0.22-milestone-25.jar differ diff --git a/android-tv/gradle-8.4/lib/objenesis-2.6.jar b/android-tv/gradle-8.4/lib/objenesis-2.6.jar new file mode 100644 index 0000000..b4b29d5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/objenesis-2.6.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-core-1.12.365.jar b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-core-1.12.365.jar new file mode 100644 index 0000000..65d890b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-core-1.12.365.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-kms-1.12.365.jar b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-kms-1.12.365.jar new file mode 100644 index 0000000..cc7c4e8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-kms-1.12.365.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-s3-1.12.365.jar b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-s3-1.12.365.jar new file mode 100644 index 0000000..cd4a39a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-s3-1.12.365.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-sts-1.12.365.jar b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-sts-1.12.365.jar new file mode 100644 index 0000000..6e4bf0e Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/aws-java-sdk-sts-1.12.365.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/bcpg-jdk15on-1.68.jar b/android-tv/gradle-8.4/lib/plugins/bcpg-jdk15on-1.68.jar new file mode 100644 index 0000000..340eefc Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/bcpg-jdk15on-1.68.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/bcpkix-jdk15on-1.68.jar b/android-tv/gradle-8.4/lib/plugins/bcpkix-jdk15on-1.68.jar new file mode 100644 index 0000000..1b6385d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/bcpkix-jdk15on-1.68.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/bcprov-jdk15on-1.68.jar b/android-tv/gradle-8.4/lib/plugins/bcprov-jdk15on-1.68.jar new file mode 100644 index 0000000..84ae485 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/bcprov-jdk15on-1.68.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/bsh-2.0b6.jar b/android-tv/gradle-8.4/lib/plugins/bsh-2.0b6.jar new file mode 100644 index 0000000..29d71a9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/bsh-2.0b6.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/capsule-0.6.3.jar b/android-tv/gradle-8.4/lib/plugins/capsule-0.6.3.jar new file mode 100644 index 0000000..e4a88e8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/capsule-0.6.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/commons-codec-1.15.jar b/android-tv/gradle-8.4/lib/plugins/commons-codec-1.15.jar new file mode 100644 index 0000000..f14985a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/commons-codec-1.15.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/dd-plist-1.21.jar b/android-tv/gradle-8.4/lib/plugins/dd-plist-1.21.jar new file mode 100644 index 0000000..cdf1472 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/dd-plist-1.21.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-api-client-1.34.0.jar b/android-tv/gradle-8.4/lib/plugins/google-api-client-1.34.0.jar new file mode 100644 index 0000000..e1bd4ed Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-api-client-1.34.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar b/android-tv/gradle-8.4/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar new file mode 100644 index 0000000..91d26e4 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-api-services-storage-v1-rev20220705-1.32.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-http-client-1.42.2.jar b/android-tv/gradle-8.4/lib/plugins/google-http-client-1.42.2.jar new file mode 100644 index 0000000..e8a4497 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-http-client-1.42.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-http-client-apache-v2-1.42.2.jar b/android-tv/gradle-8.4/lib/plugins/google-http-client-apache-v2-1.42.2.jar new file mode 100644 index 0000000..edf37d0 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-http-client-apache-v2-1.42.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-http-client-gson-1.42.2.jar b/android-tv/gradle-8.4/lib/plugins/google-http-client-gson-1.42.2.jar new file mode 100644 index 0000000..77d3af1 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-http-client-gson-1.42.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/google-oauth-client-1.34.1.jar b/android-tv/gradle-8.4/lib/plugins/google-oauth-client-1.34.1.jar new file mode 100644 index 0000000..795f7e4 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/google-oauth-client-1.34.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-antlr-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-antlr-8.4.jar new file mode 100644 index 0000000..8db295b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-antlr-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-base-ide-plugins-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-base-ide-plugins-8.4.jar new file mode 100644 index 0000000..a64d982 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-base-ide-plugins-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-build-cache-http-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-build-cache-http-8.4.jar new file mode 100644 index 0000000..405302b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-build-cache-http-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-build-init-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-build-init-8.4.jar new file mode 100644 index 0000000..14a1287 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-build-init-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-build-profile-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-build-profile-8.4.jar new file mode 100644 index 0000000..64c9fe5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-build-profile-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-code-quality-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-code-quality-8.4.jar new file mode 100644 index 0000000..164f0db Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-code-quality-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-composite-builds-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-composite-builds-8.4.jar new file mode 100644 index 0000000..5f860ea Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-composite-builds-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-configuration-cache-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-configuration-cache-8.4.jar new file mode 100644 index 0000000..d34f797 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-configuration-cache-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-dependency-management-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-dependency-management-8.4.jar new file mode 100644 index 0000000..313270d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-dependency-management-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-diagnostics-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-diagnostics-8.4.jar new file mode 100644 index 0000000..f017df7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-diagnostics-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-ear-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-ear-8.4.jar new file mode 100644 index 0000000..ed1a715 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-ear-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-enterprise-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-enterprise-8.4.jar new file mode 100644 index 0000000..39173c8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-enterprise-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-ide-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-ide-8.4.jar new file mode 100644 index 0000000..a8f9cf4 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-ide-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-ide-native-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-ide-native-8.4.jar new file mode 100644 index 0000000..17badba Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-ide-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-ide-plugins-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-ide-plugins-8.4.jar new file mode 100644 index 0000000..edb558d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-ide-plugins-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-instrumentation-declarations-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-instrumentation-declarations-8.4.jar new file mode 100644 index 0000000..4104dbb Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-instrumentation-declarations-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-ivy-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-ivy-8.4.jar new file mode 100644 index 0000000..c876486 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-ivy-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-jacoco-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-jacoco-8.4.jar new file mode 100644 index 0000000..65e1ad7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-jacoco-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-java-compiler-plugin-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-java-compiler-plugin-8.4.jar new file mode 100644 index 0000000..05f00f3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-java-compiler-plugin-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-java-platform-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-java-platform-8.4.jar new file mode 100644 index 0000000..b1a6930 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-java-platform-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.4.jar new file mode 100644 index 0000000..c4f1d5c Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-provider-plugins-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.4.jar new file mode 100644 index 0000000..65cbdf9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-kotlin-dsl-tooling-builders-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-language-groovy-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-language-groovy-8.4.jar new file mode 100644 index 0000000..b9a060b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-language-groovy-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-language-java-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-language-java-8.4.jar new file mode 100644 index 0000000..0e4eccf Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-language-java-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-language-jvm-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-language-jvm-8.4.jar new file mode 100644 index 0000000..31be178 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-language-jvm-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-language-native-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-language-native-8.4.jar new file mode 100644 index 0000000..d6bf5aa Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-language-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-maven-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-maven-8.4.jar new file mode 100644 index 0000000..56beb8b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-maven-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-platform-base-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-platform-base-8.4.jar new file mode 100644 index 0000000..0e05e91 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-platform-base-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-platform-jvm-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-platform-jvm-8.4.jar new file mode 100644 index 0000000..1e69f36 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-platform-jvm-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-platform-native-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-platform-native-8.4.jar new file mode 100644 index 0000000..9205e7a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-platform-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-plugin-development-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-plugin-development-8.4.jar new file mode 100644 index 0000000..e28794d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-plugin-development-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-plugin-use-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-plugin-use-8.4.jar new file mode 100644 index 0000000..4ccedf6 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-plugin-use-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-plugins-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-plugins-8.4.jar new file mode 100644 index 0000000..dd091f9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-plugins-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-publish-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-publish-8.4.jar new file mode 100644 index 0000000..235bc24 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-publish-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-reporting-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-reporting-8.4.jar new file mode 100644 index 0000000..af0bd30 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-reporting-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-resources-gcs-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-resources-gcs-8.4.jar new file mode 100644 index 0000000..ad86be9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-resources-gcs-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-resources-http-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-resources-http-8.4.jar new file mode 100644 index 0000000..0791cf7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-resources-http-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-resources-s3-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-resources-s3-8.4.jar new file mode 100644 index 0000000..2c2e836 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-resources-s3-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-resources-sftp-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-resources-sftp-8.4.jar new file mode 100644 index 0000000..70aeb6f Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-resources-sftp-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-scala-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-scala-8.4.jar new file mode 100644 index 0000000..374409a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-scala-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-security-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-security-8.4.jar new file mode 100644 index 0000000..ec5c0ba Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-security-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-signing-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-signing-8.4.jar new file mode 100644 index 0000000..ce26b23 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-signing-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-test-kit-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-test-kit-8.4.jar new file mode 100644 index 0000000..c5e179a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-test-kit-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-testing-base-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-testing-base-8.4.jar new file mode 100644 index 0000000..aaafddf Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-testing-base-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-testing-junit-platform-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-testing-junit-platform-8.4.jar new file mode 100644 index 0000000..136806e Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-testing-junit-platform-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-8.4.jar new file mode 100644 index 0000000..6618984 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-infrastructure-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-infrastructure-8.4.jar new file mode 100644 index 0000000..9ebe6c1 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-testing-jvm-infrastructure-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-testing-native-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-testing-native-8.4.jar new file mode 100644 index 0000000..d1b8f1a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-testing-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-toolchains-jvm-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-toolchains-jvm-8.4.jar new file mode 100644 index 0000000..3d3f951 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-toolchains-jvm-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-tooling-api-builders-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-tooling-api-builders-8.4.jar new file mode 100644 index 0000000..f400f44 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-tooling-api-builders-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-tooling-native-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-tooling-native-8.4.jar new file mode 100644 index 0000000..fa4f73b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-tooling-native-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-version-control-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-version-control-8.4.jar new file mode 100644 index 0000000..219daea Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-version-control-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-war-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-war-8.4.jar new file mode 100644 index 0000000..da8b293 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-war-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-workers-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-workers-8.4.jar new file mode 100644 index 0000000..ff96b8a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-workers-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/gradle-wrapper-8.4.jar b/android-tv/gradle-8.4/lib/plugins/gradle-wrapper-8.4.jar new file mode 100644 index 0000000..aae4058 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/gradle-wrapper-8.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/grpc-context-1.27.2.jar b/android-tv/gradle-8.4/lib/plugins/grpc-context-1.27.2.jar new file mode 100644 index 0000000..fd8615e Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/grpc-context-1.27.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/httpclient-4.5.13.jar b/android-tv/gradle-8.4/lib/plugins/httpclient-4.5.13.jar new file mode 100644 index 0000000..218ee25 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/httpclient-4.5.13.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/httpcore-4.4.14.jar b/android-tv/gradle-8.4/lib/plugins/httpcore-4.4.14.jar new file mode 100644 index 0000000..349db18 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/httpcore-4.4.14.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/ion-java-1.0.2.jar b/android-tv/gradle-8.4/lib/plugins/ion-java-1.0.2.jar new file mode 100644 index 0000000..192a98e Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/ion-java-1.0.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/ivy-2.5.2.jar b/android-tv/gradle-8.4/lib/plugins/ivy-2.5.2.jar new file mode 100644 index 0000000..7d2648a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/ivy-2.5.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jackson-annotations-2.14.1.jar b/android-tv/gradle-8.4/lib/plugins/jackson-annotations-2.14.1.jar new file mode 100644 index 0000000..e908bd3 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jackson-annotations-2.14.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jackson-core-2.14.1.jar b/android-tv/gradle-8.4/lib/plugins/jackson-core-2.14.1.jar new file mode 100644 index 0000000..cc02583 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jackson-core-2.14.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jackson-databind-2.14.1.jar b/android-tv/gradle-8.4/lib/plugins/jackson-databind-2.14.1.jar new file mode 100644 index 0000000..1ac8096 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jackson-databind-2.14.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jakarta.activation-2.0.0.jar b/android-tv/gradle-8.4/lib/plugins/jakarta.activation-2.0.0.jar new file mode 100644 index 0000000..973e486 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jakarta.activation-2.0.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jakarta.xml.bind-api-3.0.0.jar b/android-tv/gradle-8.4/lib/plugins/jakarta.xml.bind-api-3.0.0.jar new file mode 100644 index 0000000..07a1662 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jakarta.xml.bind-api-3.0.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jatl-0.2.3.jar b/android-tv/gradle-8.4/lib/plugins/jatl-0.2.3.jar new file mode 100644 index 0000000..b1609a7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jatl-0.2.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jaxb-core-3.0.0.jar b/android-tv/gradle-8.4/lib/plugins/jaxb-core-3.0.0.jar new file mode 100644 index 0000000..cad08ec Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jaxb-core-3.0.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jaxb-impl-3.0.0.jar b/android-tv/gradle-8.4/lib/plugins/jaxb-impl-3.0.0.jar new file mode 100644 index 0000000..a34baa7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jaxb-impl-3.0.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jcifs-1.3.17.jar b/android-tv/gradle-8.4/lib/plugins/jcifs-1.3.17.jar new file mode 100644 index 0000000..3f27e29 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jcifs-1.3.17.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jcommander-1.78.jar b/android-tv/gradle-8.4/lib/plugins/jcommander-1.78.jar new file mode 100644 index 0000000..1d58673 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jcommander-1.78.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jmespath-java-1.12.365.jar b/android-tv/gradle-8.4/lib/plugins/jmespath-java-1.12.365.jar new file mode 100644 index 0000000..879c286 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jmespath-java-1.12.365.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/joda-time-2.10.4.jar b/android-tv/gradle-8.4/lib/plugins/joda-time-2.10.4.jar new file mode 100644 index 0000000..62c7a53 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/joda-time-2.10.4.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jsch-0.1.55.jar b/android-tv/gradle-8.4/lib/plugins/jsch-0.1.55.jar new file mode 100644 index 0000000..c6fd21d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jsch-0.1.55.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jsoup-1.15.3.jar b/android-tv/gradle-8.4/lib/plugins/jsoup-1.15.3.jar new file mode 100644 index 0000000..5506d7f Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jsoup-1.15.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/junit-platform-commons-1.8.2.jar b/android-tv/gradle-8.4/lib/plugins/junit-platform-commons-1.8.2.jar new file mode 100644 index 0000000..e0cf087 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/junit-platform-commons-1.8.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/junit-platform-engine-1.8.2.jar b/android-tv/gradle-8.4/lib/plugins/junit-platform-engine-1.8.2.jar new file mode 100644 index 0000000..85bac8a Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/junit-platform-engine-1.8.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/junit-platform-launcher-1.8.2.jar b/android-tv/gradle-8.4/lib/plugins/junit-platform-launcher-1.8.2.jar new file mode 100644 index 0000000..0f2cc40 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/junit-platform-launcher-1.8.2.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/jzlib-1.1.3.jar b/android-tv/gradle-8.4/lib/plugins/jzlib-1.1.3.jar new file mode 100644 index 0000000..2fa60b1 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/jzlib-1.1.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/maven-builder-support-3.9.3.jar b/android-tv/gradle-8.4/lib/plugins/maven-builder-support-3.9.3.jar new file mode 100644 index 0000000..eca18a5 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/maven-builder-support-3.9.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/maven-model-3.9.3.jar b/android-tv/gradle-8.4/lib/plugins/maven-model-3.9.3.jar new file mode 100644 index 0000000..100f355 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/maven-model-3.9.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/maven-repository-metadata-3.9.3.jar b/android-tv/gradle-8.4/lib/plugins/maven-repository-metadata-3.9.3.jar new file mode 100644 index 0000000..ebd6ee9 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/maven-repository-metadata-3.9.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/maven-settings-3.9.3.jar b/android-tv/gradle-8.4/lib/plugins/maven-settings-3.9.3.jar new file mode 100644 index 0000000..fd12b5b Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/maven-settings-3.9.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/maven-settings-builder-3.9.3.jar b/android-tv/gradle-8.4/lib/plugins/maven-settings-builder-3.9.3.jar new file mode 100644 index 0000000..fcad633 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/maven-settings-builder-3.9.3.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/opencensus-api-0.31.1.jar b/android-tv/gradle-8.4/lib/plugins/opencensus-api-0.31.1.jar new file mode 100644 index 0000000..32f2501 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/opencensus-api-0.31.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/opencensus-contrib-http-util-0.31.1.jar b/android-tv/gradle-8.4/lib/plugins/opencensus-contrib-http-util-0.31.1.jar new file mode 100644 index 0000000..f96d0da Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/opencensus-contrib-http-util-0.31.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/opentest4j-1.2.0.jar b/android-tv/gradle-8.4/lib/plugins/opentest4j-1.2.0.jar new file mode 100644 index 0000000..d500636 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/opentest4j-1.2.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar b/android-tv/gradle-8.4/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar new file mode 100644 index 0000000..cb146f8 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/org.eclipse.jgit-5.7.0.202003110725-r.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/plexus-cipher-2.0.jar b/android-tv/gradle-8.4/lib/plugins/plexus-cipher-2.0.jar new file mode 100644 index 0000000..e73475d Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/plexus-cipher-2.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/plexus-interpolation-1.26.jar b/android-tv/gradle-8.4/lib/plugins/plexus-interpolation-1.26.jar new file mode 100644 index 0000000..cfcf162 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/plexus-interpolation-1.26.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/plexus-sec-dispatcher-2.0.jar b/android-tv/gradle-8.4/lib/plugins/plexus-sec-dispatcher-2.0.jar new file mode 100644 index 0000000..623cc21 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/plexus-sec-dispatcher-2.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/plexus-utils-3.5.1.jar b/android-tv/gradle-8.4/lib/plugins/plexus-utils-3.5.1.jar new file mode 100644 index 0000000..1873c52 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/plexus-utils-3.5.1.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/snakeyaml-2.0.jar b/android-tv/gradle-8.4/lib/plugins/snakeyaml-2.0.jar new file mode 100644 index 0000000..469b043 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/snakeyaml-2.0.jar differ diff --git a/android-tv/gradle-8.4/lib/plugins/testng-6.3.1.jar b/android-tv/gradle-8.4/lib/plugins/testng-6.3.1.jar new file mode 100644 index 0000000..7479345 Binary files /dev/null and b/android-tv/gradle-8.4/lib/plugins/testng-6.3.1.jar differ diff --git a/android-tv/gradle-8.4/lib/qdox-1.12.1.jar b/android-tv/gradle-8.4/lib/qdox-1.12.1.jar new file mode 100644 index 0000000..092fc51 Binary files /dev/null and b/android-tv/gradle-8.4/lib/qdox-1.12.1.jar differ diff --git a/android-tv/gradle-8.4/lib/slf4j-api-1.7.30.jar b/android-tv/gradle-8.4/lib/slf4j-api-1.7.30.jar new file mode 100644 index 0000000..29ac26f Binary files /dev/null and b/android-tv/gradle-8.4/lib/slf4j-api-1.7.30.jar differ diff --git a/android-tv/gradle-8.4/lib/tomlj-1.0.0.jar b/android-tv/gradle-8.4/lib/tomlj-1.0.0.jar new file mode 100644 index 0000000..56322a7 Binary files /dev/null and b/android-tv/gradle-8.4/lib/tomlj-1.0.0.jar differ diff --git a/android-tv/gradle-8.4/lib/trove4j-1.0.20200330.jar b/android-tv/gradle-8.4/lib/trove4j-1.0.20200330.jar new file mode 100644 index 0000000..0b174bf Binary files /dev/null and b/android-tv/gradle-8.4/lib/trove4j-1.0.20200330.jar differ diff --git a/android-tv/gradle-8.4/lib/xml-apis-1.4.01.jar b/android-tv/gradle-8.4/lib/xml-apis-1.4.01.jar new file mode 100644 index 0000000..4673346 Binary files /dev/null and b/android-tv/gradle-8.4/lib/xml-apis-1.4.01.jar differ diff --git a/android-tv/gradle/wrapper/gradle-wrapper.jar b/android-tv/gradle/wrapper/gradle-wrapper.jar index d64cd49..2c35211 100644 Binary files a/android-tv/gradle/wrapper/gradle-wrapper.jar and b/android-tv/gradle/wrapper/gradle-wrapper.jar differ diff --git a/android-tv/gradle/wrapper/gradle-wrapper.properties b/android-tv/gradle/wrapper/gradle-wrapper.properties index a595206..09523c0 100644 --- a/android-tv/gradle/wrapper/gradle-wrapper.properties +++ b/android-tv/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/android-tv/gradlew b/android-tv/gradlew new file mode 100644 index 0000000..f5feea6 --- /dev/null +++ b/android-tv/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# 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. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/android-tv/gradlew.bat b/android-tv/gradlew.bat index 4f64ffb..9d21a21 100644 --- a/android-tv/gradlew.bat +++ b/android-tv/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## @@ -43,11 +45,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -57,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -76,10 +78,17 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd if "%OS%"=="Windows_NT" endlocal :omega -@exit /b %ERRORLEVEL% - -:fail -@exit /b 1 diff --git a/android-tv/gradlew_out.txt b/android-tv/gradlew_out.txt new file mode 100644 index 0000000..0531655 Binary files /dev/null and b/android-tv/gradlew_out.txt differ diff --git a/android-tv/nav_logs.txt b/android-tv/nav_logs.txt new file mode 100644 index 0000000..e69de29 diff --git a/backend/test_movie.go b/backend/test_movie.go index 89d1985..b8b1072 100644 --- a/backend/test_movie.go +++ b/backend/test_movie.go @@ -14,6 +14,6 @@ func main() { log.Fatal(err) } - b, _ := json.MarshalIndent(movie, "", " ") + b, _ := json.MarshalIndent(movie.Episodes, "", " ") fmt.Println(string(b)) } diff --git a/backend/test_ophim.go b/backend/test_ophim.go new file mode 100644 index 0000000..73f519e --- /dev/null +++ b/backend/test_ophim.go @@ -0,0 +1,19 @@ +package main + +import ( + "encoding/json" + "fmt" + "log" + "streamflow-backend/internal/scraper" +) + +func main() { + p := scraper.NewOphimScraper() + movie, err := p.GetMovieDetail("vu-tru-cua-doi-ta") // Ophim slugs don't have suffix + if err != nil { + log.Fatal(err) + } + + b, _ := json.MarshalIndent(movie.Episodes, "", " ") + fmt.Println(string(b)) +} diff --git a/backend/test_size.go b/backend/test_size.go new file mode 100644 index 0000000..993181a --- /dev/null +++ b/backend/test_size.go @@ -0,0 +1,19 @@ +package main + +import ( + "fmt" + "io" + "log" + "net/http" +) + +func main() { + resp, err := http.Get("http://localhost:8000/api/videos/vu-tru-cua-doi-ta-pm17193") + if err != nil { + log.Fatal(err) + } + defer resp.Body.Close() + + b, _ := io.ReadAll(resp.Body) + fmt.Printf("Size in bytes: %d\n", len(b)) +} diff --git a/docker-compose.yml b/docker-compose.yml index 48bc521..f829602 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: streamflow: - image: git.khoavo.myds.me/vndangkhoa/kv-streamflow:v3.8 + image: git.khoavo.myds.me/vndangkhoa/kv-streamflow:v3.9 container_name: streamflow platform: linux/amd64 ports: @@ -15,7 +15,7 @@ services: - ./data:/app/data restart: unless-stopped healthcheck: - test: ["CMD", "wget", "-q", "--spider", "http://localhost:8000/api/health"] + test: [ "CMD", "wget", "-q", "--spider", "http://localhost:8000/api/health" ] interval: 30s timeout: 10s retries: 3 diff --git a/frontend-react/public/streamflow-tv.apk b/frontend-react/public/streamflow-tv.apk new file mode 100644 index 0000000..5fc8f98 Binary files /dev/null and b/frontend-react/public/streamflow-tv.apk differ