From 4a9f67431ffc2236c860726629d521f30b8de8e1 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 00:53:08 +0530 Subject: [PATCH 01/15] remove hardcoded catalog type --- src/hooks/useMetadata.ts | 78 +++++++++++++++++++++++----------------- 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/src/hooks/useMetadata.ts b/src/hooks/useMetadata.ts index fc41f662..34e4c60f 100644 --- a/src/hooks/useMetadata.ts +++ b/src/hooks/useMetadata.ts @@ -114,6 +114,13 @@ interface UseMetadataReturn { export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadataReturn => { const { settings, isLoaded: settingsLoaded } = useSettings(); + + // Normalize anime subtypes to their base types for all internal logic. + // anime.series behaves like series; anime.movie behaves like movie. + const normalizedType = type === 'anime.series' ? 'series' + : type === 'anime.movie' ? 'movie' + : type; + const [metadata, setMetadata] = useState(null); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); @@ -427,7 +434,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat return; } // Check cache first - const cachedCast = cacheService.getCast(id, type); + const cachedCast = cacheService.getCast(id, normalizedType); if (cachedCast) { if (__DEV__) logger.log('[loadCast] Using cached cast data'); setCast(cachedCast); @@ -439,7 +446,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat if (id.startsWith('tmdb:')) { const tmdbId = id.split(':')[1]; if (__DEV__) logger.log('[loadCast] Using TMDB ID directly:', tmdbId); - const castData = await tmdbService.getCredits(parseInt(tmdbId), type); + const castData = await tmdbService.getCredits(parseInt(tmdbId), normalizedType); if (castData && castData.cast) { const formattedCast = castData.cast.map((actor: any) => ({ id: actor.id, @@ -464,7 +471,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat if (tmdbId) { if (__DEV__) logger.log('[loadCast] Fetching cast using TMDB ID:', tmdbId); - const castData = await tmdbService.getCredits(tmdbId, type); + const castData = await tmdbService.getCredits(tmdbId, normalizedType); if (castData && castData.cast) { const formattedCast = castData.cast.map((actor: any) => ({ id: actor.id, @@ -511,7 +518,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat setLoadAttempts(prev => prev + 1); // Check metadata screen cache - const cachedScreen = cacheService.getMetadataScreen(id, type); + const cachedScreen = cacheService.getMetadataScreen(id, normalizedType); if (cachedScreen) { console.log('🔍 [useMetadata] Using cached metadata:', { id, @@ -523,7 +530,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat }); setMetadata(cachedScreen.metadata); setCast(cachedScreen.cast); - if (type === 'series' && cachedScreen.episodes) { + if (normalizedType === 'series' && cachedScreen.episodes) { setGroupedEpisodes(cachedScreen.episodes.groupedEpisodes); setEpisodes(cachedScreen.episodes.currentEpisodes); setSelectedSeason(cachedScreen.episodes.selectedSeason); @@ -567,7 +574,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat } else { const tmdbId = id.split(':')[1]; // For TMDB IDs, we need to handle metadata differently - if (type === 'movie') { + if (normalizedType === 'movie') { if (__DEV__) logger.log('Fetching movie details from TMDB for:', tmdbId); const movieDetails = await tmdbService.getMovieDetails( tmdbId, @@ -639,7 +646,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat } setMetadata(formattedMovie); - cacheService.setMetadata(id, type, formattedMovie); + cacheService.setMetadata(id, normalizedType, formattedMovie); (async () => { const items = await catalogService.getLibraryItems(); const isInLib = items.some(item => item.id === id); @@ -649,7 +656,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat return; } } - } else if (type === 'series') { + } else if (normalizedType === 'series') { // Handle TV shows with TMDB IDs if (__DEV__) logger.log('Fetching TV show details from TMDB for:', tmdbId); try { @@ -719,7 +726,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat } setMetadata(formattedShow); - cacheService.setMetadata(id, type, formattedShow); + cacheService.setMetadata(id, normalizedType, formattedShow); // Load series data (episodes) setTmdbId(parseInt(tmdbId)); @@ -779,7 +786,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat for (const addon of externalMetaAddons) { try { const result = await withTimeout( - stremioService.getMetaDetails(type, actualId, addon.id), + stremioService.getMetaDetails(normalizedType, actualId, addon.id), API_TIMEOUT ); @@ -799,7 +806,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat // If no external addon worked, fall back to catalog addon console.log('🔍 [useMetadata] No external meta addon worked, falling back to catalog addon'); const result = await withTimeout( - catalogService.getEnhancedContentDetails(type, actualId, addonId), + catalogService.getEnhancedContentDetails(normalizedType, actualId, addonId), API_TIMEOUT ); if (actualId.startsWith('tt')) { @@ -831,7 +838,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat console.log('⚡ [useMetadata] Calling catalogService.getEnhancedContentDetails...'); console.log('🔍 [useMetadata] Calling catalogService.getEnhancedContentDetails:', { type, actualId, addonId }); const result = await withTimeout( - catalogService.getEnhancedContentDetails(type, actualId, addonId), + catalogService.getEnhancedContentDetails(normalizedType, actualId, addonId), API_TIMEOUT ); console.log('✅ [useMetadata] catalogService returned:', result ? 'DATA' : 'NULL'); @@ -871,13 +878,13 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat console.log('🔍 [useMetadata] Original TMDB ID failed, trying ID conversion fallback'); const tmdbRaw = id.split(':')[1]; try { - const stremioId = await catalogService.getStremioId(type === 'series' ? 'tv' : 'movie', tmdbRaw); + const stremioId = await catalogService.getStremioId(normalizedType === 'series' ? 'tv' : 'movie', tmdbRaw); if (stremioId && stremioId !== id) { console.log('🔍 [useMetadata] Trying converted ID:', { originalId: id, convertedId: stremioId }); const [content, castData] = await Promise.allSettled([ withRetry(async () => { const result = await withTimeout( - catalogService.getEnhancedContentDetails(type, stremioId, addonId), + catalogService.getEnhancedContentDetails(normalizedType, stremioId, addonId), API_TIMEOUT ); if (stremioId.startsWith('tt')) { @@ -934,7 +941,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat if (finalTmdbId) { const lang = settings.useTmdbLocalizedMetadata ? (settings.tmdbLanguagePreference || 'en') : 'en'; - if (type === 'movie') { + if (normalizedType === 'movie') { const localized = await tmdbSvc.getMovieDetails(String(finalTmdbId), lang); if (localized) { const movieDetailsObj = { @@ -1011,7 +1018,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat if (settings.enrichMetadataWithTMDB && settings.tmdbEnrichLogos) { const tmdbService = TMDBService.getInstance(); const preferredLanguage = settings.tmdbLanguagePreference || 'en'; - const contentType = type === 'series' ? 'tv' : 'movie'; + const contentType = normalizedType === 'series' ? 'tv' : 'movie'; // Get TMDB ID let tmdbIdForLogo = null; @@ -1080,7 +1087,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat } return updated; }); - cacheService.setMetadata(id, type, finalMetadata); + cacheService.setMetadata(id, normalizedType, finalMetadata); (async () => { const items = await catalogService.getLibraryItems(); const isInLib = items.some(item => item.id === id); @@ -1597,10 +1604,10 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat // Convert TMDB ID to IMDb ID for Stremio addons (they expect IMDb format) try { let externalIds = null; - if (type === 'movie') { + if (normalizedType === 'movie') { const movieDetails = await withTimeout(tmdbService.getMovieDetails(tmdbId), API_TIMEOUT); externalIds = movieDetails?.external_ids; - } else if (type === 'series') { + } else if (normalizedType === 'series') { externalIds = await withTimeout(tmdbService.getShowExternalIds(parseInt(tmdbId)), API_TIMEOUT); } @@ -1829,7 +1836,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat return false; }); - const requestedEpisodeType = type; + const requestedEpisodeType = normalizedType; let streamAddons = pickStreamCapableAddons(requestedEpisodeType); if (streamAddons.length === 0) { @@ -2029,12 +2036,17 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat // Remove 'series:' prefix if present to be safe, though parsing logic above usually handles it stremioEpisodeId = episodeId.replace(/^series:/, ''); } else if (!seasonNum) { - // No season (e.g., mal:57658:1) - use id:episode format - stremioEpisodeId = `${id}:${episodeNum}`; + // No season (e.g., kitsu:12345:1, mal:57658:1) - use showIdStr:episode format. + // Use showIdStr (parsed from episodeId) rather than outer `id` so that when the + // show has multiple IDs (e.g. tvdb+kitsu), we preserve the namespace that the + // episode actually belongs to (e.g. kitsu:animeId:epNum, not tvdb:showId:epNum). + const baseId = showIdStr && showIdStr !== id ? showIdStr : id; + stremioEpisodeId = `${baseId}:${episodeNum}`; } else { - stremioEpisodeId = `${id}:${seasonNum}:${episodeNum}`; + const baseId = showIdStr && showIdStr !== id ? showIdStr : id; + stremioEpisodeId = `${baseId}:${seasonNum}:${episodeNum}`; } - if (__DEV__) console.log('â„šī¸ [loadEpisodeStreams] Using ID as both TMDB and Stremio ID:', tmdbId); + if (__DEV__) console.log('â„šī¸ [loadEpisodeStreams] Using ID as both TMDB and Stremio ID:', tmdbId, '| stremioEpisodeId:', stremioEpisodeId); } // Extract episode info from the episodeId for logging @@ -2111,7 +2123,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat if (!metadata) return; if (inLibrary) { - catalogService.removeFromLibrary(type, id); + catalogService.removeFromLibrary(normalizedType, id); } else { catalogService.addToLibrary(metadata); } @@ -2190,12 +2202,12 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat try { const tmdbService = TMDBService.getInstance(); const lang = settings.useTmdbLocalizedMetadata ? (settings.tmdbLanguagePreference || 'en') : 'en'; - const results = await tmdbService.getRecommendations(type === 'movie' ? 'movie' : 'tv', String(tmdbId), lang); + const results = await tmdbService.getRecommendations(normalizedType === 'movie' ? 'movie' : 'tv', String(tmdbId), lang); // Convert TMDB results to StreamingContent format (simplified) const formattedRecommendations: StreamingContent[] = results.map((item: any) => ({ id: `tmdb:${item.id}`, - type: type === 'movie' ? 'movie' : 'series', + type: normalizedType === 'movie' ? 'movie' : 'series', name: item.title || item.name || 'Untitled', poster: tmdbService.getImageUrl(item.poster_path) || 'https://via.placeholder.com/300x450', // Provide fallback year: (item.release_date || item.first_air_date)?.substring(0, 4) || 'N/A', // Ensure string and provide fallback @@ -2226,7 +2238,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat setTmdbId(fetchedTmdbId); // Fetch certification only if granular setting is enabled if (settings.tmdbEnrichCertification) { - const certification = await tmdbService.getCertification(type, fetchedTmdbId); + const certification = await tmdbService.getCertification(normalizedType, fetchedTmdbId); if (certification) { if (__DEV__) console.log('[useMetadata] fetched certification via TMDB id (extract path)', { type, fetchedTmdbId, certification }); setMetadata(prev => prev ? { @@ -2299,7 +2311,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat return; } const tmdbSvc = TMDBService.getInstance(); - const cert = await tmdbSvc.getCertification(type, tmdbId); + const cert = await tmdbSvc.getCertification(normalizedType, tmdbId); if (cert) { if (__DEV__) console.log('[useMetadata] fetched certification (attach path)', { type, tmdbId, cert }); setMetadata(prev => prev ? { ...prev, tmdbId, certification: cert } : prev); @@ -2326,7 +2338,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat return; } - const contentKey = `${type}-${tmdbId}`; + const contentKey = `${normalizedType}-${tmdbId}`; if (productionInfoFetchedRef.current === contentKey) { return; } @@ -2334,7 +2346,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat // Only skip if networks are set AND collection is already set (for movies) const hasNetworks = !!(metadata as any).networks; const hasCollection = !!(metadata as any).collection; - if (hasNetworks && (type !== 'movie' || hasCollection)) { + if (hasNetworks && (normalizedType !== 'movie' || hasCollection)) { return; } @@ -2357,7 +2369,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat collectionsEnabled: settings.tmdbEnrichCollections }); - if (type === 'series') { + if (normalizedType === 'series') { // Fetch networks and additional details for TV shows const lang = settings.useTmdbLocalizedMetadata ? (settings.tmdbLanguagePreference || 'en') : 'en'; const showDetails = await tmdbService.getTVShowDetails(tmdbId, lang); @@ -2406,7 +2418,7 @@ export const useMetadata = ({ id, type, addonId }: UseMetadataProps): UseMetadat })); } } - } else if (type === 'movie') { + } else if (normalizedType === 'movie') { // Fetch production companies and additional details for movies const lang = settings.useTmdbLocalizedMetadata ? (settings.tmdbLanguagePreference || 'en') : 'en'; const movieDetails = await tmdbService.getMovieDetails(String(tmdbId), lang); From 7436d2d59af007df9a15cafecba6daf0728b42b6 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 00:55:32 +0530 Subject: [PATCH 02/15] remove hardcoded catalog type --- src/screens/SearchScreen.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/screens/SearchScreen.tsx b/src/screens/SearchScreen.tsx index c9eb4c39..d730abb2 100644 --- a/src/screens/SearchScreen.tsx +++ b/src/screens/SearchScreen.tsx @@ -84,7 +84,7 @@ const SearchScreen = () => { // Discover section state const [discoverCatalogs, setDiscoverCatalogs] = useState([]); const [selectedCatalog, setSelectedCatalog] = useState(null); - const [selectedDiscoverType, setSelectedDiscoverType] = useState<'movie' | 'series'>('movie'); + const [selectedDiscoverType, setSelectedDiscoverType] = useState('movie'); const [selectedDiscoverGenre, setSelectedDiscoverGenre] = useState(null); const [page, setPage] = useState(1); const [hasMore, setHasMore] = useState(true); @@ -127,7 +127,7 @@ const SearchScreen = () => { try { // Load saved type const savedType = await mmkvStorage.getItem(DISCOVER_TYPE_KEY); - if (savedType && (savedType === 'movie' || savedType === 'series')) { + if (savedType) { setSelectedDiscoverType(savedType); } @@ -141,7 +141,7 @@ const SearchScreen = () => { }, []); // Save discover settings when they change - const saveDiscoverSettings = useCallback(async (type: 'movie' | 'series', catalog: DiscoverCatalog | null, genre: string | null) => { + const saveDiscoverSettings = useCallback(async (type: string, catalog: DiscoverCatalog | null, genre: string | null) => { try { // Save type await mmkvStorage.setItem(DISCOVER_TYPE_KEY, type); @@ -267,10 +267,8 @@ const SearchScreen = () => { if (isMounted.current) { const allCatalogs: DiscoverCatalog[] = []; for (const [type, catalogs] of Object.entries(filters.catalogsByType)) { - if (type === 'movie' || type === 'series') { - for (const catalog of catalogs) { - allCatalogs.push({ ...catalog, type }); - } + for (const catalog of catalogs) { + allCatalogs.push({ ...catalog, type }); } } setDiscoverCatalogs(allCatalogs); @@ -636,9 +634,10 @@ const SearchScreen = () => { }; const availableGenres = useMemo(() => selectedCatalog?.genres || [], [selectedCatalog]); + const availableTypes = useMemo(() => [...new Set(discoverCatalogs.map(c => c.type))], [discoverCatalogs]); const filteredCatalogs = useMemo(() => discoverCatalogs.filter(c => c.type === selectedDiscoverType), [discoverCatalogs, selectedDiscoverType]); - const handleTypeSelect = (type: 'movie' | 'series') => { + const handleTypeSelect = (type: string) => { setSelectedDiscoverType(type); // Save type setting @@ -893,6 +892,7 @@ const SearchScreen = () => { selectedDiscoverGenre={selectedDiscoverGenre} filteredCatalogs={filteredCatalogs} availableGenres={availableGenres} + availableTypes={availableTypes} onTypeSelect={handleTypeSelect} onCatalogSelect={handleCatalogSelect} onGenreSelect={handleGenreSelect} From fce6c4930366c949c8663f014aeda114551a2ce4 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 00:58:17 +0530 Subject: [PATCH 03/15] remove hardcoded catalog type --- src/services/catalogService.ts | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/src/services/catalogService.ts b/src/services/catalogService.ts index cce738c8..71eb680d 100644 --- a/src/services/catalogService.ts +++ b/src/services/catalogService.ts @@ -363,6 +363,8 @@ class CatalogService { } private canBrowseCatalog(catalog: StreamingCatalog): boolean { + // Exclude non-standard types like anime.series, anime.movie from discover browsing + if (catalog.type && catalog.type.includes('.')) return false; const requiredExtras = this.getRequiredCatalogExtras(catalog); return requiredExtras.every(extraName => extraName === 'genre'); } @@ -1534,9 +1536,24 @@ class CatalogService { return; } - // Dedupe within addon and against global + // Within this addon's results, if the same ID appears under both a generic + // type (e.g. "series") and a specific type (e.g. "anime.series"), keep only + // the specific one. This handles addons that expose both catalog types. + const bestByIdWithinAddon = new Map(); + for (const item of addonResults) { + const existing = bestByIdWithinAddon.get(item.id); + if (!existing) { + bestByIdWithinAddon.set(item.id, item); + } else if (!existing.type.includes('.') && item.type.includes('.')) { + // Prefer the more specific type + bestByIdWithinAddon.set(item.id, item); + } + } + const deduped = Array.from(bestByIdWithinAddon.values()); + + // Dedupe against global seen (keyed by type:id to avoid cross-addon ID collisions) const localSeen = new Set(); - const unique = addonResults.filter(item => { + const unique = deduped.filter(item => { const key = `${item.type}:${item.id}`; if (localSeen.has(key) || globalSeen.has(key)) return false; localSeen.add(key); @@ -1626,6 +1643,12 @@ class CatalogService { const items = metas.map(meta => { const content = this.convertMetaToStreamingContent(meta); content.addonId = manifest.id; + // The meta's own type field may be generic (e.g. "series") even when + // the catalog it came from is more specific (e.g. "anime.series"). + // Stamp the catalog type so grouping in the UI is correct. + if (type && content.type !== type) { + content.type = type; + } return content; }); logger.log(`Found ${items.length} results from ${manifest.name}`); From 359655cc3230a47a0959bbdddd090db098319456 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 01:00:23 +0530 Subject: [PATCH 04/15] remove hardcoded catalog type --- src/components/search/AddonSection.tsx | 139 ++++++++----------------- 1 file changed, 46 insertions(+), 93 deletions(-) diff --git a/src/components/search/AddonSection.tsx b/src/components/search/AddonSection.tsx index 7d7c3b7a..d2506cb0 100644 --- a/src/components/search/AddonSection.tsx +++ b/src/components/search/AddonSection.tsx @@ -14,6 +14,24 @@ interface AddonSectionProps { currentTheme: any; } +const TYPE_LABELS: Record = { + 'movie': 'search.movies', + 'series': 'search.tv_shows', + 'anime.movie': 'search.anime_movies', + 'anime.series': 'search.anime_series', +}; + +const subtitleStyle = (currentTheme: any) => ({ + color: currentTheme.colors.lightGray, + fontSize: isTV ? 18 : isLargeTablet ? 17 : isTablet ? 16 : 14, + marginBottom: isTV ? 14 : isLargeTablet ? 13 : isTablet ? 12 : 8, + paddingHorizontal: isTV ? 24 : isLargeTablet ? 20 : isTablet ? 16 : 16, +}); + +const containerStyle = { + marginBottom: isTV ? 40 : isLargeTablet ? 36 : isTablet ? 32 : 24, +}; + export const AddonSection = React.memo(({ addonGroup, addonIndex, @@ -23,18 +41,27 @@ export const AddonSection = React.memo(({ }: AddonSectionProps) => { const { t } = useTranslation(); - const movieResults = useMemo(() => - addonGroup.results.filter(item => item.type === 'movie'), - [addonGroup.results] - ); - const seriesResults = useMemo(() => - addonGroup.results.filter(item => item.type === 'series'), - [addonGroup.results] - ); - const otherResults = useMemo(() => - addonGroup.results.filter(item => item.type !== 'movie' && item.type !== 'series'), - [addonGroup.results] - ); + // Group results by their exact type, preserving order of first appearance + const groupedByType = useMemo(() => { + const order: string[] = []; + const groups: Record = {}; + + for (const item of addonGroup.results) { + if (!groups[item.type]) { + order.push(item.type); + groups[item.type] = []; + } + groups[item.type].push(item); + } + + return order.map(type => ({ type, items: groups[type] })); + }, [addonGroup.results]); + + const getLabelForType = (type: string): string => { + if (TYPE_LABELS[type]) return t(TYPE_LABELS[type]); + // Fallback: capitalise and replace dots/underscores for unknown types + return type.replace(/[._]/g, ' ').replace(/\b\w/g, c => c.toUpperCase()); + }; return ( @@ -50,22 +77,13 @@ export const AddonSection = React.memo(({ - {/* Movies */} - {movieResults.length > 0 && ( - - - {t('search.movies')} ({movieResults.length}) + {groupedByType.map(({ type, items }) => ( + + + {getLabelForType(type)} ({items.length}) ( )} - keyExtractor={item => `${addonGroup.addonId}-movie-${item.id}`} + keyExtractor={item => `${addonGroup.addonId}-${type}-${item.id}`} horizontal showsHorizontalScrollIndicator={false} contentContainerStyle={styles.horizontalListContent} /> - )} - - {/* TV Shows */} - {seriesResults.length > 0 && ( - - - {t('search.tv_shows')} ({seriesResults.length}) - - ( - - )} - keyExtractor={item => `${addonGroup.addonId}-series-${item.id}`} - horizontal - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.horizontalListContent} - /> - - )} - - {/* Other types */} - {otherResults.length > 0 && ( - - - {otherResults[0].type.charAt(0).toUpperCase() + otherResults[0].type.slice(1)} ({otherResults.length}) - - ( - - )} - keyExtractor={item => `${addonGroup.addonId}-${item.type}-${item.id}`} - horizontal - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.horizontalListContent} - /> - - )} + ))} ); }, (prev, next) => { - // Only re-render if this section's reference changed return prev.addonGroup === next.addonGroup && prev.addonIndex === next.addonIndex; }); From caaff9ab2060656221b141549807fea8311f75da Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 01:01:36 +0530 Subject: [PATCH 05/15] remove hardcoded catalog type --- .../search/DiscoverBottomSheets.tsx | 81 +++++++++---------- 1 file changed, 37 insertions(+), 44 deletions(-) diff --git a/src/components/search/DiscoverBottomSheets.tsx b/src/components/search/DiscoverBottomSheets.tsx index 87d17d0d..52719f91 100644 --- a/src/components/search/DiscoverBottomSheets.tsx +++ b/src/components/search/DiscoverBottomSheets.tsx @@ -11,12 +11,13 @@ interface DiscoverBottomSheetsProps { typeSheetRef: RefObject; catalogSheetRef: RefObject; genreSheetRef: RefObject; - selectedDiscoverType: 'movie' | 'series'; + selectedDiscoverType: string; selectedCatalog: DiscoverCatalog | null; selectedDiscoverGenre: string | null; filteredCatalogs: DiscoverCatalog[]; availableGenres: string[]; - onTypeSelect: (type: 'movie' | 'series') => void; + availableTypes: string[]; + onTypeSelect: (type: string) => void; onCatalogSelect: (catalog: DiscoverCatalog) => void; onGenreSelect: (genre: string | null) => void; currentTheme: any; @@ -31,6 +32,7 @@ export const DiscoverBottomSheets = ({ selectedDiscoverGenre, filteredCatalogs, availableGenres, + availableTypes, onTypeSelect, onCatalogSelect, onGenreSelect, @@ -38,7 +40,20 @@ export const DiscoverBottomSheets = ({ }: DiscoverBottomSheetsProps) => { const { t } = useTranslation(); - const typeSnapPoints = useMemo(() => ['25%'], []); + const TYPE_LABELS: Record = { + 'movie': t('search.movies'), + 'series': t('search.tv_shows'), + 'anime.movie': t('search.anime_movies'), + 'anime.series': t('search.anime_series'), + }; + const getLabelForType = (type: string) => + TYPE_LABELS[type] ?? type.replace(/[._]/g, ' ').replace(/\b\w/g, c => c.toUpperCase()); + + const typeSnapPoints = useMemo(() => { + const itemCount = availableTypes.length; + const snapPct = Math.min(20 + itemCount * 10, 60); + return [`${snapPct}%`]; + }, [availableTypes]); const catalogSnapPoints = useMemo(() => ['50%'], []); const genreSnapPoints = useMemo(() => ['50%'], []); const [activeBottomSheetRef, setActiveBottomSheetRef] = useState(null); @@ -225,47 +240,25 @@ export const DiscoverBottomSheets = ({ style={{ backgroundColor: currentTheme.colors.darkGray || '#0A0C0C' }} contentContainerStyle={styles.bottomSheetContent} > - {/* Movies option */} - onTypeSelect('movie')} - > - - - {t('search.movies')} - - - {t('search.browse_movies')} - - - {selectedDiscoverType === 'movie' && ( - - )} - - - {/* TV Shows option */} - onTypeSelect('series')} - > - - - {t('search.tv_shows')} - - - {t('search.browse_tv')} - - - {selectedDiscoverType === 'series' && ( - - )} - + {availableTypes.map((type) => ( + onTypeSelect(type)} + > + + + {getLabelForType(type)} + + + {selectedDiscoverType === type && ( + + )} + + ))} From f60087c6c45b3c8c824221b019a8055f66a40587 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Sat, 14 Mar 2026 01:03:07 +0530 Subject: [PATCH 06/15] remove hardcoded catalog type --- src/components/search/DiscoverSection.tsx | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/components/search/DiscoverSection.tsx b/src/components/search/DiscoverSection.tsx index db83a562..ba6dfe05 100644 --- a/src/components/search/DiscoverSection.tsx +++ b/src/components/search/DiscoverSection.tsx @@ -22,7 +22,7 @@ interface DiscoverSectionProps { pendingDiscoverResults: StreamingContent[]; loadingMore: boolean; selectedCatalog: DiscoverCatalog | null; - selectedDiscoverType: 'movie' | 'series'; + selectedDiscoverType: string; selectedDiscoverGenre: string | null; availableGenres: string[]; typeSheetRef: React.RefObject; @@ -78,7 +78,11 @@ export const DiscoverSection = ({ onPress={() => typeSheetRef.current?.present()} > - {selectedDiscoverType === 'movie' ? t('search.movies') : t('search.tv_shows')} + {selectedDiscoverType === 'movie' ? t('search.movies') + : selectedDiscoverType === 'series' ? t('search.tv_shows') + : selectedDiscoverType === 'anime.movie' ? t('search.anime_movies') + : selectedDiscoverType === 'anime.series' ? t('search.anime_series') + : selectedDiscoverType.replace(/[._]/g, ' ').replace(/\b\w/g, c => c.toUpperCase())} @@ -112,8 +116,13 @@ export const DiscoverSection = ({ {selectedCatalog && ( - {selectedCatalog.addonName} â€ĸ {selectedCatalog.type === 'movie' ? t('search.movies') : t('search.tv_shows')} - {selectedDiscoverGenre ? ` â€ĸ ${selectedDiscoverGenre}` : ''} + {selectedCatalog.addonName} â€ĸ { + selectedCatalog.type === 'movie' ? t('search.movies') + : selectedCatalog.type === 'series' ? t('search.tv_shows') + : selectedCatalog.type === 'anime.movie' ? t('search.anime_movies') + : selectedCatalog.type === 'anime.series' ? t('search.anime_series') + : selectedCatalog.type.replace(/[._]/g, ' ').replace(/\b\w/g, c => c.toUpperCase()) + }{selectedDiscoverGenre ? ` â€ĸ ${selectedDiscoverGenre}` : ''} )} From 4135b4725ada15f1c5c3221c1d0182375ef708af Mon Sep 17 00:00:00 2001 From: tapframe <85391825+tapframe@users.noreply.github.com> Date: Sat, 14 Mar 2026 01:34:49 +0530 Subject: [PATCH 07/15] update ver --- android/app/build.gradle | 6 +- android/app/src/main/res/values/strings.xml | 2 +- app.json | 8 +- ios/Nuvio/Info.plist | 4 +- .../com/brentvatne/exoplayer/ExoPlayerView.kt | 58 +- .../exoplayer/ReactExoplayerView.java | 2 +- patches/react-native-video+6.19.0.patch | 91429 +++++++++++++++- src/utils/version.ts | 2 +- 8 files changed, 91371 insertions(+), 140 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 48382527..f41d1c56 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -92,8 +92,8 @@ android { applicationId 'com.nuvio.app' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 38 - versionName "1.4.2" + versionCode 40 + versionName "1.4.4" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" } @@ -115,7 +115,7 @@ android { def abiVersionCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2, 'x86': 3, 'x86_64': 4] applicationVariants.all { variant -> variant.outputs.each { output -> - def baseVersionCode = 38 // Current versionCode 38 from defaultConfig + def baseVersionCode = 40 // Current versionCode 40 from defaultConfig def abiName = output.getFilter(com.android.build.OutputFile.ABI) def versionCode = baseVersionCode * 100 // Base multiplier diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index 836f69b4..9f9bfd6e 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -3,5 +3,5 @@ contain false dark - 1.4.2 + 1.4.4 \ No newline at end of file diff --git a/app.json b/app.json index a73174b9..fe05a47a 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Nuvio", "slug": "nuvio", - "version": "1.4.2", + "version": "1.4.4", "orientation": "default", "backgroundColor": "#020404", "icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png", @@ -17,7 +17,7 @@ "ios": { "supportsTablet": true, "icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png", - "buildNumber": "38", + "buildNumber": "40", "infoPlist": { "NSAppTransportSecurity": { "NSAllowsArbitraryLoads": true @@ -60,7 +60,7 @@ "android.permission.WRITE_SETTINGS" ], "package": "com.nuvio.app", - "versionCode": 38, + "versionCode": 40, "architectures": [ "arm64-v8a", "armeabi-v7a", @@ -113,6 +113,6 @@ "fallbackToCacheTimeout": 30000, "url": "https://ota.nuvioapp.space/api/manifest" }, - "runtimeVersion": "1.4.2" + "runtimeVersion": "1.4.4" } } diff --git a/ios/Nuvio/Info.plist b/ios/Nuvio/Info.plist index 52462dd9..3f7484f0 100644 --- a/ios/Nuvio/Info.plist +++ b/ios/Nuvio/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.4.2 + 1.4.4 CFBundleSignature ???? CFBundleURLTypes @@ -39,7 +39,7 @@ CFBundleVersion - 38 + 40 LSApplicationQueriesSchemes vlc diff --git a/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.kt b/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.kt index 5a6b554a..30453db8 100644 --- a/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.kt +++ b/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ExoPlayerView.kt @@ -111,6 +111,10 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute this.player = player playerView.player = player player?.addListener(playerListener) + + pendingResizeMode?.let { resizeMode -> + playerView.resizeMode = resizeMode + } } fun setResizeMode(@ResizeMode.Mode mode: Int) { @@ -122,11 +126,10 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute ResizeMode.RESIZE_MODE_CENTER_CROP -> androidx.media3.ui.AspectRatioFrameLayout.RESIZE_MODE_ZOOM else -> androidx.media3.ui.AspectRatioFrameLayout.RESIZE_MODE_FIT } - if (playerView.width > 0 && playerView.height > 0) { - playerView.resizeMode = resizeMode - } else { - pendingResizeMode = resizeMode - } + pendingResizeMode = resizeMode + playerView.resizeMode = resizeMode + playerView.requestLayout() + requestLayout() // Re-assert subtitle rendering mode for the current style. updateSubtitleRenderingMode() @@ -198,7 +201,7 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute val replacementPlayerView = createPlayerView(viewType).apply { layoutParams = previousLayoutParams - resizeMode = previousResizeMode + resizeMode = pendingResizeMode ?: previousResizeMode useController = previousUseController controllerAutoShow = previousControllerAutoShow controllerHideOnTouch = previousControllerHideOnTouch @@ -350,7 +353,11 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute fun invalidateAspectRatio() { playerView.post { + pendingResizeMode?.let { resizeMode -> + playerView.resizeMode = resizeMode + } playerView.requestLayout() + requestLayout() } } @@ -364,20 +371,45 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute override fun onTimelineChanged(timeline: Timeline, reason: Int) { playerView.post { + pendingResizeMode?.let { resizeMode -> + playerView.resizeMode = resizeMode + } playerView.requestLayout() + requestLayout() + } + } + + override fun onEvents(player: Player, events: Player.Events) { + if (events.contains(Player.EVENT_VIDEO_SIZE_CHANGED)) { + pendingResizeMode?.let { resizeMode -> + playerView.resizeMode = resizeMode + } + playerView.requestLayout() + requestLayout() } } } - override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) { - super.onMeasure(widthMeasureSpec, heightMeasureSpec) - val width = MeasureSpec.getSize(widthMeasureSpec) - val height = MeasureSpec.getSize(heightMeasureSpec) - if (width > 0 && height > 0) { + private val layoutRunnable = Runnable { + measure( + MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY), + MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY) + ) + layout(left, top, right, bottom) + } + + override fun requestLayout() { + super.requestLayout() + post(layoutRunnable) + } + + override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) { + super.onLayout(changed, left, top, right, bottom) + + if (changed) { pendingResizeMode?.let { resizeMode -> playerView.resizeMode = resizeMode } - // Re-apply bottomPaddingFraction once we have a concrete height. updateSubtitleRenderingMode() applySubtitleStyle(localStyle) } @@ -399,7 +431,7 @@ class ExoPlayerView @JvmOverloads constructor(context: Context, attrs: Attribute setShowSubtitleButton(showSubtitleButton) setUseArtwork(false) setDefaultArtwork(null) - resizeMode = AspectRatioFrameLayout.RESIZE_MODE_FIT + resizeMode = pendingResizeMode ?: AspectRatioFrameLayout.RESIZE_MODE_FIT if (viewType == ViewType.VIEW_TYPE_SURFACE_SECURE && Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { (videoSurfaceView as? SurfaceView)?.setSecure(true) diff --git a/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java b/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java index 5da47d6c..0f802e5c 100644 --- a/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java +++ b/node_modules/react-native-video/android/src/main/java/com/brentvatne/exoplayer/ReactExoplayerView.java @@ -732,7 +732,7 @@ public class ReactExoplayerView extends FrameLayout implements DefaultRenderersFactory renderersFactory = new DefaultRenderersFactory(getContext()) - .setExtensionRendererMode(DefaultRenderersFactory.EXTENSION_RENDERER_MODE_OFF) + .setExtensionRendererMode(DefaultRenderersFactory.EXTENSION_RENDERER_MODE_PREFER) .setEnableDecoderFallback(true) .forceEnableMediaCodecAsynchronousQueueing(); diff --git a/patches/react-native-video+6.19.0.patch b/patches/react-native-video+6.19.0.patch index 89d378d5..0968d28d 100644 --- a/patches/react-native-video+6.19.0.patch +++ b/patches/react-native-video+6.19.0.patch @@ -69,6 +69,17 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..c2dc80f Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/1c096929e6398cea79a0a59f22b8132e/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..c33748d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4445f7110cbfe52b31711451cbce44b0/transformed/classes/classes_dex/classes.dex differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/49de01a8fc3c95953c57795b625efe85/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/49de01a8fc3c95953c57795b625efe85/results.bin new file mode 100644 index 0000000..0d259dd @@ -80,6 +91,473 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..a882dd6 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/49de01a8fc3c95953c57795b625efe85/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/results.bin +new file mode 100644 +index 0000000..e1640c9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirRelease +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.dex +new file mode 100644 +index 0000000..fc78278 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader.dex +new file mode 100644 +index 0000000..eb5698a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaAdsLoader.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.dex +new file mode 100644 +index 0000000..e658c8c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.dex +new file mode 100644 +index 0000000..9bbb1d6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.dex +new file mode 100644 +index 0000000..4ee33b6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.dex +new file mode 100644 +index 0000000..dca2dc6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.dex +new file mode 100644 +index 0000000..1b591f0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.dex +new file mode 100644 +index 0000000..4caa035 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource.dex +new file mode 100644 +index 0000000..3f9d0ee +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/androidx/media3/exoplayer/rtsp/RtspMediaSource.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps$Companion.dex +new file mode 100644 +index 0000000..3af69e3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps.dex +new file mode 100644 +index 0000000..65bc4af +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/AdsProps.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Companion.dex +new file mode 100644 +index 0000000..9136014 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live$Companion.dex +new file mode 100644 +index 0000000..f676def +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live.dex +new file mode 100644 +index 0000000..f3fdd40 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig$Live.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig.dex +new file mode 100644 +index 0000000..74add2f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$BufferingStrategyEnum.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$BufferingStrategyEnum.dex +new file mode 100644 +index 0000000..0b232ec +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$BufferingStrategyEnum.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$Companion.dex +new file mode 100644 +index 0000000..1c90c3d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy.dex +new file mode 100644 +index 0000000..f4a5097 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/BufferingStrategy.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion$WhenMappings.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion$WhenMappings.dex +new file mode 100644 +index 0000000..5e07902 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion$WhenMappings.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion.dex +new file mode 100644 +index 0000000..7e4284e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps.dex +new file mode 100644 +index 0000000..5967fe7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/CMCDProps.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig$Companion.dex +new file mode 100644 +index 0000000..90c7f94 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig.dex +new file mode 100644 +index 0000000..a4d697c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ControlsConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps$Companion.dex +new file mode 100644 +index 0000000..a3846a2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps.dex +new file mode 100644 +index 0000000..6fb5d48 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/DRMProps.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode$Mode.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode$Mode.dex +new file mode 100644 +index 0000000..730f3e4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode$Mode.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode.dex +new file mode 100644 +index 0000000..a15997a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ResizeMode.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack$Companion.dex +new file mode 100644 +index 0000000..0334c77 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack.dex +new file mode 100644 +index 0000000..29fec37 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrack.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList$Companion.dex +new file mode 100644 +index 0000000..8d0ebd0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList.dex +new file mode 100644 +index 0000000..7b263cd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SideLoadedTextTrackList.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Companion.dex +new file mode 100644 +index 0000000..361518b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata$Companion.dex +new file mode 100644 +index 0000000..e7e1d07 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata.dex +new file mode 100644 +index 0000000..484d2ca +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source$Metadata.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source.dex +new file mode 100644 +index 0000000..83b5f82 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Source.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle$Companion.dex +new file mode 100644 +index 0000000..6ffe2c3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle.dex +new file mode 100644 +index 0000000..8c040d9 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/SubtitleStyle.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/TimedMetadata.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/TimedMetadata.dex +new file mode 100644 +index 0000000..b9cf649 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/TimedMetadata.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Track.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Track.dex +new file mode 100644 +index 0000000..d4e02a2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/Track.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/VideoTrack.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/VideoTrack.dex +new file mode 100644 +index 0000000..10ddc00 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/VideoTrack.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType$ViewType.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType$ViewType.dex +new file mode 100644 +index 0000000..a862036 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType$ViewType.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType.dex +new file mode 100644 +index 0000000..500e78d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/api/ViewType.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes$Companion.dex +new file mode 100644 +index 0000000..9f46342 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes.dex +new file mode 100644 +index 0000000..f1a351c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/EventTypes.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$EventBuilder.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$EventBuilder.dex +new file mode 100644 +index 0000000..c4d8515 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$EventBuilder.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$VideoCustomEvent.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$VideoCustomEvent.dex +new file mode 100644 +index 0000000..166135c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter$VideoCustomEvent.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter.dex +new file mode 100644 +index 0000000..e171cda +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/react/VideoEventEmitter.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/DebugLog.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/DebugLog.dex +new file mode 100644 +index 0000000..0961e63 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/DebugLog.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/ReactBridgeUtils.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/ReactBridgeUtils.dex +new file mode 100644 +index 0000000..dac22e2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/common/toolbox/ReactBridgeUtils.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout$Companion.dex +new file mode 100644 +index 0000000..59e8bbe +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout.dex +new file mode 100644 +index 0000000..ab91bfd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AspectRatioFrameLayout.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput$Companion.dex +new file mode 100644 +index 0000000..0d6ab01 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput.dex +new file mode 100644 +index 0000000..50dca90 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/AudioOutput.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig$createCmcdConfiguration$1.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig$createCmcdConfiguration$1.dex +new file mode 100644 +index 0000000..a0ede3f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig$createCmcdConfiguration$1.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig.dex +new file mode 100644 +index 0000000..93b2dae +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/CMCDConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ConfigurationUtils.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ConfigurationUtils.dex +new file mode 100644 +index 0000000..eec662a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ConfigurationUtils.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManager.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManager.dex +new file mode 100644 +index 0000000..5607b57 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManager.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManagerSpec.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManagerSpec.dex +new file mode 100644 +index 0000000..433958f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DRMManagerSpec.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DataSourceUtil.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DataSourceUtil.dex +new file mode 100644 +index 0000000..6dcbf30 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DataSourceUtil.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DefaultReactExoplayerConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DefaultReactExoplayerConfig.dex +new file mode 100644 +index 0000000..95c1cb7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/DefaultReactExoplayerConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView$playerListener$1.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView$playerListener$1.dex +new file mode 100644 +index 0000000..1533f03 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView$playerListener$1.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView.dex +new file mode 100644 +index 0000000..0486238 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ExoPlayerView.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater$Companion.dex +new file mode 100644 +index 0000000..f8e365d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater.dex +new file mode 100644 +index 0000000..d4216f3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView$KeepScreenOnUpdater.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView.dex +new file mode 100644 +index 0000000..6e60846 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/FullScreenPlayerView.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtil.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtil.dex +new file mode 100644 +index 0000000..7c1e7fa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtil.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtilKt.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtilKt.dex +new file mode 100644 +index 0000000..efcb377 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PictureInPictureUtilKt.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PlaybackServiceBinder.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PlaybackServiceBinder.dex +new file mode 100644 +index 0000000..cc646a5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/PlaybackServiceBinder.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin$DefaultImpls.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin$DefaultImpls.dex +new file mode 100644 +index 0000000..fe8c814 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin$DefaultImpls.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin.dex +new file mode 100644 +index 0000000..c2d92c7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVExoplayerPlugin.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVSimpleCache.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVSimpleCache.dex +new file mode 100644 +index 0000000..57eafa1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/RNVSimpleCache.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerConfig.dex +new file mode 100644 +index 0000000..da231d5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerLoadErrorHandlingPolicy.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerLoadErrorHandlingPolicy.dex +new file mode 100644 +index 0000000..d95233f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerLoadErrorHandlingPolicy.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$1.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$1.dex +new file mode 100644 +index 0000000..db0218b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$1.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$2.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$2.dex +new file mode 100644 +index 0000000..4ed8062 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$2.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$3.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$3.dex +new file mode 100644 +index 0000000..5a95e49 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$3.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$4.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$4.dex +new file mode 100644 +index 0000000..94ab612 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$4.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.dex +new file mode 100644 +index 0000000..04dd148 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.dex +new file mode 100644 +index 0000000..33179c6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView.dex +new file mode 100644 +index 0000000..b4bbaa4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerView.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager$Companion.dex +new file mode 100644 +index 0000000..d53ea31 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager.dex +new file mode 100644 +index 0000000..9245c1e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/ReactExoplayerViewManager.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackCallback.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackCallback.dex +new file mode 100644 +index 0000000..955dbff +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackCallback.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$COMMAND.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$COMMAND.dex +new file mode 100644 +index 0000000..0bb7a51 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$COMMAND.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$WhenMappings.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$WhenMappings.dex +new file mode 100644 +index 0000000..edf167a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion$WhenMappings.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion.dex +new file mode 100644 +index 0000000..4db0870 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService.dex +new file mode 100644 +index 0000000..a8d4c99 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/VideoPlaybackService.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$Companion.dex +new file mode 100644 +index 0000000..afb1e48 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$YoutubeChunkedDataSource.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$YoutubeChunkedDataSource.dex +new file mode 100644 +index 0000000..5769a78 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory$YoutubeChunkedDataSource.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory.dex +new file mode 100644 +index 0000000..018f82b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/exoplayer/YoutubeChunkedDataSourceFactory.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/BuildConfig.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/BuildConfig.dex +new file mode 100644 +index 0000000..d09b0c4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/BuildConfig.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/RNVPlugin.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/RNVPlugin.dex +new file mode 100644 +index 0000000..234775c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/RNVPlugin.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager$Companion.dex +new file mode 100644 +index 0000000..54e3ac2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager.dex +new file mode 100644 +index 0000000..1421ddd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactNativeVideoManager.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactVideoPackage.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactVideoPackage.dex +new file mode 100644 +index 0000000..ca3bea6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/ReactVideoPackage.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule$Companion.dex +new file mode 100644 +index 0000000..9310a76 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule.dex +new file mode 100644 +index 0000000..579ed6e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoDecoderInfoModule.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule$Companion.dex +new file mode 100644 +index 0000000..4a325dc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule.dex +new file mode 100644 +index 0000000..6e1c7f8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/react/VideoManagerModule.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/AudioBecomingNoisyReceiver.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/AudioBecomingNoisyReceiver.dex +new file mode 100644 +index 0000000..0de9411 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/AudioBecomingNoisyReceiver.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion$NO_OP$1.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion$NO_OP$1.dex +new file mode 100644 +index 0000000..08fcc3b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion$NO_OP$1.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion.dex +new file mode 100644 +index 0000000..dde987f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener.dex +new file mode 100644 +index 0000000..0499a87 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/BecomingNoisyListener.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver$Companion.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver$Companion.dex +new file mode 100644 +index 0000000..16c04a9 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver$Companion.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver.dex +new file mode 100644 +index 0000000..88c1c09 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/brentvatne/receiver/PictureInPictureReceiver.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdError.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdError.dex +new file mode 100644 +index 0000000..9fd1f55 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdError.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.dex +new file mode 100644 +index 0000000..4b07e15 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent.dex +new file mode 100644 +index 0000000..e5b4f44 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdErrorEvent.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.dex +new file mode 100644 +index 0000000..e253249 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent.dex +new file mode 100644 +index 0000000..ecca3a2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/AdEvent.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.dex +new file mode 100644 +index 0000000..c6d8f30 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.dex +new file mode 100644 +index 0000000..0db020d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.dex +new file mode 100644 +index 0000000..e79a520 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.dex +new file mode 100644 +index 0000000..f8aaefc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/bundleLibRuntimeToDirRelease_dex/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin +new file mode 100644 +index 0000000..6e44e83 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4b6867c024b32c7c0b0b2b0e46d609d9/transformed/bundleLibRuntimeToDirRelease/desugar_graph.bin differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4c92483a610d5032309d824c8f29379b/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/4c92483a610d5032309d824c8f29379b/results.bin new file mode 100644 index 0000000..0d259dd @@ -102,6 +580,17 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..df3748c Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/6a79812b267f51df7d969e0e0c9a56bf/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..8e00950 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/c76894738132398e5f4cd6e80a8848b5/transformed/classes/classes_dex/classes.dex differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/ef1fc2e55ac5a71c44ab9a0d6904b498/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/ef1fc2e55ac5a71c44ab9a0d6904b498/results.bin new file mode 100644 index 0000000..0d259dd @@ -113,6 +602,17 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..7122e64 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/ef1fc2e55ac5a71c44ab9a0d6904b498/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/results.bin b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..2931319 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/.transforms/fd350e6068a9515eac3e464355328610/transformed/classes/classes_dex/classes.dex differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/generated/source/buildConfig/debug/com/brentvatne/react/BuildConfig.java b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/generated/source/buildConfig/debug/com/brentvatne/react/BuildConfig.java new file mode 100644 index 0000000..b26a50e @@ -141,6 +641,34 @@ index 0000000..b26a50e + // Field from default config. + public static final boolean USE_EXOPLAYER_SMOOTH_STREAMING = true; +} +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/generated/source/buildConfig/release/com/brentvatne/react/BuildConfig.java b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/generated/source/buildConfig/release/com/brentvatne/react/BuildConfig.java +new file mode 100644 +index 0000000..10a2f02 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/generated/source/buildConfig/release/com/brentvatne/react/BuildConfig.java +@@ -0,0 +1,22 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.brentvatne.react; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = false; ++ public static final String LIBRARY_PACKAGE_NAME = "com.brentvatne.react"; ++ public static final String BUILD_TYPE = "release"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; ++ // Field from default config. ++ public static final boolean USE_EXOPLAYER_DASH = true; ++ // Field from default config. ++ public static final boolean USE_EXOPLAYER_HLS = true; ++ // Field from default config. ++ public static final boolean USE_EXOPLAYER_IMA = false; ++ // Field from default config. ++ public static final boolean USE_EXOPLAYER_RTSP = false; ++ // Field from default config. ++ public static final boolean USE_EXOPLAYER_SMOOTH_STREAMING = true; ++} diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml new file mode 100644 index 0000000..728c5a9 @@ -180,6 +708,49 @@ index 0000000..247891c + "elementType": "File" +} \ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..728c5a9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..a685db3 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.brentvatne.react", ++ "variantName": "release", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar +new file mode 100644 +index 0000000..5f248af +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e @@ -192,6 +763,18 @@ index 0000000..1211b1e +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe @@ -200,14 +783,33 @@ index 0000000..9e26dfe @@ -0,0 +1 @@ +{} \ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar new file mode 100644 -index 0000000..b4ff5b2 +index 0000000..8962917 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar +new file mode 100644 +index 0000000..3521d40 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar new file mode 100644 index 0000000..c77eb54 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar +new file mode 100644 +index 0000000..c77eb54 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt new file mode 100644 index 0000000..5ff4461 @@ -260,6 +862,58 @@ index 0000000..5ff4461 +int string settings 0x0 +int string unrecognized_media_format 0x0 +int style ExoMediaButton_FullScreen 0x0 +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt +new file mode 100644 +index 0000000..5ff4461 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt +@@ -0,0 +1,46 @@ ++int color player_overlay_color 0x0 ++int color red 0x0 ++int color silver_gray 0x0 ++int color white 0x0 ++int dimen controller_wrapper_padding_top 0x0 ++int dimen full_screen_margin 0x0 ++int dimen full_screen_size 0x0 ++int dimen live_wrapper_margin_top 0x0 ++int dimen position_duration_horizontal_padding 0x0 ++int dimen position_duration_text_size 0x0 ++int dimen position_duration_width 0x0 ++int dimen seekBar_height 0x0 ++int dimen seekBar_wrapper_margin_top 0x0 ++int drawable circle 0x0 ++int id exo_duration 0x0 ++int id exo_ffwd 0x0 ++int id exo_fullscreen 0x0 ++int id exo_live_container 0x0 ++int id exo_live_icon 0x0 ++int id exo_live_label 0x0 ++int id exo_next 0x0 ++int id exo_pause 0x0 ++int id exo_play 0x0 ++int id exo_play_pause_container 0x0 ++int id exo_position 0x0 ++int id exo_prev 0x0 ++int id exo_progress 0x0 ++int id exo_rew 0x0 ++int id exo_settings 0x0 ++int layout exo_legacy_player_control_view 0x0 ++int layout exo_player_view_surface 0x0 ++int layout exo_player_view_texture 0x0 ++int string error_drm_not_supported 0x0 ++int string error_drm_unknown 0x0 ++int string error_drm_unsupported_scheme 0x0 ++int string error_instantiating_decoder 0x0 ++int string error_no_decoder 0x0 ++int string error_no_secure_decoder 0x0 ++int string error_querying_decoders 0x0 ++int string media_playback_notification_text 0x0 ++int string media_playback_notification_title 0x0 ++int string playback_speed 0x0 ++int string select_playback_speed 0x0 ++int string settings 0x0 ++int string unrecognized_media_format 0x0 ++int style ExoMediaButton_FullScreen 0x0 diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_circle.xml.flat b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_circle.xml.flat new file mode 100644 index 0000000..e62758d @@ -276,29 +930,2066 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..18e693a Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_exo_player_view_texture.xml.flat differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_circle.xml.flat b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_circle.xml.flat +new file mode 100644 +index 0000000..d8dccf3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_circle.xml.flat differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_legacy_player_control_view.xml.flat b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_legacy_player_control_view.xml.flat +new file mode 100644 +index 0000000..eef8024 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_legacy_player_control_view.xml.flat differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_surface.xml.flat b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_surface.xml.flat +new file mode 100644 +index 0000000..bff7e40 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_surface.xml.flat differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_texture.xml.flat b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_texture.xml.flat +new file mode 100644 +index 0000000..ca395c1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/layout_exo_player_view_texture.xml.flat differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 +new file mode 100644 +index 0000000..5a3e3a5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 +@@ -0,0 +1,89 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file ++# instead of this one, which turns off the optimization flags. ++-allowaccessmodification ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 +new file mode 100644 +index 0000000..6f7e4ef +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 +@@ -0,0 +1,95 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimization is turned off by default. Dex does not like code run ++# through the ProGuard optimize steps (and performs some ++# of these optimizations on its own). ++# Note that if you want to enable optimization, you cannot just ++# include optimization flags in your own project configuration file; ++# instead you will need to point to the ++# "proguard-android-optimize.txt" file instead of this one from your ++# project.properties file. ++-dontoptimize ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 +new file mode 100644 +index 0000000..7bbb228 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 +@@ -0,0 +1,89 @@ ++# This is a configuration file for ProGuard. ++# http://proguard.sourceforge.net/index.html#manual/usage.html ++# ++# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with ++# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and ++# will be ignored by new version of the Android plugin for Gradle. ++ ++# Optimizations can be turned on and off in the 'postProcessing' DSL block. ++# The configuration below is applied if optimizations are enabled. ++-allowaccessmodification ++ ++# Preserve some attributes that may be required for reflection. ++-keepattributes AnnotationDefault, ++ EnclosingMethod, ++ InnerClasses, ++ RuntimeVisibleAnnotations, ++ RuntimeVisibleParameterAnnotations, ++ RuntimeVisibleTypeAnnotations, ++ Signature ++ ++-keep public class com.google.vending.licensing.ILicensingService ++-keep public class com.android.vending.licensing.ILicensingService ++-keep public class com.google.android.vending.licensing.ILicensingService ++-dontnote com.android.vending.licensing.ILicensingService ++-dontnote com.google.vending.licensing.ILicensingService ++-dontnote com.google.android.vending.licensing.ILicensingService ++ ++# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native ++-keepclasseswithmembernames,includedescriptorclasses class * { ++ native ; ++} ++ ++# Keep setters in Views so that animations can still work. ++-keepclassmembers public class * extends android.view.View { ++ void set*(***); ++ *** get*(); ++} ++ ++# We want to keep methods in Activity that could be used in the XML attribute onClick. ++-keepclassmembers class * extends android.app.Activity { ++ public void *(android.view.View); ++} ++ ++# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations ++-keepclassmembers enum * { ++ public static **[] values(); ++ public static ** valueOf(java.lang.String); ++} ++ ++-keepclassmembers class * implements android.os.Parcelable { ++ public static final ** CREATOR; ++} ++ ++# Preserve annotated Javascript interface methods. ++-keepclassmembers class * { ++ @android.webkit.JavascriptInterface ; ++} ++ ++# The support libraries contains references to newer platform versions. ++# Don't warn about those in case this app is linking against an older ++# platform version. We know about them, and they are safe. ++-dontnote android.support.** ++-dontnote androidx.** ++-dontwarn android.support.** ++-dontwarn androidx.** ++ ++# Understand the @Keep support annotation. ++-keep class android.support.annotation.Keep ++ ++-keep @android.support.annotation.Keep class * {*;} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep ; ++} ++ ++-keepclasseswithmembers class * { ++ @android.support.annotation.Keep (...); ++} ++ ++# These classes are duplicated between android.jar and org.apache.http.legacy.jar. ++-dontnote org.apache.http.** ++-dontnote android.net.http.** ++ ++# These classes are duplicated between android.jar and core-lambda-stubs.jar. ++-dontnote java.lang.invoke.** +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/full_jar/release/createFullJarRelease/full.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/full_jar/release/createFullJarRelease/full.jar +new file mode 100644 +index 0000000..1dd2707 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/full_jar/release/createFullJarRelease/full.jar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties new file mode 100644 -index 0000000..84f66f5 +index 0000000..1cee60f --- /dev/null +++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties @@ -0,0 +1,5 @@ -+#Fri Mar 13 06:44:02 IST 2026 ++#Fri Mar 13 21:23:57 IST 2026 +com.brentvatne.react.react-native-video-main-6\:/layout/exo_player_view_surface.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/debug/packageDebugResources/layout/exo_player_view_surface.xml +com.brentvatne.react.react-native-video-main-6\:/drawable/circle.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/debug/packageDebugResources/drawable/circle.xml -+com.brentvatne.react.react-native-video-main-6\:/layout/exo_legacy_player_control_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/debug/packageDebugResources/layout/exo_legacy_player_control_view.xml +com.brentvatne.react.react-native-video-main-6\:/layout/exo_player_view_texture.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/debug/packageDebugResources/layout/exo_player_view_texture.xml ++com.brentvatne.react.react-native-video-main-6\:/layout/exo_legacy_player_control_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/debug/packageDebugResources/layout/exo_legacy_player_control_view.xml +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..e8dd9e4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,33 @@ ++ ++ ++ #00000000 ++ #FF0000 ++ #FFBEBEBE ++ #FFFFFF ++ 4dp ++ 4dp ++ 30dp ++ 12dp ++ 4dp ++ 14sp ++ 50dp ++ 26dp ++ 4dp ++ Protected content not supported on API levels below 18 ++ An unknown DRM error occurred ++ This device does not support the required DRM scheme ++ Unable to instantiate decoder %1$s ++ This device does not provide a decoder for %1$s ++ This device does not provide a secure decoder for %1$s ++ Unable to query device decoders ++ Preparing playback ++ Media playback ++ Playback Speed ++ Select Playback Speed ++ Settings ++ Unrecognized media format ++ ++ +\ No newline at end of file diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merger.xml new file mode 100644 -index 0000000..7d4e36f +index 0000000..5d25ccc --- /dev/null +++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/debug/packageDebugResources/merger.xml @@ -0,0 +1,5 @@ + -+#FFBEBEBE#00000000#FFFFFF#FF00004dp4dp12dp4dp4dp50dp26dp30dp14spThis device does not provide a decoder for %1$sThis device does not provide a secure decoder for %1$sUnable to query device decodersUnable to instantiate decoder %1$sProtected content not supported on API levels below 18Unrecognized media formatThis device does not support the required DRM schemeAn unknown DRM error occurredSettingsPlayback SpeedSelect Playback SpeedMedia playbackPreparing playback ++ This device does not provide a decoder for %1$sThis device does not provide a secure decoder for %1$sUnable to query device decodersUnable to instantiate decoder %1$sProtected content not supported on API levels below 18Unrecognized media formatThis device does not support the required DRM schemeAn unknown DRM error occurredSettingsPlayback SpeedSelect Playback SpeedMedia playbackPreparing playback \ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/module.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/module.xml +new file mode 100644 +index 0000000..093c787 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml +new file mode 100644 +index 0000000..3fe032e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-dependencies.xml +@@ -0,0 +1,557 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml +new file mode 100644 +index 0000000..c767554 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release-artifact-libraries.xml +@@ -0,0 +1,1055 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release.xml +new file mode 100644 +index 0000000..14ac40e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/lintVitalAnalyzeRelease/release.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..8769311 @@ -326,10 +3017,24733 @@ index 0000000..65138a3 + + \ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseAssets/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseAssets/merger.xml +new file mode 100644 +index 0000000..f12d6e5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +new file mode 100644 +index 0000000..613962a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseShaders/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseShaders/merger.xml +new file mode 100644 +index 0000000..a4c2cfe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/mergeReleaseShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release-mergeJavaRes/merge-state b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..85e4ab2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties +new file mode 100644 +index 0000000..890bb99 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties +@@ -0,0 +1,729 @@ ++#Fri Mar 13 18:43:24 IST 2026 ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable/paused_in_debugger_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_background.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_focused_holo.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_slide_out_bottom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_bottom.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_subtitle_on.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_on.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_popup_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_exit.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_answer_video_low.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video_low.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_repeat_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_off.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_tooltip_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_exit.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_hint_foreground_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_light.xml ++com.brentvatne.react.react-native-video-main-38\:/layout/exo_legacy_player_control_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_legacy_player_control_view.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_rewind.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_fullscreen_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_enter.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_media_cancel_action.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_media_cancel_action.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_repeat_one.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_one.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_previous.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_previous.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable/media3_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media3_icon_circular_play.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_stop.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_stop.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_enter.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_sync.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_sync.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_thumb_up_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_filled.xml ++com.brentvatne.react.react-native-video-appcompat-resources-1.7.0-27\:/drawable/abc_vector_test.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_vector_test.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_repeat_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_off.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_shuffle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_activity_chooser_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_activity_chooser_view.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_fast_forward.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_fast_forward.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_fade_out.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_out.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_play_circle_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_play_circle_filled.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_on_mtrl_dot_group_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_dot_group_animation.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_tooltip_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_enter.xml ++com.brentvatne.react.react-native-video-main-38\:/drawable/circle.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/circle.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_volume_down.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_down.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_block.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_block.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_fade_in.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_in.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_check.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_check.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/redbox_item_frame.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/redbox_item_frame.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/notification_bg_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_select_dialog_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_select_dialog_material.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_pause.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_pause.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_closed_captions_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions_off.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_close_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_enter.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_repeat_all.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_all.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_mode_bar.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_mode_bar.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_stop.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_stop.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/xml/rn_dev_preferences.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/xml/rn_dev_preferences.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_media_action.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_media_action.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout/notification_template_part_time.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_part_time.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_shuffle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_repeat_one.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_one.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable/notification_bg_low.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg_low.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v21/abc_action_bar_item_background_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_action_bar_item_background_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_next.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_play.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_play.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_1_5.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_5.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_enter.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_rewind.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable/paused_in_debugger_dialog_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_dialog_background.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_rewind.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_focused_holo.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_list_selector_holo_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_skip_previous.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_previous.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_pressed.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_flag_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_unfilled.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_next.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_next.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_textfield_search_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_textfield_search_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout-watch-v20/abc_alert_dialog_title_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-watch-v20/abc_alert_dialog_title_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_subtitles.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_cascading_menu_item_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_cascading_menu_item_layout.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_plus_circle_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_filled.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_normal.9.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable-hdpi-v4/ic_resume.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_resume.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_big_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_big_media.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_repeat_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_off.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_star_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_filled.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_default_album_image.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_default_album_image.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_pressed.9.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_push_up_in.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_in.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_thumb_up_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_unfilled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_shuffle_star.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_star.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_shuffle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_skip_next.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_next.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_decline_low.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline_low.xml ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_open_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_enter.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_enter.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_slide_in_top.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_top.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable-xxhdpi-v4/ic_resume.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_resume.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_back_10.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_10.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_chevron_right.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_right.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_repeat_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_checkbox_unchecked_mtrl.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_mtrl.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_media_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_media_custom.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_stop.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_stop.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_forward.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_forward.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_repeat_one.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_one.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/test_level_drawable.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/test_level_drawable.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_back.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_color_highlight_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_color_highlight_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_fastforward.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fastforward.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_focused_holo.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_shuffle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_big_media_narrow_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_big_media_narrow_custom.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_radio_material_anim.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material_anim.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ratingbar_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_material.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_volume_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_off.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notification_oversize_large_icon_bg.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_oversize_large_icon_bg.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_text_cursor_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_text_cursor_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout-v21/notification_action_tombstone.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action_tombstone.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_closed_captions.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_track_selection_dialog.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_track_selection_dialog.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_subtitle_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_off.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_repeat_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout-v21/notification_template_custom_big.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_custom_big.xml ++com.brentvatne.react.react-native-video-autofill-1.1.0-7\:/layout/autofill_inline_suggestion.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/autofill_inline_suggestion.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/fast_out_slow_in.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/fast_out_slow_in.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_list_divider.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_list_divider.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_bar_title_item.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_bar_title_item.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_alert_dialog_title_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_alert_dialog_title_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_spinner_textfield_background_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_spinner_textfield_background_material.xml ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_lines_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_lines_media.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notify_panel_notification_icon_bg.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playlist_remove.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_remove.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_styled_settings_list_item.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_styled_settings_list_item.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_vr.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_vr.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_btn_colored_text_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_text_material.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_unchecked_icon_null_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_icon_null_animation.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_thumb_down_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_unfilled.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_repeat_all.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_all.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_slide_down.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_down.xml ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_big_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_big_media.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_screen_simple.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_screen_simple.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_fullscreen_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_exit.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_queue_remove.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_remove.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_previous.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_next.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal_pressed.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_forward_30.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_30.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_pause.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_pause.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_fastforward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fastforward.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_radio_on_mtrl.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_mtrl.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_repeat_all.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_all.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/dev_loading_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/dev_loading_view.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_search_api_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_search_api_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_rewind.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_rewind.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable/redbox_top_border_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/redbox_top_border_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_search_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_search_view.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_fastforward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fastforward.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_checked_icon_null_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_icon_null_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_forward_15.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_15.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout-v21/notification_action.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_radio_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/switch_thumb_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_light.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_signal.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_signal.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_borderless_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_borderless_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_repeat_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_off.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_radio.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_radio.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/select_dialog_multichoice_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/select_dialog_multichoice_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_back_30.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_30.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_alert_dialog_button_bar_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_alert_dialog_button_bar_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_activity_chooser_view_list_item.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_activity_chooser_view_list_item.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_list_menu_item_checkbox.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_list_menu_item_checkbox.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_big_media_narrow_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_big_media_narrow_custom.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_repeat_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_cab_background_internal_bg.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_internal_bg.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_hint_foreground_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_stop.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_stop.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_btn_colored_borderless_text_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_borderless_text_material.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_decline.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout/ime_secondary_split_test_activity.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/ime_secondary_split_test_activity.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_fade_in.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_in.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_popup_menu_item_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_popup_menu_item_layout.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_next.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-v21/notification_action_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/notification_action_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_fade_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_enter.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/alert_title_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/alert_title_layout.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_lines_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_lines_media.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_queue_next.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_next.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_pause_circle_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_pause_circle_filled.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_volume_up.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_up.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_stop.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_stop.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_shuffle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_seek_thumb.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_seek_thumb.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_forward.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward.xml ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_media.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_star_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_unfilled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_list_menu_item_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_list_menu_item_layout.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_minus_circle_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_filled.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_item_background_holo_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_light.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_arrow_drop_right_black_24dp.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_longpressed_holo.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ratingbar_indicator_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_indicator_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_play.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_repeat_one.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_one.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_cut_mtrl_alpha.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_cut_mtrl_alpha.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v23/abc_control_background_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v23/abc_control_background_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_repeat_all.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_all.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_pressed.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_fullscreen_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_exit.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_overflow_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_overflow_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_list_menu_item_radio.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_list_menu_item_radio.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_menu_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_menu_layout.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout/custom_dialog.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/custom_dialog.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_shuffle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_on.png ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_big_media_narrow.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_big_media_narrow.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.brentvatne.react.react-native-video-main-38\:/layout/exo_player_view_surface.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_player_view_surface.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_shuffle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_default_mtrl_shape.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_default_mtrl_shape.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_search_dropdown_item_icons_2line.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_search_dropdown_item_icons_2line.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_list_selector_holo_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_settings.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_settings.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_subtitles_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles_off.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_heart_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_unfilled.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_back_15.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_15.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable/ripple_effect.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/ripple_effect.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_shuffle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_on.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_exit.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/tooltip_frame_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_media_action.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_media_action.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_stop.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_stop.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v21/abc_btn_colored_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_btn_colored_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_item_background_holo_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_dark.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_ab_back_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_ab_back_material.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/notification_bg_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_plus.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_0_5.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_5.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_expanded_menu_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_expanded_menu_layout.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_slide_up.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_up.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_play.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_1_2.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_2.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_share_mtrl_alpha.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_share_mtrl_alpha.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_next.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_minus_circle_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_unfilled.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_styled_sub_settings_list_item.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_styled_sub_settings_list_item.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_popup_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_enter.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_play.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable/notification_icon_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_icon_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_background_cache_hint_selector_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_next.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_next.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_radio_on_to_off_mtrl_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_to_off_mtrl_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_seekbar_track_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_track_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_off_mtrl_dot_group_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_dot_group_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_star_half_black_48dp.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_half_black_48dp.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_normal.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/support_simple_spinner_dropdown_item.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/support_simple_spinner_dropdown_item.xml ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_media_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_media_custom.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_rewind.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_rewind.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_seekbar_tick_mark_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_tick_mark_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-media-1.7.0-32\:/layout/notification_template_big_media_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_big_media_custom.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_heart_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_filled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout-v26/abc_screen_toolbar.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v26/abc_screen_toolbar.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/font/roboto_medium_numbers.ttf=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/font/roboto_medium_numbers.ttf ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_slide_out_top.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_top.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_check_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_star_black_48dp.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_black_48dp.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_exit.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_vr.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_vr.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_switch_thumb_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_switch_thumb_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_speed.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_speed.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_previous.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_secondary_text_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_primary_text_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_pause.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_pause.xml ++com.brentvatne.react.react-native-video-autofill-1.1.0-7\:/drawable-v29/autofill_inline_suggestion_chip_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v29/autofill_inline_suggestion_chip_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_fastforward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fastforward.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_plus_circle_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_unfilled.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_artist.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_artist.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout/ime_base_split_test_activity.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/ime_base_split_test_activity.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_shuffle_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_off.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_previous.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_repeat_one.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_one.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout-v21/notification_template_icon_group.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_icon_group.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_queue_add.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_add.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_answer_low.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_low.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_vr.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_vr.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_play.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_play.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable/exo_rounded_rectangle.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/exo_rounded_rectangle.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_shuffle_on.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_on.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_next.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable/media_session_service_notification_ic_music_note.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media_session_service_notification_ic_music_note.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_big_media_narrow.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_big_media_narrow.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_repeat_one.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_one.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_shuffle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_previous.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/select_dialog_item_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/select_dialog_item_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_vr.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_vr.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_forward_10.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_10.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_exit.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_radio_off_mtrl.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_mtrl.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_fastforward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fastforward.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/tooltip_frame_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v21/abc_list_divider_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_list_divider_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_rewind.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable-xhdpi-v4/ic_resume.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_resume.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_album.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_album.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/fps_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/fps_view.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_shuffle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-main-38\:/layout/exo_player_view_texture.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_player_view_texture.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_default.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_default.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_repeat_all.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_all.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_repeat_all.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_all.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_menu_item_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_menu_item_layout.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-watch-v20/abc_dialog_material_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-watch-v20/abc_dialog_material_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_radio_off_to_on_mtrl_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_to_on_mtrl_animation.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_chevron_right.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_right.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_alert_dialog_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_alert_dialog_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_open_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_exit.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_check_circle_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_unfilled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_previous.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_close_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_exit.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_edittext.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_edittext.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_player_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_player_view.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_pause.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_pause.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_dialog_title_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_dialog_title_material.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_decline.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_fade_out.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_out.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_vr.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_vr.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_play.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_chevron_left.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_left.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_slide_in_bottom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_bottom.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_settings.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_settings.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_shrink_fade_out_from_bottom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_shrink_fade_out_from_bottom.xml ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/paused_in_debugger_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/paused_in_debugger_view.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_audiotrack.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_audiotrack.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_clear_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_clear_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_player_control_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_player_control_view.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_tab_indicator_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_tab_indicator_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_forward_5.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_5.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_longpressed_holo.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_btn_checkable.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_btn_checkable.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_1_8.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_8.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v21/abc_edit_text_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_edit_text_material.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_minus.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_btn_check_material_anim.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material_anim.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_answer_video_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_pause.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_pause.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_primary_text_disable_only_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_dark.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable-xxxhdpi-v4/ic_resume.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_resume.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/drawable-mdpi-v4/ic_resume.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_resume.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playlist_add.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_add.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_1_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_0.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/switch_thumb_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_exit.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_answer.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer.xml ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/animator/fragment_fade_exit.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_exit.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_fullscreen_exit.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_exit.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_menu_selectall_mtrl_alpha.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_selectall_mtrl_alpha.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_answer.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_pause.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_pause.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_focused_holo.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_share.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_share.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_media.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_media.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_feed.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_feed.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_forward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_forward.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/anim/catalyst_push_up_out.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_out.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/layout/media3_notification_template_big_media_custom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/media3_notification_template_big_media_custom.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_go_search_api_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_go_search_api_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_fastforward.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fastforward.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_enter.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_mode_close_item_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_mode_close_item_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_tooltip.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_tooltip.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notify_panel_notification_icon_bg.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ic_voice_search_api_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_voice_search_api_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/anim/abc_grow_fade_in_from_bottom.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_grow_fade_in_from_bottom.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_ratingbar_small_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_small_material.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_shuffle_off.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_off.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_normal.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxhdpi-v4/ic_call_decline_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline_low.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_seekbar_thumb_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_thumb_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_ic_audiotrack.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_audiotrack.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_screen_simple_overlay_action_mode.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_screen_simple_overlay_action_mode.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/layout/notification_template_part_chronometer.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/notification_template_part_chronometer.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_repeat_one.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_one.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal_pressed.9.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable/notification_bg.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-anydpi-v21/ic_call_answer_video.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xxxhdpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_settings.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_settings.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/redbox_item_title.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/redbox_item_title.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_dark.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_2_0.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_2_0.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/notification_bg_normal.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_play.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-v21/abc_dialog_material_background.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_dialog_material_background.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_checkbox_checked_mtrl.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_mtrl.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_secondary_text_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_dark.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_icon_repeat_all.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_all.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_spinner.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_spinner.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout-v23/exo_player_control_rewind_button.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v23/exo_player_control_rewind_button.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_screen_content_include.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_screen_content_include.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_shuffle_on.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_on.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_list_menu_item_icon.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_list_menu_item_icon.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_background_cache_hint_selector_material_dark.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_dark.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/abc_cab_background_top_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_top_material.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_primary_text_disable_only_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_light.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_play_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_play_circle_filled.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-ldpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_skip_back_5.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_5.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_popup_menu_header_item_layout.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_popup_menu_header_item_layout.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_icon_stop.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_stop.png ++com.brentvatne.react.react-native-video-react-android-0.81.4-release-18\:/layout/redbox_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/redbox_view.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_rewind.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_rewind.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_rewind.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_subtitle_on.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_on.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-watch-v20/abc_alert_dialog_button_bar_material.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_previous.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_previous.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-xhdpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color-v23/abc_tint_switch_track.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_switch_track.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_search_url_text.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_search_url_text.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable/notification_tile_bg.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_tile_bg.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_skip_previous.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_previous.png ++com.brentvatne.react.react-native-video-fragment-1.5.4-20\:/anim-v21/fragment_fast_out_extra_slow_in.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim-v21/fragment_fast_out_extra_slow_in.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_icon_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_enter.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_fullscreen_enter.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_enter.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_edit_mode_logo.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_edit_mode_logo.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/color/abc_primary_text_material_light.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_light.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout-v23/exo_player_control_ffwd_button.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v23/exo_player_control_ffwd_button.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_edit_mode_logo.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_edit_mode_logo.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_thumb_down_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_filled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_check_circle_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_filled.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-anydpi-v21/exo_icon_fullscreen_enter.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_enter.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_chevron_left.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_left.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-mdpi-v4/exo_ic_skip_next.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_next.png ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-mdpi-v4/ic_call_answer_low.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_low.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_icon_pause.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_pause.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_flag_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_filled.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/select_dialog_singlechoice_material.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/select_dialog_singlechoice_material.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_ic_check.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_check.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_bookmark_filled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_filled.xml ++com.brentvatne.react.react-native-video-core-1.13.1-12\:/drawable-hdpi-v4/ic_call_answer_video.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_rewind.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_rewind.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/layout/exo_styled_settings_list.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/exo_styled_settings_list.xml ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xhdpi-v4/exo_icon_circular_play.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_circular_play.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxxhdpi-v4/exo_ic_pause_circle_filled.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_pause_circle_filled.png ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-ldpi-v4/exo_ic_subtitle_off.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_off.png ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_bookmark_unfilled.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_unfilled.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-hdpi-v4/exo_ic_default_album_image.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_default_album_image.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_action_bar_up_container.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_action_bar_up_container.xml ++com.brentvatne.react.react-native-video-media3-ui-1.8.0-29\:/drawable-xxhdpi-v4/exo_ic_speed.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_speed.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.brentvatne.react.react-native-video-appcompat-1.7.0-1\:/layout/abc_screen_toolbar.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout/abc_screen_toolbar.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_playback_speed_0_8.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_8.xml ++com.brentvatne.react.react-native-video-media3-session-1.8.0-23\:/drawable-anydpi-v21/media3_icon_quality.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_quality.xml +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..d1cad49 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normaal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Spoel %d sekonde vinnig vorentoe ++ Spoel %d sekondes vinnig vorentoe ++ ++ ++ Spoel %d sekonde terug ++ Spoel %d sekondes terug ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek â€Ļ" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ Opletnota ++ "Antwoord" ++ "Video" ++ "Wys af" ++ "Lui af" ++ "Inkomende oproep" ++ "Oproep aan die gang" ++ "Keur tans \'n inkomende oproep" ++ Kombinasiekassie ++ Speel tans ++ Meld aan om hierdie app te gebruik ++ Verkeerde invoerdata ++ Luister tans op te veel toestelle ++ Speel reeds daardie inhoud ++ Ontkoppel van media-app ++ Daar is niks anders op die waglys nie ++ Iets is fout. Probeer later. ++ Kon nie voltooi word nie. Probeer weer. ++ Kan dit nie op die oomblik doen nie ++ Invoer-/uitvoerfout ++ Kan nie daardie inhoud hier kry nie ++ Hierdie app kan dit nie doen nie ++ Daardie inhoud word geblokkeer ++ Toegang geweier ++ Premiumtoegang word vereis ++ Opstelling word vereis ++ Kan nie meer snitte oorslaan nie ++ Aktiveer onderskrifte ++ Deaktiveer onderskrifte ++ Spoel vorentoe ++ Gaan na volskerm ++ Verlaat volskerm ++ Versteek spelerkontroles ++ Volgende ++ Versteek bykomende instellings ++ Wys bykomende instellings ++ Onderbreek ++ Speel ++ Spoed ++ Vorige ++ Huidige modus: herhaal alles. Wissel herhaalmodus. ++ Huidige modus: herhaal niks. Wissel herhaalmodus. ++ Huidige modus: herhaal een. Wissel herhaalmodus. ++ Spoel terug ++ Terugspeelvordering ++ Instellings ++ Wys spelerkontroles ++ Aktiveer skommelmodus ++ Deaktiveer skommelmodus ++ Stop ++ VR-modus ++ Aflaai is voltooi ++ Aflaai ++ Laai tans af ++ Kon nie aflaai nie ++ Aflaaie ++ Aflaaie is onderbreek ++ Aflaaie wag tans vir netwerk ++ Aflaaie wag tans vir wi-fi ++ Verwyder tans aflaaie ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Afwisselend ++ Onderskrifte ++ Kommentaar ++ Aanvullend ++ Outo ++ Geen ++ Oudio ++ Stereo ++ Omringklank ++ 5.1-omringklank ++ 7.1-omringklank ++ Onbekend ++ Onbekend (%1$s) ++ Opskrif ++ Prent ++ Knoppie, prent ++ Skakel ++ Onderbreek ++ Speel ++ Soek agtertoe ++ Soek vorentoe ++ Soek tot by volgende item ++ Soek tot by vorige item ++ Kieslys ++ Kieslysbalk ++ Kieslysitem ++ Vorderingbalk ++ Radiogroep ++ Oortjie ++ Rolleesbalk ++ "Soek" ++ Tolknoppie ++ besig ++ is ingevou ++ is uitgevou ++ is gemeng ++ af ++ aan ++ ontkies ++ "999+" ++ Opsomming ++ Oortjielys ++ Afteller ++ Nutsbalk ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..0979552 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ መደበኛ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ በ%d ሰከንá‹ļá‰Ŋ በፍáŒĨነá‰ĩ ወደፊá‰ĩ á‹Ģáˆŗáˆá‰ ++ በ%d ሰከንá‹ļá‰Ŋ በፍáŒĨነá‰ĩ ወደፊá‰ĩ á‹Ģáˆŗáˆá‰ ++ ++ ++ በ%d ሰከንá‹ļá‰Ŋ ወደኋላ ይመልሱ ++ በ%d ሰከንá‹ļá‰Ŋ ወደኋላ ይመልሱ ++ ++ "መነáˆģ á‹ŗáˆĩáˆĩ" ++ "ወደ ላይ á‹Ģáˆĩሹ" ++ "ተጨማáˆĒ አማáˆĢጮá‰Ŋ" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንá‹ĩ መተግበáˆĒá‹Ģ ይምረጡ" ++ "አáŒĨፋ" ++ "አá‰ĨáˆĢ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተá‰ĩ" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉâ€Ļ" ++ "መጠይቅ አáŒŊá‹ŗ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አáˆĩáŒˆá‰Ŗ" ++ "የá‹ĩምáŒŊ ፍለጋ" ++ "አጋáˆĢ በ" ++ "ለ%s አጋáˆĢ" ++ "ሰá‰Ĩáˆĩá‰Ĩ" ++ "መልáˆĩ" ++ "á‰Ēዲዮ" ++ "አá‰ĩቀበል" ++ "áˆĩልኩን ዝጋ" ++ "ገá‰ĸ áŒĨáˆĒ" ++ "áŠĨየተáŠĢሄደ á‹Ģለ áŒĨáˆĒ" ++ "ገá‰ĸ áŒĨáˆĒ áˆ›áŒŖáˆĢá‰ĩ" ++ አሁን áŠĨየተáŒĢወተ á‹Ģለ ++ ይህን መተግበáˆĒá‹Ģ ለመጠቀም በመለá‹Ģ ይግቡ ++ á‰ĩክክል á‹Ģልሆነ ውሂá‰Ĩ ++ ከልክ በላይ á‰Ĩዙ በሆኑ áˆ˜áˆŖáˆĒá‹Ģዎá‰Ŋ ላይ á‰ áˆ›á‹ŗáˆ˜áŒĨ ላይ ++ á‹Ģን ይዘá‰ĩ አáˆĩቀá‹ĩሞ በማáŒĢወá‰ĩ ላይ ++ ከሚዲá‹Ģ መተግበáˆĒá‹Ģ ግንኙነá‰ĩ ተቋርጧል ++ ሌላ ምንም ነገር ሰልፍ አልá‹Ģዘም ++ የሆነ áˆĩህተá‰ĩ ተከáˆĩቷልáĸ በኋላ ይሞክሩáĸ ++ መጨረáˆĩ አልተá‰ģለምáĸ áŠĨንደገና ይሞክሩáĸ ++ አሁን á‹Ģን ማá‹ĩረግ አይá‰ģልም ++ ግá‰Ĩዓá‰ĩ/ውጤá‰ĩ áˆĩህተá‰ĩ ++ ይዘቱን áŠĨዚህ ማግኘá‰ĩ አልተá‰ģለም ++ ይህ መተግበáˆĒá‹Ģ á‹Ģንን ማá‹ĩረግ አይá‰Ŋልም ++ ይዘቱ á‰ŗáŒá‹ˇáˆ ++ áˆ˜á‹ŗáˆ¨áˆģ ተክልክሏል ++ የPremium áˆ˜á‹ŗáˆ¨áˆģ á‹Ģáˆĩፈልጋል ++ ማዋቀር á‹Ģáˆĩፈልጋል ++ ተጨማáˆĒ á‰ĩáˆĢኮá‰Ŋን መዝለል አይá‰ģልም ++ የግርጌ áŒŊሑፎá‰Ŋን አንቃ ++ የግርጌ áŒŊሑፎá‰Ŋን አሰናክል ++ በፍáŒĨነá‰ĩ áŠ áˆŗáˆá ++ ወደ ሙሉ ማá‹Ģ ገፅ áŒá‰Ŗ ++ ከሙሉ ማá‹ĢገáŒŊ á‹áŒŖ ++ የተáŒĢዋá‰Ŋ áˆ˜á‰†áŒŖáŒ áˆĒá‹Ģዎá‰Ŋን ደá‰Ĩቅ ++ á‰€áŒŖá‹­ ++ ተጨማáˆĒ ቅንá‰Ĩሎá‰Ŋን ይደá‰Ĩቁ ++ ተጨማáˆĒ ቅንá‰Ĩሎá‰Ŋን á‹Ģáˆŗá‹Š ++ áˆ‹áá‰ŗ አቁም ++ አáŒĢውá‰ĩ ++ ፍáŒĨነá‰ĩ ++ á‰€á‹ŗáˆš ++ የአሁን áˆáŠá‰ŗáĻ ሁሉም á‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸ ++ የአሁኑ áˆáŠá‰ŗáĻ ምንም አá‰ĩá‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸ ++ የአሁን áˆáŠá‰ŗáĻ አንዱን á‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸ ++ ወደኋላ መልáˆĩ ++ የመልáˆļ ማáŒĢወá‰ĩ ሂደá‰ĩ ++ ቅንá‰Ĩሎá‰Ŋ ++ የተáŒĢዋá‰Ŋ áˆ˜á‰†áŒŖáŒ áˆĒá‹Ģዎá‰Ŋን áŠ áˆŗá‹­ ++ የበውዝ áˆáŠá‰ŗáŠ• አንቃ ++ የበውዝ áˆáŠá‰ŗáŠ• አሰናክል ++ አቁም ++ የá‰Ēአር áˆáŠá‰ŗ ++ ማውረá‹ĩ ተጠናቋል ++ አውርá‹ĩ ++ በማውረá‹ĩ ላይ ++ ማውረá‹ĩ áŠ áˆá‰°áˆŗáŠĢም ++ የወረዱ ++ ውርá‹ļá‰Ŋ á‰Ŗáˆ‰á‰ á‰ĩ ቆመዋል ++ áŠ á‹á‰ŗáˆ¨ መረá‰Ļá‰Ŋን á‰ áˆ˜áŒ á‰Ŗá‰ á‰… ላይ á‹Ģሉ ውርá‹ļá‰Ŋ ++ WiFiን á‰ áˆ˜áŒ á‰Ŗá‰ á‰… ላይ á‹Ģሉ ውርá‹ļá‰Ŋ ++ ውርá‹ļá‰Ŋን በማáˆĩወገá‹ĩ ላይ ++ %1$sáŖ %2$s ++ %1$.2f ሜá‰Ĩáˆĩ ++ ሞኖ ++ %1$d × %2$d ++ ተለዋጭ ++ የተዘጉ የመግለáŒĢ áŒŊሑፎá‰Ŋ ++ áŒĨáŠ“á‰ŗá‹Š ++ ተጨማáˆĒ ++ áˆĢáˆĩ-ሰር ++ ምንም ++ áŠĻዲዮ ++ áˆĩቲáˆĒዮ ++ የዙáˆĒá‹Ģ á‹ĩምፅ ++ 5.1 የዙáˆĒá‹Ģ á‹ĩምፅ ++ 7.1 የዙáˆĒá‹Ģ á‹ĩምፅ ++ á‹Ģáˆá‰ŗá‹ˆá‰€ ++ á‹Ģáˆá‰ŗá‹ˆá‰ (%1$s) ++ á‰Ŗáˆˆá‰ á‰ĩ አቁም ++ አáŒĢውá‰ĩ ++ ወደኋላ ፈልግ ++ ወደፊá‰ĩ ፈልግ ++ ወደ á‰€áŒŖá‹Š ንáŒĨል ፈልግ ++ ወደ á‰€á‹ŗáˆšá‹ ንáŒĨል ፈልግ ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..8368999 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,163 @@ ++ ++ ++ ++ ØŖØŗØąØš Ø¨Ų€ 0.25 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų€ 0.5 Ų…ØąØ§ØĒ ++ ØŖØŗØąØš Ø¨Ų€ 0.75 Ų…ØąØŠ ++ ØšØ§Ø¯ŲŠØŠ ++ ØŖØŗØąØš Ø¨Ų€ 1.25 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų€ 1.5 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų…ØąØĒŲŠŲ† ++ ++ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØŠ ŲˆØ§Ø­Ø¯ØŠ (%d) ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØĒŲŽŲŠŲ† (%d) ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢŲˆØ§Ų†Ų ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ++ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØŠ ŲˆØ§Ø­Ø¯ØŠ (%d) ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØĒŲŽŲŠŲ† (%d) ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢŲˆØ§Ų†Ų ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ++ "Ø§Ų„ØĒ؈ØŦŲ‡ ØĨŲ„Ų‰ Ø§Ų„Ų…Ų†Ø˛Ų„" ++ "Ø§Ų„ØĒŲ†Ų‚Ų„ ØĨŲ„Ų‰ ØŖØšŲ„Ų‰" ++ "ØŽŲŠØ§ØąØ§ØĒ ØŖŲƒØĢØą" ++ "ØĒŲ…" ++ "ØšØąØļ Ø§Ų„ŲƒŲ„" ++ "ا؎ØĒŲŠØ§Øą ØĒØˇØ¨ŲŠŲ‚" ++ "ØĨŲŠŲ‚Ø§Ų" ++ "Ų…ŲØšŲ‘Ų„ØŠ" ++ "Alt+" ++ "Ctrl+" ++ "Ø­Ø°Ų" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "؁ØļØ§ØĄ" ++ "Sym+" ++ "Ø§Ų„Ų‚Ø§ØĻŲ…ØŠ+" ++ "بحØĢâ€Ļ" ++ "Ų…Ø­Ųˆ ØˇŲ„Ø¨ Ø§Ų„Ø¨Ø­ØĢ" ++ "ØˇŲ„Ø¨ بحØĢ" ++ "Ø§Ų„Ø¨Ø­ØĢ" ++ "ØĨØąØŗØ§Ų„ ØˇŲ„Ø¨ Ø§Ų„Ø¨Ø­ØĢ" ++ "بحØĢ Øĩ؈ØĒ؊" ++ "Ų…Ø´Ø§ØąŲƒØŠ Ų…Øš" ++ "Ų…Ø´Ø§ØąŲƒØŠ Ų…Øš %s" ++ "ØĒØĩØēŲŠØą" ++ ØĒŲ†Ø¨ŲŠŲ‡ ++ "ØąØ¯Ų‘" ++ "ŲŲŠØ¯ŲŠŲˆ" ++ "ØąŲØļ" ++ "Ų‚ØˇØš Ø§Ų„Ø§ØĒØĩØ§Ų„" ++ "Ų…ŲƒØ§Ų„Ų…ØŠ ŲˆØ§ØąØ¯ØŠ" ++ "Ų…ŲƒØ§Ų„Ų…ØŠ ØŦØ§ØąŲŠØŠ" ++ "؊ØĒŲ… ŲØ­Øĩ Ø§Ų„Ų…ŲƒØ§Ų„Ų…ØŠ Ø§Ų„ŲˆØ§ØąØ¯ØŠ" ++ Ų…ØąØ¨Øš ØĒØ­ØąŲŠØą ŲˆØŗØąØ¯ ++ Ų‚ŲŠØ¯ Ø§Ų„ØĒØ´ØēŲŠŲ„ Ø§Ų„ØĸŲ† ++ ØŗØŦؑؐ؄ Ø§Ų„Ø¯ØŽŲˆŲ„ Ų„Ø§ØŗØĒØŽØ¯Ø§Ų… Ų‡Ø°Ø§ Ø§Ų„ØĒØˇØ¨ŲŠŲ‚ ++ Ø§Ų„Ø¨ŲŠØ§Ų†Ø§ØĒ Ø§Ų„Ų…Ų‚Ø¯Ų‘ŲŽŲ…ØŠ ØēŲŠØą ØĩØ­ŲŠØ­ØŠ ++ ؊ØĒŲ… Ø§Ų„ØĸŲ† Ø§Ų„Ø§ØŗØĒŲ…Ø§Øš ØšŲ„Ų‰ ØŖØŦŲ‡Ø˛ØŠ ØŖŲƒØĢØą Ų…Ų† Ø§Ų„Ø­Ø¯ Ø§Ų„Ų…ØŗŲ…ŲˆØ­ Ø¨Ų‡ ++ Ų‡Ø°Ø§ Ø§Ų„Ų…Ø­ØĒŲˆŲ‰ Ų‚ŲŠØ¯ Ø§Ų„ØĒØ´ØēŲŠŲ„ Ø§Ų„ØĸŲ† ++ ØĒŲ… ØĨŲ„ØēØ§ØĄ Ø§Ų„ØąØ¨Øˇ بØĒØˇØ¨ŲŠŲ‚ Ø§Ų„ŲˆØŗØ§ØĻØˇ ++ Ų„Ų… ؊ØĒŲ… ؈ØļØš ØŖŲŠ Ų…Ų‚ØˇØš Øĩ؈ØĒ؊ ØĸØŽØą ؁؊ Ų‚Ø§ØĻŲ…ØŠ Ø§Ų„ØĒØ´ØēŲŠŲ„ ++ حدØĢ ØŽØˇØŖ. ŲŠŲØąØŦŲ‰ Ø§Ų„Ų…Ø­Ø§ŲˆŲ„ØŠ Ų„Ø§Ø­Ų‚Ų‹Ø§. ++ ØĒØšØ°Ų‘Øą ØĒŲ†ŲŲŠØ° Ø§Ų„ØĨØŦØąØ§ØĄ Ø§Ų„Ų…ØˇŲ„ŲˆØ¨. ŲŠŲØąØŦŲ‰ ØĨؚاد؊ Ø§Ų„Ų…Ø­Ø§ŲˆŲ„ØŠ. ++ ؊ØĒØšØ°Ų‘Øą ØĒŲ†ŲŲŠØ° Ų‡Ø°Ø§ Ø§Ų„ØĨØŦØąØ§ØĄ ؁؊ Ø§Ų„ŲˆŲ‚ØĒ Ø§Ų„Ø­Ø§Ų„ŲŠ ++ ØŽØˇØŖ ؁؊ Ø§Ų„ØĨØ¯ØŽØ§Ų„/Ø§Ų„ØĨØŽØąØ§ØŦ ++ ØēŲŠØą Ų…ØŗŲ…ŲˆØ­ Ø¨Ø§Ų„Ø­ØĩŲˆŲ„ ØšŲ„Ų‰ Ų‡Ø°Ø§ Ø§Ų„Ų…Ø­ØĒŲˆŲ‰ ؁؊ Ų…Ų†ØˇŲ‚ØĒ؃ ++ ؊ØĒØšØ°Ų‘Øą ØšŲ„Ų‰ Ø§Ų„ØĒØˇØ¨ŲŠŲ‚ ØĒŲ†ŲŲŠØ° Ų‡Ø°Ø§ Ø§Ų„ØĨØŦØąØ§ØĄ ++ Ų‡Ø°Ø§ Ø§Ų„Ų…Ø­ØĒŲˆŲ‰ Ų…Ø­Ø¸ŲˆØą ++ ØĒŲ… ØąŲØļ ØˇŲ„Ø¨ Ø§Ų„ŲˆØĩŲˆŲ„ ++ Ų…ØˇŲ„ŲˆØ¨ ØĒØŗØŦŲŠŲ„ Ø§Ų„Ø¯ØŽŲˆŲ„ ØĨŲ„Ų‰ Ø­ØŗØ§Ø¨ Ų…Ø¯ŲŲˆØš ++ ؊ØŦب ØļØ¨Øˇ Ø§Ų„ØĨؚداداØĒ ++ Ų„Ø§ ŲŠŲ…ŲƒŲ† ØĒØŽØˇŲ‘ŲŠ Ø§Ų„Ų…Ø˛ŲŠØ¯ Ų…Ų† Ø§Ų„Ų…Ų‚Ø§ØˇØš Ø§Ų„Øĩ؈ØĒŲŠØŠ ++ ØĒŲØšŲŠŲ„ Ø§Ų„ØĒØąØŦŲ…ØŠ ++ ØĨŲŠŲ‚Ø§Ų Ø§Ų„ØĒØąØŦŲ…ØŠ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš ++ Ø¯ØŽŲˆŲ„ ØĨŲ„Ų‰ ؈ØļØš Ų…Ų„ØĄ Ø§Ų„Ø´Ø§Ø´ØŠ ++ ØŽØąŲˆØŦ Ų…Ų† ؈ØļØš Ų…Ų„ØĄ Ø§Ų„Ø´Ø§Ø´ØŠ ++ ØĨØŽŲØ§ØĄ ØšŲ†Ø§ØĩØą Ø§Ų„ØĒØ­ŲƒŲ… Ø¨Ø§Ų„Ų…Ø´ØēŲ‘Ų„ ++ Ø§Ų„ØĒØ§Ų„ŲŠ ++ ØĨØŽŲØ§ØĄ Ø§Ų„ØĨؚداداØĒ Ø§Ų„ØĨØļØ§ŲŲŠØŠ ++ ØšØąØļ Ø§Ų„ØĨؚداداØĒ Ø§Ų„ØĨØļØ§ŲŲŠØŠ ++ ØĨŲŠŲ‚Ø§Ų Ų…Ø¤Ų‚ØĒ ++ ØĒØ´ØēŲŠŲ„ ++ Ø§Ų„ØŗØąØšØŠ ++ Ø§Ų„ØŗØ§Ø¨Ų‚ ++ Ø§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: ØĒŲƒØąØ§Øą Ø§Ų„ŲƒŲ„. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§Øą ++ Ø§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: ØšØ¯Ų… Ø§Ų„ØĒŲƒØąØ§Øą. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§Øą ++ Ø§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: Ø§Ų„ØĒŲƒØąØ§Øą Ų…ØąØŠ ŲˆØ§Ø­Ø¯ØŠ. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§Øą ++ ØĒØąØŦŲŠØš ++ Ų…ØŗØĒŲˆŲ‰ ØĒŲ‚Ø¯Ų‘ŲŲ… Ø§Ų„ØĒØ´ØēŲŠŲ„ ++ Ø§Ų„ØĨؚداداØĒ ++ ØšØąØļ ØšŲ†Ø§ØĩØą Ø§Ų„ØĒØ­ŲƒŲ… Ø¨Ø§Ų„Ų…Ø´ØēŲ‘Ų„ ++ ØĒŲØšŲŠŲ„ ؈ØļØš Ø§Ų„ØĒØąØĒŲŠØ¨ Ø§Ų„ØšØ´ŲˆØ§ØĻ؊ ++ ØĨŲŠŲ‚Ø§Ų ؈ØļØš Ø§Ų„ØĒØąØĒŲŠØ¨ Ø§Ų„ØšØ´ŲˆØ§ØĻ؊ ++ ØĨŲŠŲ‚Ø§Ų ++ ؈ØļØš VR ++ Ø§ŲƒØĒŲ…Ų„ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ++ ØĒŲ†Ø˛ŲŠŲ„ ++ ØŦØ§ØąŲ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„. ++ ØĒØšØ°Ų‘Øą Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ++ ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ++ ØĒŲ…Ų‘ ØĨŲŠŲ‚Ø§Ų ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ Ų…Ø¤Ų‚ØĒŲ‹Ø§. ++ ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ؁؊ Ø§Ų†ØĒØ¸Ø§Øą Ø§Ų„Ø§ØĒØĩØ§Ų„ Ø¨Ø§Ų„Ø´Ø¨ŲƒØŠ ++ ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ؁؊ Ø§Ų†ØĒØ¸Ø§Øą اØĒØĩØ§Ų„ Wi-Fi. ++ ØĒØŦØąŲŠ ØĨØ˛Ø§Ų„ØŠ Ø§Ų„Ų…Ø­ØĒŲˆŲ‰ Ø§Ų„Ø°ŲŠ ØĒŲ… ØĒŲ†Ø˛ŲŠŲ„Ų‡ ++ %1$s، %2$s ++ %1$.2f Ų…ŲŠØēابØĒ ؁؊ Ø§Ų„ØĢØ§Ų†ŲŠØŠ ++ Ų‚Ų†Ø§ØŠ ØŖØ­Ø§Ø¯ŲŠØŠ ++ %1$d × %2$d ++ Ø¨Ø¯ŲŠŲ„ ++ Ø§Ų„ØĒØąØŦŲ…ØŠ ŲˆØ§Ų„Ø´ØąØ­ ++ Ø§Ų„ØĒØšŲ„ŲŠŲ‚Ø§ØĒ ++ ØĒŲƒŲ…ŲŠŲ„ŲŠ ++ ØĒŲ„Ų‚Ø§ØĻ؊ ++ Ø¨Ø¯ŲˆŲ† ا؎ØĒŲŠØ§Øą ++ Øĩ؈ØĒ ++ Ø§ØŗØĒØąŲŠŲˆ ++ Øĩ؈ØĒ Ų…ØŦØŗŲ‘Ų… ++ Øĩ؈ØĒ Ų…ØŦØŗŲ‘Ų… 5.1 ++ Øĩ؈ØĒ Ų…ØŦØŗŲ‘Ų… 7.1 ++ ØēŲŠØą Ų…ØšØąŲˆŲ ++ ØēŲŠØą Ų…ØšØąŲˆŲ (%1$s) ++ Ø§Ų„ØšŲ†ŲˆØ§Ų† ++ ØĩŲˆØąØŠ ++ Ø˛ØąØŒ ØĩŲˆØąØŠ ++ ØąØ§Ø¨Øˇ ++ ØĨŲŠŲ‚Ø§Ų Ų…Ø¤Ų‚ØĒ ++ ØĒØ´ØēŲŠŲ„ ++ ØĒØąØŦŲŠØš ++ ØĒŲ‚Ø¯ŲŠŲ… ++ ØĒŲ‚Ø¯ŲŠŲ… ØĨŲ„Ų‰ Ø§Ų„ØšŲ†ØĩØą Ø§Ų„ØĒØ§Ų„ŲŠ ++ ØĒØąØŦŲŠØš ØĨŲ„Ų‰ Ø§Ų„ØšŲ†ØĩØą Ø§Ų„ØŗØ§Ø¨Ų‚ ++ Ø§Ų„Ų‚Ø§ØĻŲ…ØŠ ++ Ø´ØąŲŠØˇ Ø§Ų„Ų‚Ø§ØĻŲ…ØŠ ++ ØšŲ†ØĩØą Ø§Ų„Ų‚Ø§ØĻŲ…ØŠ ++ Ø´ØąŲŠØˇ Ø§Ų„ØĒŲ‚Ø¯Ų… ++ Ų…ØŦŲ…ŲˆØšØŠ ØŖØ˛ØąØ§Øą ا؎ØĒŲŠØ§Øą ++ ØšŲ„Ø§Ų…ØŠ Ø§Ų„ØĒØ¨ŲˆŲŠØ¨ ++ Ø´ØąŲŠØˇ Ø§Ų„ØĒŲ…ØąŲŠØą ++ "Ø§Ų„Ø¨Ø­ØĢ" ++ Ø˛Øą Ø˛ŲŠØ§Ø¯ØŠ ŲˆŲ†Ų‚ØĩØ§Ų† ++ Ų…Ø´ØēŲˆŲ„ ++ Ų…ØˇŲˆŲŠ ++ Ų…ŲˆØŗØš ++ Ų…ØŽØĒŲ„Øˇ ++ ØĨŲŠŲ‚Ø§Ų ØĒØ´ØēŲŠŲ„ ++ ØĒØ´ØēŲŠŲ„ ++ ØēŲŠØą Ų…Ø­Ø¯ŲŽØ¯ ++ "999+" ++ Ų…Ų„ØŽØĩ ++ Ų‚Ø§ØĻŲ…ØŠ ØšŲ„Ø§Ų…Ø§ØĒ Ø§Ų„ØĒØ¨ŲˆŲŠØ¨ ++ Ų…Ø¤Ų‚ŲØĒ ++ Ø´ØąŲŠØˇ Ø§Ų„ØŖØ¯ŲˆØ§ØĒ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..ba5e31c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "āĻ—ā§ƒāĻš āĻĒ⧃āĻˇā§āĻ āĻžāϞ⧈ āϝāĻžāĻ“āĻ•" ++ "āĻ“āĻĒā§°āϞ⧈ āϝāĻžāĻ“āĻ•" ++ "āĻ…āϧāĻŋāĻ• āĻŦāĻŋāĻ•āĻ˛ā§āĻĒ" ++ "āϏāĻŽā§āĻĒāĻ¨ā§āύ āĻšâ€™āϞ" ++ "āφāϟāĻžāχāĻŦā§‹ā§° āϚāĻžāĻ“āĻ•" ++ "āϕ⧋āύ⧋ āĻāĻĒā§ āĻŦāĻžāĻ›āύāĻŋ āϕ⧰āĻ•" ++ "āĻ…āĻĢ" ++ "āĻ…āύ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "āϏāĻ¨ā§āϧāĻžāύ āϕ⧰āĻ•â€Ļ" ++ "āϏāĻ¨ā§āϧāĻžāύ āϕ⧰āĻž āĻĒā§ā§°āĻļā§āύ āĻŽāϚāĻ•" ++ "āϏāĻ¨ā§āϧāĻžāύ āϕ⧰āĻž āĻĒā§ā§°āĻļā§āύ" ++ "āϏāĻ¨ā§āϧāĻžāύ āϕ⧰āĻ•" ++ "āĻĒā§ā§°āĻļā§āύ āĻĻāĻžāĻ–āĻŋāϞ āϕ⧰āĻ•" ++ "āĻ•āĻŖā§āĻ āĻ§ā§āĻŦāύāĻŋā§° āĻĻā§āĻŦāĻžā§°āĻž āϏāĻ¨ā§āϧāĻžāύ" ++ "āχāϝāĻŧāĻžā§° āϜ⧰āĻŋāϝāĻŧāϤ⧇ āĻļā§āĻŦ⧇āϝāĻŧāĻžā§° āϕ⧰āĻ•" ++ "%sā§° āϜ⧰āĻŋāϝāĻŧāϤ⧇ āĻļā§āĻŦ⧇āϝāĻŧāĻžā§° āϕ⧰āĻ•" ++ "āϏāĻ‚āϕ⧋āϚāύ āϕ⧰āĻ•" ++ "āωāĻ¤ā§āϤ⧰ āĻĻāĻŋāϝāĻŧāĻ•" ++ "āĻ­āĻŋāĻĄāĻŋāĻ…â€™" ++ "āĻĒā§ā§°āĻ¤ā§āϝāĻžāĻ–ā§āϝāĻžāύ āϕ⧰āĻ•" ++ "āĻ•āϞ āĻ•āĻžāϟāĻŋ āĻĻāĻŋāϝāĻŧāĻ•" ++ "āĻ…āĻ¨ā§āĻ¤ā§°ā§āĻ—āĻžāĻŽā§€ āĻ•āϞ" ++ "āϚāϞāĻŋ āĻĨāĻ•āĻž āĻ•āϞ" ++ "āĻāϟāĻž āĻ…āĻ¨ā§āĻ¤ā§°ā§āĻ—āĻžāĻŽā§€ āĻ•āϞ⧰ āĻĒā§°ā§€āĻ•ā§āώāĻž āϕ⧰āĻŋ āĻĨāĻ•āĻž āĻšā§ˆāϛ⧇" ++ "āϏāĻ¨ā§āϧāĻžāύ" ++ "⧝⧝⧝+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..582e8f9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,137 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ %d saniyə irəli çəkin ++ %d saniyə irəli çəkin ++ ++ ++ %d saniyə geri çəkin ++ %d saniyə geri çəkin ++ ++ "Əsas səhifəyə keçin" ++ "YuxarÄą keçin" ++ "Digər seçimlər" ++ "HazÄąrdÄąr" ++ "HamÄąsÄąna baxÄąn" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "AxtarÄąÅŸ..." ++ "Sorğunu silin" ++ "AxtarÄąÅŸ sorğusu" ++ "AxtarÄąn" ++ "Sorğunu gÃļndərin" ++ "Səsli axtarÄąÅŸ" ++ "PaylaÅŸÄąn" ++ "%s ilə paylaÅŸÄąn" ++ "YığcamlaşdÄąrÄąn" ++ "Cavab verin" ++ "Video" ++ "İmtina edin" ++ "Dəstəyi asÄąn" ++ "Gələn zəng" ++ "Davam edən zəng" ++ "Gələn zəng gÃļstərilir" ++ Kombo siyahÄąsÄą ++ İndi oxudulur ++ Bu tətbiqi istifadə etmək ÃŧçÃŧn daxil olun ++ Səhv daxiletmə datasÄą ++ Bir çox cihazda dinlənilir ++ Həmin kontent artÄąq işə salÄąnÄąb ++ Media tətbiqindən ayrÄąldÄą ++ NÃļvbədə heç nə yoxdur ++ Xəta baş verdi. Sonra cəhd edin. ++ Bitirmək mÃŧmkÃŧn olmadÄą. Yenidən cəhd edin. ++ HazÄąrda etmək olmur ++ Daxiletmə/Ã§ÄąxÄąÅŸ xətasÄą ++ Həmin kontenti burada əldə etmək mÃŧmkÃŧn deyil ++ Bu tətbiq edə bilmir ++ Həmin kontent bloklanÄąb ++ Giriş rədd edildi ++ Premium giriş tələb olunur ++ Ayarlama tələb olunur ++ Başqa trek ÃļtÃŧrmək mÃŧmkÃŧn deyil ++ Subtitrləri aktiv edin ++ Subtitrləri deaktiv edin ++ İrəli çəkin ++ Tam ekrana daxil olun ++ Tam ekrandan Ã§ÄąxÄąn ++ Oyunçu nəzarətlərini gizlədin ++ Sonra ++ Əlavə ayarlarÄą gizlədin ++ Əlavə ayarlarÄą gÃļstərin ++ Pauza ++ Oxudun ++ SÃŧrət ++ Əvvəl ++ Cari rejim: HamÄąsÄąnÄą təkrarlayÄąn. Təkrarlanma rejimini keçirin. ++ Cari rejim: Heç birini təkrarlamayÄąn. Təkrarlanma rejimini keçirin. ++ Cari rejim: Birini təkrarlayÄąn. Təkrarlanma rejimini keçirin. ++ Geri çəkin ++ OxutmanÄąn gedişatÄą ++ Ayarlar ++ Oyunçu nəzarətlərini gÃļstərin ++ QarÄąÅŸdÄąrma rejimini aktiv edin ++ QarÄąÅŸdÄąrma rejimini deaktiv edin ++ DayandÄąrÄąn ++ VR rejimi ++ Endirmə tamamlandÄą ++ Endirin ++ Endirilir ++ Endirmə alÄąnmadÄą ++ Endirmələr ++ Endirmə durdurulub ++ Endirmələr şəbəkəni gÃļzləyir ++ Endirmələr WiFi şəbəkəsini gÃļzləyir ++ Endirilənlər silinir ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativ ++ NÃŧsxəni alan ++ Şərh ++ Əlavə ++ Avtomatik ++ Yoxdur ++ Audio ++ Stereo ++ YÃŧksək səs ++ 5.1 yÃŧksək səs ++ 7.1 yÃŧksək səs ++ Naməlum ++ Naməlum (%1$s) ++ Şəkil ++ DÃŧymə, şəkil ++ Keçid ++ Durdurun ++ Oxudun ++ Geri keçin ++ İrəli keçin ++ NÃļvbəti elementə keçin ++ Əvvəlki elementə keçin ++ Menyu ++ "AxtarÄąn" ++ deaktiv ++ aktivdir ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..22a6b17 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,132 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normalno ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Premotajte %d sekundu unapred ++ Premotajte %d sekunde unapred ++ Premotajte %d sekundi unapred ++ ++ ++ Premotajte %d sekundu unazad ++ Premotajte %d sekunde unazad ++ Premotajte %d sekundi unazad ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "JoÅĄ opcija" ++ "Gotovo" ++ "PrikaÅži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "PretraÅžiteâ€Ļ" ++ "ObriÅĄite upit" ++ "PretraÅžite upit" ++ "PretraÅžite" ++ "PoÅĄaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ "Odgovori" ++ "Video" ++ "Odbij" ++ "Prekini vezu" ++ "Dolazni poziv" ++ "Poziv je u toku" ++ "Proverava se dolazni poziv" ++ Trenutno svira ++ Prijavite se da biste koristili ovu aplikaciju ++ Netačni podaci za unos ++ SluÅĄate na previÅĄe uređaja ++ Taj sadrÅžaj se vecˁ puÅĄta ++ Prekinuta je veza sa medijskom aplikacijom ++ NiÅĄta drugo nije stavljeno u redosled ++ DoÅĄlo je do greÅĄke. Probajte kasnije. ++ Nismo uspeli da dovrÅĄimo radnju. Probajte ponovo. ++ Trenutno ne moÅžemo to da uradimo ++ GreÅĄka unosa/izlaza ++ Ne moÅžete da dobijete taj sadrÅžaj ovde ++ Ova aplikacija ne moÅže to da uradi ++ Taj sadrÅžaj je blokiran ++ Pristup je odbijen ++ Potreban je premijum pristup ++ Treba da obavite podeÅĄavanje ++ Ne moÅžete viÅĄe da preskačete pesme ++ Omogucˁi titlove ++ Onemogucˁi titlove ++ Premotaj unapred ++ Pređi na ceo ekran ++ Izađi iz celog ekrana ++ Sakrij kontrole plejera ++ Sledecˁa ++ Sakrij dodatna podeÅĄavanja ++ PrikaÅži dodatna podeÅĄavanja ++ Pauziraj ++ Pusti ++ Brzina ++ Prethodna ++ VaÅĄ reÅžim: Ponovi sve. Uključite/isključite. ++ VaÅĄ reÅžim: Bez ponavljanja. Uključite/isključite. ++ VaÅĄ reÅžim: Ponovi jedno. Uključite/isključite. ++ Premotaj unazad ++ Napredovanje reprodukcije ++ PodeÅĄavanja ++ PrikaÅži kontrole plejera ++ Omogucˁite nasumični reÅžim ++ Onemogucˁite nasumični reÅžim ++ Zaustavi ++ VR reÅžim ++ Preuzimanje je zavrÅĄeno ++ Preuzmi ++ Preuzima se ++ Preuzimanje nije uspelo ++ Preuzimanja ++ Preuzimanja su pauzirana ++ Preuzimanja čekaju na mreÅžu ++ Preuzimanja čekaju na WiFi ++ Preuzimanja se uklanjaju ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d × %2$d ++ Alternativno ++ Titl ++ Komentar ++ Dodatno ++ Automatski ++ Nijedna ++ Audio ++ Stereo ++ Prostorni zvuk ++ Prostorni zvuk 5.1 ++ Prostorni zvuk 7.1 ++ Nepoznato ++ Nepoznato (%1$s) ++ Pauziraj ++ Pusti ++ Premotaj unazad ++ Premotaj unapred ++ Premotaj na sledecˁu stavku ++ Premotaj na prethodnu stavku ++ "PretraÅžite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..675aa7d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,139 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Đ—Đ˛Ņ‹Ņ‡Đ°ĐšĐŊĐ°Ņ ++ 1,25x ++ 1,5x ++ 2Ņ… ++ ++ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ++ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ++ "ПĐĩŅ€Đ°ĐšŅŅ†Ņ– ĐŊа ĐŗĐ°ĐģĐžŅžĐŊŅƒŅŽ ŅŅ‚Đ°Ņ€ĐžĐŊĐē҃" ++ "ПĐĩŅ€Đ°ĐšŅŅ†Ņ– ŅžĐ˛ĐĩҀ҅" ++ "Đ”Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹Ņ ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂Ҁҋ" ++ "Đ“Đ°Ņ‚ĐžĐ˛Đ°" ++ "ПаĐēĐ°ĐˇĐ°Ņ†ŅŒ ҃ҁĐĩ" ++ "Đ’Ņ‹ĐąĐĩҀҋ҆Đĩ ĐŋŅ€Đ°ĐŗŅ€Đ°Đŧ҃" ++ "ВĐĢКЛ." ++ "ĐŖĐšĐ›." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "ĐŸŅ€Đ°ĐąĐĩĐģ" ++ "Sym +" ++ "МĐĩĐŊŅŽÂ +" ++ "ĐŸĐžŅˆŅƒĐēâ€Ļ" ++ "Đ’Ņ‹Đ´Đ°ĐģŅ–Ņ†ŅŒ СаĐŋҋ҂" ++ "ĐŸĐžŅˆŅƒĐēĐ°Đ˛Ņ‹ СаĐŋҋ҂" ++ "ĐŸĐžŅˆŅƒĐē" ++ "АдĐŋŅ€Đ°Đ˛Ņ–Ņ†ŅŒ СаĐŋҋ҂" ++ "ГаĐģĐ°ŅĐ°Đ˛Ņ‹ ĐŋĐžŅˆŅƒĐē" ++ "ĐĐąĐ°ĐŗŅƒĐģŅ–Ņ†ŅŒ ĐŋŅ€Đ°Đˇ" ++ "ĐĐąĐ°ĐŗŅƒĐģŅ–Ņ†ŅŒ ĐŋŅ€Đ°Đˇ ĐŋŅ€Đ°ĐŗŅ€Đ°Đŧ҃ \"%s\"" ++ "Đ—ĐŗĐ°Ņ€ĐŊŅƒŅ†ŅŒ" ++ "АдĐēĐ°ĐˇĐ°Ņ†ŅŒ" ++ "Đ’Ņ–Đ´ŅĐ°" ++ "ĐĐ´Ņ…Ņ–ĐģŅ–Ņ†ŅŒ" ++ "Đ—Đ°Đ˛ŅŅ€ŅˆŅ‹Ņ†ŅŒ" ++ "ĐŖĐ˛Đ°Ņ…ĐžĐ´ĐŊŅ‹ Đ˛Ņ‹ĐēĐģŅ–Đē" ++ "Đ‘ŅĐŗŅƒŅ‡Ņ‹ Đ˛Ņ‹ĐēĐģŅ–Đē" ++ "Đ¤Ņ–ĐģŅŒŅ‚Ņ€Đ°Đ˛Đ°ĐŊĐŊĐĩ ŅžĐ˛Đ°Ņ…ĐžĐ´ĐŊĐ°ĐŗĐ° Đ˛Ņ‹ĐēĐģŅ–Đē҃" ++ КаĐŧĐąŅ–ĐŊаваĐŊŅ‹ ҁĐŋҖҁ ++ Đ—Đ°Ņ€Đ°Đˇ Ņ–ĐŗŅ€Đ°Đĩ ++ Каб Đ˛Ņ‹ĐēĐ°Ņ€Ņ‹ŅŅ‚ĐžŅžĐ˛Đ°Ņ†ŅŒ ĐŗŅŅ‚Ņƒ ĐŋŅ€Đ°ĐŗŅ€Đ°Đŧ҃, ŅƒĐ˛Đ°ĐšĐ´ĐˇŅ–Ņ†Đĩ ++ ĐŖĐ˛ĐĩдСĐĩĐŊŅ‹ ĐŊŅĐŋŅ€Đ°Đ˛Ņ–ĐģҌĐŊŅ‹Ņ даĐŊŅ‹Ņ ++ ĐŸŅ€Đ°ŅĐģŅƒŅ…ĐžŅžĐ˛Đ°ĐŊĐŊĐĩ Đ°Đ´ĐąŅ‹Đ˛Đ°ĐĩŅ†Ņ†Đ° ĐŊа СаĐŊĐ°Đ´Ņ‚Đ° Đ˛ŅĐģŅ–ĐēаК ĐēĐžĐģҌĐēĐ°ŅŅ†Ņ– ĐŋҀҋĐģад ++ Đ“ŅŅ‚Đ° СĐŧĐĩŅŅ†Ņ–Đ˛Đ° ŅžĐļĐž ĐŋŅ€Đ°ĐšĐŗŅ€Đ°ĐĩŅ†Ņ†Đ° ++ Đ’Ņ‹ адĐēĐģŅŽŅ‡Ņ‹ĐģŅ–ŅŅ ад Đŧ҃ĐģŅŒŅ‚Ņ‹ĐŧĐĩĐ´Ņ‹ĐšĐŊаК ĐŋŅ€Đ°ĐŗŅ€Đ°ĐŧŅ‹ ++ ĐŖ Ņ‡Đ°Ņ€ĐˇĐĩ ĐŋŅƒŅŅ‚Đ° ++ ĐŖĐˇĐŊŅ–ĐēĐģа ĐŋаĐŧŅ‹ĐģĐēа. ĐŸĐ°ŅžŅ‚Đ°Ņ€Ņ‹Ņ†Đĩ ҁĐŋŅ€ĐžĐąŅƒ ĐŋаСĐŊĐĩĐš. ++ НĐĩ ŅžĐ´Đ°ĐģĐžŅŅ ĐˇĐ°Đ˛ŅŅ€ŅˆŅ‹Ņ†ŅŒ дСĐĩŅĐŊĐŊĐĩ. ĐŸĐ°ŅžŅ‚Đ°Ņ€Ņ‹Ņ†Đĩ ҁĐŋŅ€ĐžĐąŅƒ. ++ НĐĩ ŅžĐ´Đ°ĐĩŅ†Ņ†Đ° Đ˛Ņ‹ĐēаĐŊĐ°Ņ†ŅŒ ĐŗŅŅ‚Ņ‹ СаĐŋҋ҂ ++ ПаĐŧŅ‹ĐģĐēа ŅžĐ˛ĐžĐ´Ņƒ айО Đ˛Ņ‹Đ˛Đ°Đ´Ņƒ ++ НĐĩ ŅžĐ´Đ°ĐģĐžŅŅ ĐˇĐ°ĐŗŅ€ŅƒĐˇŅ–Ņ†ŅŒ СĐŧĐĩŅŅ†Ņ–Đ˛Đ° Ņž ĐŗŅŅ‚Ņ‹Đŧ Ņ€ŅĐŗŅ–Ņ‘ĐŊĐĩ ++ ДзĐĩŅĐŊĐŊĐĩ ĐŊĐĩĐ´Đ°ŅŅ‚ŅƒĐŋĐŊаĐĩ Ņž ĐŗŅŅ‚Đ°Đš ĐŋŅ€Đ°ĐŗŅ€Đ°ĐŧĐĩ ++ Đ“ŅŅ‚Đ° СĐŧĐĩŅŅ†Ņ–Đ˛Đ° СайĐģаĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊа ++ ĐŖ Đ´ĐžŅŅ‚ŅƒĐŋĐĩ адĐŧĐžŅžĐģĐĩĐŊа ++ Đ”Đ°ŅŅ‚ŅƒĐŋĐŊа Đ´ĐģŅ ĐŋĐģĐ°Ņ‚ĐŊҋ҅ ҃ĐģŅ–ĐēĐžĐ˛Ņ‹Ņ… СаĐŋŅ–ŅĐ°Ņž ++ ĐŸĐ°Ņ‚Ņ€Đ°ĐąŅƒĐĩŅ†Ņ†Đ° ĐŊаĐģадĐļваĐŊĐŊĐĩ ++ ĐŸŅ€Đ°Đŋ҃ҁĐēĐ°Ņ†ŅŒ Ņ‚Ņ€ŅĐēŅ– йОĐģҌ҈ ĐŊĐĩĐģŅŒĐŗĐ° ++ ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ŅŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹ ++ Đ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ŅŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ++ ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ĐŋĐžŅžĐŊĐ°ŅĐēŅ€Đ°ĐŊĐŊŅ‹ Ņ€ŅĐļŅ‹Đŧ ++ Đ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ĐŋĐžŅžĐŊĐ°ŅĐēŅ€Đ°ĐŊĐŊŅ‹ Ņ€ŅĐļŅ‹Đŧ ++ ĐĄŅ…Đ°Đ˛Đ°Ņ†ŅŒ ŅĐģĐĩĐŧĐĩĐŊ҂ҋ ĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊĐŊŅ ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐģҌĐŊŅ–Đēа ++ ДаĐģĐĩĐš ++ ĐĄŅ…Đ°Đ˛Đ°Ņ†ŅŒ Đ´Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹Ņ ĐŊаĐģĐ°Đ´Ņ‹ ++ ПаĐēĐ°ĐˇĐ°Ņ†ŅŒ Đ´Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹Ņ ĐŊаĐģĐ°Đ´Ņ‹ ++ ĐŸĐ°ŅžĐˇĐ° ++ Đ“ŅƒĐģŅŅ†ŅŒ ++ ĐĨŅƒŅ‚ĐēĐ°ŅŅ†ŅŒ ++ Назад ++ ĐĻŅĐŋĐĩŅ€: ĐŋĐ°ŅžŅ‚Đ°Ņ€Đ°Ņ†ŅŒ ŅƒŅŅ‘. ЗĐŧŅĐŊŅ–Ņ†ŅŒ. ++ ĐĻŅĐŋĐĩŅ€: ĐąĐĩС ĐŋĐ°ŅžŅ‚ĐžŅ€Đ°Ņž. ЗĐŧŅĐŊŅ–Ņ†ŅŒ. ++ ĐĻŅĐŋĐĩŅ€: ĐŋĐ°ŅžŅ‚Đ°Ņ€Đ°Ņ†ŅŒ Ņ„Ņ€Đ°ĐŗĐŧĐĩĐŊŅ‚. ЗĐŧŅĐŊŅ–Ņ†ŅŒ. ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ++ ĐĨОд ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐŊĐŊŅ ++ НаĐģĐ°Đ´Ņ‹ ++ ПаĐēĐ°ĐˇĐ°Ņ†ŅŒ ŅĐģĐĩĐŧĐĩĐŊ҂ҋ ĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊĐŊŅ ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐģҌĐŊŅ–Đēа ++ ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ Ņ€ŅĐļŅ‹Đŧ ĐŋĐĩŅ€Đ°ĐŧĐĩŅˆĐ˛Đ°ĐŊĐŊŅ ++ Đ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ Ņ€ŅĐļŅ‹Đŧ ĐŋĐĩŅ€Đ°ĐŧĐĩŅˆĐ˛Đ°ĐŊĐŊŅ ++ ĐĄĐŋŅ‹ĐŊŅ–Ņ†ŅŒ ++ VR-Ņ€ŅĐļŅ‹Đŧ ++ ĐĄĐŋаĐŧĐŋĐžŅžĐēа СавĐĩŅ€ŅˆĐ°ĐŊа ++ ĐĄĐŋаĐŧĐŋĐ°Đ˛Đ°Ņ†ŅŒ ++ ĐĄĐŋаĐŧĐŋĐžŅžĐ˛Đ°ĐĩŅ†Ņ†Đ° ++ Збой ҁĐŋаĐŧĐŋĐžŅžĐēŅ– ++ ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– ++ ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– ĐŋҀҋĐŋŅ‹ĐŊĐĩĐŊŅ‹ ++ ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– Ņ‡Đ°ĐēĐ°ŅŽŅ†ŅŒ ĐŋадĐēĐģŅŽŅ‡ŅĐŊĐŊŅ да ҁĐĩŅ‚ĐēŅ– ++ ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– Ņ‡Đ°ĐēĐ°ŅŽŅ†ŅŒ ĐŋадĐēĐģŅŽŅ‡ŅĐŊĐŊŅ да Wi-Fi ++ Đ’Ņ‹Đ´Đ°ĐģĐĩĐŊĐŊĐĩ ҁĐŋаĐŧĐŋОваĐē ++ %1$s, %2$s ++ %1$.2fÂ ĐœĐąŅ–Ņ‚/ҁ ++ МоĐŊа ++ %1$d × %2$d ++ АĐģŅŒŅ‚ŅŅ€ĐŊĐ°Ņ‚Ņ‹ŅžĐŊŅ‹ СаĐŋҖҁ ++ ĐĄŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹ ++ КаĐŧĐĩĐŊŅ‚Đ°Ņ€Ņ‹Ņ– ++ Đ”Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹ СаĐŋҖҁ ++ ĐŅžŅ‚Đ°ĐŧĐ°Ņ‚Ņ‹Ņ‡ĐŊа ++ ĐŅĐŧа ++ ĐŅžĐ´Ņ‹Ņ ++ ĐĄŅ‚ŅŅ€ŅĐ° ++ ĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐē ++ ĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐē 5.1 ++ ĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐē 7.1 ++ НĐĩĐ˛ŅĐ´ĐžĐŧа ++ НĐĩĐ˛ŅĐ´ĐžĐŧа (%1$s) ++ Đ’Ņ–Đ´Đ°Ņ€Ņ‹Ņ ++ КĐŊĐžĐŋĐēа, Đ˛Ņ–Đ´Đ°Ņ€Ņ‹Ņ ++ ĐĄĐŋĐ°ŅŅ‹ĐģĐēа ++ ĐŸŅ€Ņ‹ĐŋŅ‹ĐŊŅ–Ņ†ŅŒ ++ ĐŸŅ€Đ°ĐšĐŗŅ€Đ°Ņ†ŅŒ ++ ПĐĩŅ€Đ°ĐšŅŅ†Ņ– ĐŊаСад ++ ПĐĩŅ€Đ°ĐšŅŅ†Ņ– ŅžĐŋĐĩŅ€Đ°Đ´ ++ ПĐĩŅ€Đ°ĐšŅŅ†Ņ– да ĐŊĐ°ŅŅ‚ŅƒĐŋĐŊĐ°ĐŗĐ° ŅĐģĐĩĐŧĐĩĐŊŅ‚Đ° ++ ПĐĩŅ€Đ°ĐšŅŅ†Ņ– да ĐŋаĐŋŅŅ€ŅĐ´ĐŊŅĐŗĐ° ŅĐģĐĩĐŧĐĩĐŊŅ‚Đ° ++ МĐĩĐŊŅŽ ++ "ĐŸĐžŅˆŅƒĐē" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..c6a48c7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ ĐĐžŅ€ĐŧаĐģĐŊĐž ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ %dÂ ŅĐĩĐē҃ĐŊда ĐŊаĐŋŅ€ĐĩĐ´ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ(Ҋҁ) %dÂ ŅĐĩĐē҃ĐŊди ĐŊаĐŋŅ€ĐĩĐ´ ++ ++ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ %dÂ ŅĐĩĐē҃ĐŊда ĐŊаСад ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ(Ҋҁ) %dÂ ŅĐĩĐē҃ĐŊди ĐŊаСад ++ ++ "ĐĐ°Đ˛Đ¸ĐŗĐ¸Ņ€Đ°ĐŊĐĩ ĐēҊĐŧ ĐŊĐ°Ņ‡Đ°ĐģĐŊĐ¸Ņ ĐĩĐēŅ€Đ°ĐŊ" ++ "ĐĐ°Đ˛Đ¸ĐŗĐ¸Ņ€Đ°ĐŊĐĩ ĐŊĐ°ĐŗĐžŅ€Đĩ" ++ "ĐžŅ‰Đĩ ĐžĐŋŅ†Đ¸Đ¸" ++ "Đ“ĐžŅ‚ĐžĐ˛Đž" ++ "ĐŸŅ€ĐĩĐŗĐģĐĩĐ´ ĐŊа Đ˛ŅĐ¸Ņ‡Đēи" ++ "ИСйĐĩŅ€ĐĩŅ‚Đĩ ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩ" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ĐēĐģĐ°Đ˛Đ¸ŅˆĐ° Са иĐŊŅ‚ĐĩŅ€Đ˛Đ°Đģ" ++ "Sym+" ++ "Menu+" ++ "ĐĸŅŠŅ€ŅĐĩŅ‚Đĩâ€Ļ" ++ "Đ˜ĐˇŅ‡Đ¸ŅŅ‚Đ˛Đ°ĐŊĐĩ ĐŊа ĐˇĐ°ŅĐ˛ĐēĐ°Ņ‚Đ°" ++ "Đ—Đ°ŅĐ˛Đēа Са Ņ‚ŅŠŅ€ŅĐĩĐŊĐĩ" ++ "ĐĸŅŠŅ€ŅĐĩĐŊĐĩ" ++ "ИСĐŋŅ€Đ°Ņ‰Đ°ĐŊĐĩ ĐŊа ĐˇĐ°ŅĐ˛ĐēĐ°Ņ‚Đ°" ++ "ГĐģĐ°ŅĐžĐ˛Đž Ņ‚ŅŠŅ€ŅĐĩĐŊĐĩ" ++ "ĐĄĐŋОдĐĩĐģŅĐŊĐĩ ҁҊҁ:" ++ "ĐĄĐŋОдĐĩĐģŅĐŊĐĩ ҁҊҁ: %s" ++ "ХвиваĐŊĐĩ" ++ ĐĄĐ¸ĐŗĐŊаĐģ ++ "ĐžŅ‚ĐŗĐžĐ˛ĐžŅ€" ++ "ВидĐĩООйаĐļдаĐŊĐĩ" ++ "ĐžŅ‚Ņ…Đ˛ŅŠŅ€ĐģŅĐŊĐĩ" ++ "Đ—Đ°Ņ‚Đ˛Đ°Ņ€ŅĐŊĐĩ" ++ "Đ’Ņ…ĐžĐ´ŅŅ‰Đž ОйаĐļдаĐŊĐĩ" ++ "ĐĸĐĩĐēŅƒŅ‰Đž ОйаĐļдаĐŊĐĩ" ++ "ĐŸŅ€ĐĩĐŗĐģĐĩĐļда ҁĐĩ Đ˛Ņ…ĐžĐ´ŅŅ‰Đž ОйаĐļдаĐŊĐĩ" ++ КоĐŧйиĐŊĐ¸Ņ€Đ°ĐŊа ĐēŅƒŅ‚Đ¸Ņ ++ Đ’ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļдаĐŊĐž ҁĐĩĐŗĐ° ŅŅŠĐ´ŅŠŅ€ĐļаĐŊиĐĩ ++ ВĐģĐĩĐˇŅ‚Đĩ в ĐŋŅ€ĐžŅ„Đ¸Đģа ŅĐ¸, Са да иСĐŋĐžĐģĐˇĐ˛Đ°Ņ‚Đĩ Ņ‚ĐžĐ˛Đ° ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩ ++ НĐĩĐŋŅ€Đ°Đ˛Đ¸ĐģĐŊи Đ˛Ņ…ĐžĐ´ĐŊи даĐŊĐŊи ++ ĐĄĐģŅƒŅˆĐ° ҁĐĩ ĐŊа Ņ‚Đ˛ŅŠŅ€Đ´Đĩ ĐŧĐŊĐžĐŗĐž ŅƒŅŅ‚Ņ€ĐžĐšŅŅ‚Đ˛Đ° ++ ĐĸОва ŅŅŠĐ´ŅŠŅ€ĐļаĐŊиĐĩ вĐĩ҇Đĩ ҁĐĩ Đ˛ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļда ++ Đ’Ņ€ŅŠĐˇĐēĐ°Ņ‚Đ° ҁ ĐŧĐĩдиКĐŊĐžŅ‚Đž ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩ Đĩ ĐŋŅ€ĐĩĐēҊҁĐŊĐ°Ņ‚Đ° ++ ĐŅĐŧа ĐŊĐ¸Ņ‰Đž Đ´Ņ€ŅƒĐŗĐž в ĐžĐŋĐ°ŅˆĐēĐ°Ņ‚Đ° ++ НĐĩŅ‰Đž ĐŊĐĩ Đĩ ĐŊĐ°Ņ€ĐĩĐ´. ОĐŋĐ¸Ņ‚Đ°ĐšŅ‚Đĩ ĐŋĐž-ĐēҊҁĐŊĐž. ++ НĐĩ ĐŧĐžĐļа да ĐˇĐ°Đ˛ŅŠŅ€ŅˆĐ¸. ОĐŋĐ¸Ņ‚Đ°ĐšŅ‚Đĩ ĐžŅ‚ĐŊОвО. ++ ПоĐŊĐ°ŅŅ‚ĐžŅŅ‰ĐĩĐŧ Ņ‚Đ°ĐˇĐ¸ ĐˇĐ°ŅĐ˛Đēа ĐŊĐĩ ĐŧĐžĐļĐĩ да ҁĐĩ иСĐŋҊĐģĐŊи ++ Đ“Ņ€Đĩ҈Đēа Đ˛ŅŠĐ˛ Đ˛Ņ…ĐžĐ´ĐŊĐ¸Ņ‚Đĩ/Đ¸ĐˇŅ…ĐžĐ´ĐŊĐ¸Ņ‚Đĩ даĐŊĐŊи ++ ĐĸОва ŅŅŠĐ´ŅŠŅ€ĐļаĐŊиĐĩ ĐŊĐĩ Đĩ ĐŊаĐģĐ¸Ņ†Đĩ Са Ņ€ĐĩĐŗĐ¸ĐžĐŊа ви ++ ĐŸŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩŅ‚Đž ĐŊĐĩ ĐŧĐžĐļĐĩ да иСĐŋҊĐģĐŊи Ņ‚Đ°ĐˇĐ¸ ĐˇĐ°ŅĐ˛Đēа ++ ĐĸОва ŅŅŠĐ´ŅŠŅ€ĐļаĐŊиĐĩ Đĩ ĐąĐģĐžĐēĐ¸Ņ€Đ°ĐŊĐž ++ Đ”ĐžŅŅ‚ŅŠĐŋŅŠŅ‚ Đĩ ĐžŅ‚ĐēаСаĐŊ ++ За Đ´ĐžŅŅ‚ŅŠĐŋ ҁĐĩ Đ¸ĐˇĐ¸ŅĐēва ĐŋĐģĐ°Ņ‚ĐĩĐŊ ĐŋŅ€ĐžŅ„Đ¸Đģ ++ Đ˜ĐˇĐ¸ŅĐēва ҁĐĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐ˛Đ°ĐŊĐĩ ++ НĐĩ ĐŧĐžĐŗĐ°Ņ‚ да ҁĐĩ ĐŋŅ€ĐžĐŋ҃ҁĐēĐ°Ņ‚ ĐŋОвĐĩ҇Đĩ СаĐŋĐ¸ŅĐ¸ ++ АĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸Ņ‚Đĩ ++ ДĐĩаĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸Ņ‚Đĩ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ĐŊаĐŋŅ€ĐĩĐ´ ++ Đ’Ņ…ĐžĐ´ в Ņ†ŅĐģ ĐĩĐēŅ€Đ°ĐŊ ++ Đ˜ĐˇŅ…ĐžĐ´ ĐžŅ‚ Ņ†ŅĐģ ĐĩĐēŅ€Đ°ĐŊ ++ ĐĄĐēŅ€Đ¸Đ˛Đ°ĐŊĐĩ ĐŊа ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐšŅŠŅ€Đ° ++ НаĐŋŅ€ĐĩĐ´ ++ ĐĄĐēŅ€Đ¸Đ˛Đ°ĐŊĐĩ ĐŊа Đ´ĐžĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēи ++ ПоĐēаСваĐŊĐĩ ĐŊа Đ´ĐžĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēи ++ ĐŸĐžŅŅ‚Đ°Đ˛ŅĐŊĐĩ ĐŊа ĐŋĐ°ŅƒĐˇĐ° ++ Đ’ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļдаĐŊĐĩ ++ ĐĄĐēĐžŅ€ĐžŅŅ‚ ++ Назад ++ ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: ĐŸĐžĐ˛Ņ‚Đ°Ņ€. ĐŊа Đ˛ŅĐ¸Ņ‡Đēи. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ. ++ ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: БĐĩС ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ. ++ ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: ĐŸĐžĐ˛Ņ‚Đ°Ņ€. ĐŊа 1 ĐĩĐģĐĩĐŧĐĩĐŊŅ‚. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ. ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ĐŊаСад ++ НаĐŋŅ€ĐĩĐ´ŅŠĐē ĐŊа Đ˛ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļдаĐŊĐĩŅ‚Đž ++ ĐĐ°ŅŅ‚Ņ€ĐžĐšĐēи ++ ПоĐēаСваĐŊĐĩ ĐŊа ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐšŅŠŅ€Đ° ++ АĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа Ņ€ĐĩĐļиĐŧа Са Ņ€Đ°ĐˇĐąŅŠŅ€ĐēваĐŊĐĩ ++ ДĐĩаĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа Ņ€ĐĩĐļиĐŧа Са Ņ€Đ°ĐˇĐąŅŠŅ€ĐēваĐŊĐĩ ++ ĐĄĐŋĐ¸Ņ€Đ°ĐŊĐĩ ++ Ņ€ĐĩĐļиĐŧ Са VR ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩŅ‚Đž ĐˇĐ°Đ˛ŅŠŅ€ŅˆĐ¸ ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩ ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅ ҁĐĩ ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩŅ‚Đž ĐŊĐĩ ĐąĐĩ ҃ҁĐŋĐĩ҈ĐŊĐž ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸Ņ ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° ŅĐ° ĐŊа ĐŋĐ°ŅƒĐˇĐ° ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° Ņ‡Đ°ĐēĐ°Ņ‚ Đ˛Ņ€ŅŠĐˇĐēа ҁ иĐŊŅ‚ĐĩŅ€ĐŊĐĩŅ‚ ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° Ņ‡Đ°ĐēĐ°Ņ‚ Đ˛Ņ€ŅŠĐˇĐēа ҁ Wi-Fi ++ Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° ҁĐĩ ĐŋŅ€ĐĩĐŧĐ°Ņ…Đ˛Đ°Ņ‚ ++ %1$s – %2$s ++ %1$.2f Мб/ҁĐĩĐē ++ МоĐŊĐž ++ %1$d × %2$d ++ АĐģŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛ĐĩĐŊ СаĐŋĐ¸Ņ ++ ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸ ++ КоĐŧĐĩĐŊŅ‚Đ°Ņ€ ++ ДоĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐĩĐŊ СаĐŋĐ¸Ņ ++ ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Đ¸Ņ‡ĐŊĐž ++ ĐĐ¸Ņ‰Đž ++ ĐŅƒĐ´Đ¸ĐžĐˇĐ°ĐŋĐ¸Ņ ++ ĐĄŅ‚ĐĩŅ€ĐĩĐž ++ ОбĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐē ++ 5,1-ĐēаĐŊаĐģĐĩĐŊ ОйĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐē ++ 7,1-ĐēаĐŊаĐģĐĩĐŊ ОйĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐē ++ НĐĩиСвĐĩҁ҂ĐŊĐž ++ ĐŅĐŧа даĐŊĐŊи (%1$s) ++ Đ—Đ°ĐŗĐģавиĐĩ ++ Đ˜ĐˇĐžĐąŅ€Đ°ĐļĐĩĐŊиĐĩ ++ Đ‘ŅƒŅ‚ĐžĐŊ, Đ¸ĐˇĐžĐąŅ€Đ°ĐļĐĩĐŊиĐĩ ++ Đ’Ņ€ŅŠĐˇĐēа ++ ĐŸĐ°ŅƒĐˇĐ° ++ ĐŸŅƒŅĐēаĐŊĐĩ ++ ĐŸŅ€Đ¸Đ´Đ˛Đ¸ĐļваĐŊĐĩ ĐŊаСад ++ ĐŸŅ€Đ¸Đ´Đ˛Đ¸ĐļваĐŊĐĩ ĐŊаĐŋŅ€ĐĩĐ´ ++ ĐŸŅ€Đ¸Đ´Đ˛Đ¸ĐļваĐŊĐĩ ĐēҊĐŧ ҁĐģĐĩĐ´Đ˛Đ°Ņ‰Đ¸Ņ ĐĩĐģĐĩĐŧĐĩĐŊŅ‚ ++ ĐŸŅ€Đ¸Đ´Đ˛Đ¸ĐļваĐŊĐĩ ĐēҊĐŧ ĐŋŅ€ĐĩĐ´Đ¸ŅˆĐŊĐ¸Ņ ĐĩĐģĐĩĐŧĐĩĐŊŅ‚ ++ МĐĩĐŊŅŽ ++ ЛĐĩĐŊŅ‚Đ° ҁ ĐŧĐĩĐŊŅŽŅ‚Đ° ++ ЕĐģĐĩĐŧĐĩĐŊŅ‚ ĐžŅ‚ ĐŧĐĩĐŊŅŽ ++ ЛĐĩĐŊŅ‚Đ° Са ĐŊаĐŋŅ€ĐĩĐ´ŅŠĐē ++ РадиО ĐŗŅ€ŅƒĐŋа ++ РаСдĐĩĐģ ++ ЛĐĩĐŊŅ‚Đ° Са ĐŋŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ++ "ĐĸŅŠŅ€ŅĐĩĐŊĐĩ" ++ Đ‘ŅƒŅ‚ĐžĐŊ Са ĐˇĐ°Đ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ++ СаĐĩŅ‚Đž ++ ŅĐ˛Đ¸Ņ‚Đž ++ Ņ€Đ°ĐˇŅˆĐ¸Ņ€ĐĩĐŊĐž ++ ҁĐŧĐĩҁĐĩĐŊĐž ++ иСĐēĐģŅŽŅ‡ĐĩĐŊĐž ++ вĐēĐģŅŽŅ‡ĐĩĐŊĐž ++ ĐŊĐĩĐ¸ĐˇĐąŅ€Đ°ĐŊĐž ++ "999+" ++ ĐžĐąĐžĐąŅ‰ĐĩĐŊиĐĩ ++ ĐĄĐŋĐ¸ŅŅŠĐē ҁ Ņ€Đ°ĐˇĐ´ĐĩĐģи ++ ĐĸаКĐŧĐĩŅ€ ++ ЛĐĩĐŊŅ‚Đ° ҁ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Đ¸ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..ad8ce75 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ ā§Ļ.⧍ā§Ģx ++ ā§Ļ.ā§Ģx ++ ā§Ļ.ā§­ā§Ģx ++ āĻ¸ā§āĻŦāĻžāĻ­āĻžāĻŦāĻŋāĻ• ++ ā§§.⧍ā§Ģx ++ ā§§.ā§Ģx ++ ⧍x ++ ++ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āĻĢāĻžāĻ¸ā§āϟ āĻĢāϰāĻ“ā§ŸāĻžāĻ°ā§āĻĄ āĻ•āϰ⧁āύ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āĻĢāĻžāĻ¸ā§āϟ āĻĢāϰāĻ“ā§ŸāĻžāĻ°ā§āĻĄ āĻ•āϰ⧁āύ ++ ++ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āϰāĻŋāĻ“ā§ŸāĻžāχāĻ¨ā§āĻĄ āĻ•āϰ⧁āύ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āϰāĻŋāĻ“ā§ŸāĻžāχāĻ¨ā§āĻĄ āĻ•āϰ⧁āύ ++ ++ "āĻšā§‹āĻŽā§‡ āύ⧇āĻ­āĻŋāϗ⧇āϟ āĻ•āϰ⧁āύ" ++ "āωāĻĒāϰ⧇ āύ⧇āĻ­āĻŋāϗ⧇āϟ āĻ•āϰ⧁āύ" ++ "āφāϰāĻ“ āĻŦāĻŋāĻ•āĻ˛ā§āĻĒ" ++ "āĻšāϝāĻŧ⧇ āϗ⧇āϛ⧇" ++ "āϏāĻŦāϗ⧁āϞāĻŋ āĻĻ⧇āϖ⧁āύ" ++ "āĻāĻ•āϟāĻŋ āĻ…ā§āϝāĻžāĻĒ āĻŦ⧇āϛ⧇ āύāĻŋāύ" ++ "āĻŦāĻ¨ā§āϧ āφāϛ⧇" ++ "āϚāĻžāϞ⧁ āĻ•āϰ⧁āύ" ++ "Alt+" ++ "Ctrl+" ++ "āĻŽā§āϛ⧁āύ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "āϏāĻžāĻ°ā§āϚ āĻ•āϰ⧁āύâ€Ļ" ++ "āϕ⧋āϝāĻŧ⧇āϰāĻŋ āĻŽā§āϛ⧇ āĻĢ⧇āϞ⧁āύ" ++ "āϏāĻžāĻ°ā§āϚ āϕ⧋āϝāĻŧ⧇āϰāĻŋ" ++ "āϏāĻžāĻ°ā§āϚ āĻ•āϰ⧁āύ" ++ "āϕ⧋āϝāĻŧ⧇āϰāĻŋ āϜāĻŽāĻž āĻĻāĻŋāύ" ++ "āĻ­āϝāĻŧ⧇āϏ āϏāĻžāĻ°ā§āϚ āĻ•āϰ⧁āύ" ++ "āĻļ⧇āϝāĻŧāĻžāϰ āĻ•āϰ⧁āύ" ++ "%s-āĻāϰ āϏāĻžāĻĨ⧇ āĻļ⧇āϝāĻŧāĻžāϰ āĻ•āϰ⧁āύ" ++ "āϏāĻ™ā§āϕ⧁āϚāĻŋāϤ āĻ•āϰ⧁āύ" ++ āĻ…ā§āϝāĻžāϞāĻžāĻ°ā§āϟ ++ "āωāĻ¤ā§āϤāϰ āĻĻāĻŋāύ" ++ "āĻ­āĻŋāĻĄāĻŋāĻ“" ++ "āĻŦāĻžāϤāĻŋāϞ āĻ•āϰ⧁āύ" ++ "āĻ•āϞ āϕ⧇āĻŸā§‡ āĻĻāĻŋāύ" ++ "āχāύāĻ•āĻžāĻŽāĻŋāĻ‚ āĻ•āϞ" ++ "āϚāĻžāϞ⧁ āĻĨāĻžāĻ•āĻž āĻ•āϞ" ++ "āχāύāĻ•āĻžāĻŽāĻŋāĻ‚ āĻ•āϞ āĻ¸ā§āĻ•ā§āϰāĻŋāύāĻŋāĻ‚ āĻ•āϰāĻž āĻšāĻšā§āϛ⧇" ++ āĻ•āĻŽā§āĻŦā§‹ āĻŦāĻ•ā§āϏ ++ āĻāĻ–āύ āϚāϞāϛ⧇ ++ āĻāχ āĻ…ā§āϝāĻžāĻĒ āĻŦā§āϝāĻŦāĻšāĻžāϰ āĻ•āϰāϤ⧇ āϏāĻžāχāύ-āχāύ āĻ•āϰ⧁āύ ++ āϭ⧁āϞ āχāύāĻĒ⧁āϟ āĻĄā§‡āϟāĻž ++ āĻ…āύ⧇āĻ•āϗ⧁āϞāĻŋ āĻĄāĻŋāĻ­āĻžāχāϏ āĻĨ⧇āϕ⧇ āĻļā§‹āύāĻž āĻšāĻšā§āϛ⧇ ++ āĻāχ āĻ•āĻ¨ā§āĻŸā§‡āĻ¨ā§āϟ āφāϗ⧇ āĻĨ⧇āϕ⧇āχ āϚāϞāϛ⧇ ++ āĻŽāĻŋāĻĄāĻŋ⧟āĻž āĻ…ā§āϝāĻžāĻĒ āĻĨ⧇āϕ⧇ āĻĄāĻŋāϏāĻ•āĻžāύ⧇āĻ•ā§āϟ āĻšā§Ÿā§‡ āϗ⧇āϛ⧇ ++ āϏāĻžāϰāĻŋāϤ⧇ āφāϰ āĻ•āĻŋāϛ⧁ āύ⧇āχ ++ āϕ⧋āύāĻ“ āϏāĻŽāĻ¸ā§āϝāĻž āĻšā§Ÿā§‡āϛ⧇āĨ¤ āĻĒāϰ⧇ āĻšā§‡āĻˇā§āϟāĻž āĻ•āϰ⧇ āĻĻ⧇āϖ⧁āύāĨ¤ ++ āϏāĻŽā§āĻĒā§‚āĻ°ā§āĻŖ āĻ•āϰāĻž āϝāĻžā§ŸāύāĻŋāĨ¤ āφāĻŦāĻžāϰ āĻšā§‡āĻˇā§āϟāĻž āĻ•āϰ⧁āύāĨ¤ ++ āĻāϟāĻŋ āĻāĻ–āύ āĻ•āϰāĻž āϝāĻžāĻŦ⧇ āύāĻž ++ āχāύāĻĒ⧁āϟ/āφāωāϟāĻĒ⧁āϟ āϏāĻ‚āĻ•ā§āϰāĻžāĻ¨ā§āϤ āϏāĻŽāĻ¸ā§āϝāĻž ++ āĻ“āχ āĻ•āĻ¨ā§āĻŸā§‡āĻ¨ā§āϟāϟāĻŋ āĻāĻ–āĻžāύ⧇ āωāĻĒāϞāĻ­ā§āϝ āύ⧟ ++ āĻāχ āĻ…ā§āϝāĻžāĻĒ⧇ āĻ•āĻžāϜāϟāĻŋ āĻ•āϰāĻž āϝāĻžāĻŦ⧇ āύāĻž ++ āĻ“āχ āĻ•āĻ¨ā§āĻŸā§‡āĻ¨ā§āϟāϟāĻŋ āĻŦā§āϞāĻ• āĻ•āϰāĻž āĻšā§Ÿā§‡āϛ⧇ ++ āĻ…ā§āϝāĻžāĻ•ā§āϏ⧇āϏ āĻĻ⧇āĻ“ā§ŸāĻž āĻšā§ŸāύāĻŋ ++ āĻĒā§āϰāĻŋāĻŽāĻŋ⧟āĻžāĻŽ āĻ…ā§āϝāĻžāĻ•āĻžāωāĻ¨ā§āϟ āĻĨāĻžāĻ•āϤ⧇ āĻšāĻŦ⧇ ++ āϏ⧇āϟ-āφāĻĒ āĻ•āϰāϤ⧇ āĻšāĻŦ⧇ ++ āφāϰ āϕ⧋āύāĻ“ āĻŸā§āĻ°ā§āϝāĻžāĻ• āĻāĻĄāĻŧāĻŋā§Ÿā§‡ āϝ⧇āϤ⧇ āĻĒāĻžāϰāĻŦ⧇āύ āύāĻž ++ āϏāĻžāĻŦāϟāĻžāχāĻŸā§‡āϞ āϚāĻžāϞ⧁ āĻ•āϰ⧁āύ ++ āϏāĻžāĻŦāϟāĻžāχāĻŸā§‡āϞ āĻŦāĻ¨ā§āϧ āĻ•āϰ⧁āύ ++ āĻĻā§āϰ⧁āϤ āĻāĻ—āĻŋā§Ÿā§‡ āϝāĻžāύ ++ āĻĢ⧁āϞ-āĻ¸ā§āĻ•ā§āϰāĻŋāύ āĻŽā§‹āĻĄā§‡ āĻĻ⧇āϖ⧁āύ ++ āĻĢ⧁āϞ-āĻ¸ā§āĻ•ā§āϰāĻŋāύ āĻŽā§‹āĻĄ āĻ›ā§‡ā§œā§‡ āĻŦ⧇āϰ⧋āύ ++ āĻĒā§āϞ⧇āϝāĻŧāĻžāϰ āύāĻŋāϝāĻŧāĻ¨ā§āĻ¤ā§āϰāĻŖāϗ⧁āϞāĻŋ āϞ⧁āĻ•āĻžāύ ++ āĻĒāϰāĻŦāĻ°ā§āϤ⧀ ++ āĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤ āϏ⧇āϟāĻŋāĻ‚āϏ āϞ⧁āĻ•āĻžāύ ++ āĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤ āϏ⧇āϟāĻŋāĻ‚āϏ āĻĻ⧇āϖ⧁āύ ++ āĻĒāϜ āĻ•āϰ⧁āύ ++ āϚāĻžāϞāĻžāύ ++ āĻ¸ā§āĻĒāĻŋāĻĄ ++ āĻĒā§‚āĻ°ā§āĻŦāĻŦāĻ°ā§āϤ⧀ ++ \'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āϏāĻŦ āϰāĻŋāĻĒāĻŋāϟ āĻšā§ŸāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤ ++ \'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āϰāĻŋāĻĒāĻŋāϟ āĻšā§Ÿ āύāĻžāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤ ++ \'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āĻāĻ•āϟāĻŋ āϰāĻŋāĻĒāĻŋāϟ āĻšā§ŸāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤ ++ āĻĒāĻŋāĻ›āĻŋā§Ÿā§‡ āϝāĻžāύ ++ āĻ•āϤāϟāĻž āĻĒā§āϞ⧇āĻŦā§āϝāĻžāĻ• āĻšā§Ÿā§‡āϛ⧇ ++ āϏ⧇āϟāĻŋāĻ‚āϏ ++ āĻĒā§āϞ⧇āϝāĻŧāĻžāϰ āύāĻŋāϝāĻŧāĻ¨ā§āĻ¤ā§āϰāĻŖāϗ⧁āϞāĻŋ āĻĻ⧇āϖ⧁āύ ++ \'āĻļāĻžāĻĢ⧇āϞ\' āĻŽā§‹āĻĄ āϚāĻžāϞ⧁ āĻ•āϰ⧇ ++ \'āĻļāĻžāĻĢ⧇āϞ\' āĻŽā§‹āĻĄ āĻŦāĻ¨ā§āϧ āĻ•āϰ⧇ ++ āĻĨāĻžāĻŽāĻžāύ ++ āĻ­āĻŋāφāϰ āĻŽā§‹āĻĄ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻšā§Ÿā§‡ āϗ⧇āϛ⧇ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰ⧁āύ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻšāĻšā§āϛ⧇ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰāĻž āϝāĻžā§ŸāύāĻŋ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻĒāϜ āĻ•āϰāĻž āφāϛ⧇ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āϚāĻžāϞ⧁ āĻ•āϰāĻžāϰ āϜāĻ¨ā§āϝ āύ⧇āϟāĻ“ā§ŸāĻžāĻ°ā§āϕ⧇āϰ āϏāĻžāĻĨ⧇ āĻ•āĻžāύ⧇āĻ•ā§āϟ āĻšāĻ“ā§ŸāĻžāϰ āĻ…āĻĒ⧇āĻ•ā§āώāĻž āĻ•āϰāĻž āĻšāĻšā§āϛ⧇ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āϚāĻžāϞ⧁ āĻ•āϰāĻžāϰ āϜāĻ¨ā§āϝ āĻ“ā§ŸāĻžāχ-āĻĢāĻžāĻ‡ā§Ÿā§‡āϰ āϏāĻžāĻĨ⧇ āĻ•āĻžāύ⧇āĻ•ā§āϟ āĻšāĻ“ā§ŸāĻžāϰ āĻ…āĻĒ⧇āĻ•ā§āώāĻž āĻ•āϰāĻž āĻšāĻšā§āϛ⧇ ++ āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰāĻž āĻ•āĻ¨ā§āĻŸā§‡āĻ¨ā§āϟ āϏāϰāĻŋā§Ÿā§‡ āĻĻ⧇āĻ“ā§ŸāĻž āĻšāĻšā§āϛ⧇ ++ %1$s, %2$s ++ %1$.2f āĻāĻŽāĻŦāĻŋāĻĒāĻŋāĻāϏ ++ āĻŽā§‹āύ⧋ ++ %1$d × %2$d ++ āĻŦāĻŋāĻ•āĻ˛ā§āĻĒ ++ CC ++ āϧāĻžāϰāĻžāĻ­āĻžāĻˇā§āϝ ++ āĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤ ++ āĻ…āĻŸā§‹ ++ āϕ⧋āύāĻ“āϟāĻŋāχ āύ⧟ ++ āĻ…āĻĄāĻŋāĻ“ ++ āĻ¸ā§āϟāĻŋāϰāĻŋāĻ“ ++ āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄ ++ 5.1 āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄ ++ 7.1 āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄ ++ āĻ…āϜāĻžāύāĻž ++ āĻ…āϜāĻžāύāĻž (%1$s) ++ āĻļāĻŋāϰ⧋āύāĻžāĻŽ ++ āχāĻŽā§‡āϜ ++ āĻŦā§‹āϤāĻžāĻŽ, āĻ›āĻŦāĻŋ ++ āϞāĻŋāĻ™ā§āĻ• ++ āĻĒāϜ āĻ•āϰ⧁āύ ++ āϚāĻžāϞāĻžāύ ++ āĻĢāĻŋāϰ⧇ āϝāĻžāĻ“ā§ŸāĻžāϰ āĻŦā§‹āϤāĻžāĻŽ ++ āĻāĻ—āĻŋā§Ÿā§‡ āϝāĻžāύ ++ āĻĒāϰ⧇āϰ āφāχāĻŸā§‡āĻŽā§‡ āϝāĻžāύ ++ āφāϗ⧇āϰ āφāχāĻŸā§‡āĻŽā§‡ āϝāĻžāύ ++ āĻŽā§‡āύ⧁ ++ āĻŽā§‡āύ⧁ āĻŦāĻžāϰ ++ āĻŽā§‡āύ⧁ āφāχāĻŸā§‡āĻŽ ++ āĻĒā§āϰ⧋āĻ—ā§āϰ⧇āϏ āĻŦāĻžāϰ ++ āϰ⧇āĻĄāĻŋāĻ“ āĻ—ā§āϰ⧁āĻĒ ++ āĻŸā§āϝāĻžāĻŦ ++ āĻ¸ā§āĻ•ā§āϰ⧋āϞ āĻŦāĻžāϰ ++ "āϏāĻžāĻ°ā§āϚ āĻ•āϰ⧁āύ" ++ āĻ¸ā§āĻĒāĻŋāύ āĻŦā§‹āϤāĻžāĻŽ ++ āĻŦā§āϝāĻ¸ā§āϤ ++ āϛ⧋āϟ āĻ•āϰāĻž āĻšāϝāĻŧ⧇āϛ⧇ ++ āĻŦāĻžāĻĄāĻŧāĻžāύ⧋ āĻšāϝāĻŧ⧇āϛ⧇ ++ āĻŽāĻŋāĻļā§āϰ ++ āĻŦāĻ¨ā§āϧ āφāϛ⧇ ++ āϚāĻžāϞ⧁ āφāϛ⧇ ++ āφāύāϏāĻŋāϞ⧇āĻ•ā§āϟ āĻ•āϰāĻž āĻšāϝāĻŧ⧇āϛ⧇ ++ "⧝⧝⧝+" ++ āϏāĻžāϰāϏāĻ‚āĻ•ā§āώ⧇āĻĒ ++ āĻŸā§āϝāĻžāĻŦ āϞāĻŋāĻ¸ā§āϟ ++ āϟāĻžāχāĻŽāĻžāϰ ++ āϟ⧁āϞ āĻŦāĻžāϰ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..b2f7d02 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,132 @@ ++ ++ ++ ++ 0,25 x ++ 0,5 x ++ 0,75 x ++ Normalno ++ 1,25 x ++ 1,5 x ++ 2 x ++ ++ ++ Premotavanje %d sekundu naprijed ++ Premotavanje %d sekunde naprijed ++ Premotavanje %d sekundi naprijed ++ ++ ++ Premotavanje %d sekundu nazad ++ Premotavanje %d sekunde nazad ++ Premotavanje %d sekundi nazad ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "ViÅĄe opcija" ++ "Gotovo" ++ "PrikaÅži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "PretraÅžite..." ++ "ObriÅĄi upit" ++ "PretraÅži upit" ++ "PretraÅživanje" ++ "PoÅĄalji upit" ++ "Glasovno pretraÅživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ "Odgovori" ++ "Video" ++ "Odbaci" ++ "Prekini vezu" ++ "Dolazni poziv" ++ "Poziv u toku" ++ "Filtriranje dolaznog poziva" ++ Trenutno se reproducira ++ Prijavite se da koristite ovu aplikaciju ++ Netačni ulazni podaci ++ PreviÅĄe je uređaja na kojima se sluÅĄa ++ Taj sadrÅžaj se već reproducira ++ Prekinuta je povezanost s medijskom aplikacijom ++ NiÅĄta viÅĄe nije postavljeno u red čekanja ++ NeÅĄto nije uredu. PokuÅĄajte kasnije. ++ ZavrÅĄavanje nije uspjelo. PokuÅĄajte ponovo. ++ Trenutno nije moguće izvrÅĄiti taj zahtjev ++ GreÅĄka s ulaznim/izlaznim podacima ++ Nije moguće preuzeti taj sadrÅžaj ovdje ++ Ova aplikacija ne moÅže izvrÅĄiti taj zahtjev ++ Taj sadrÅžaj je blokiran ++ Pristup je odbijen ++ Potreban je premijum pristup ++ Potrebno je postavljanje ++ Nije moguće preskakati joÅĄ numera ++ Omogućavanje titlova ++ Onemogućavanje titlova ++ Premotavanje unaprijed ++ Prikaz preko cijelog ekrana ++ Isključ. prikaza preko cijelog ekrana ++ Sakrij kontrole plejera ++ Naprijed ++ Sakrivanje dodatnih postavki ++ Prikaz dodatnih postavki ++ Pauza ++ Reproduciranje ++ Brzina ++ Nazad ++ Trenutni način: Ponovi sve. Uklj./isklj. ponavlj. ++ Trenutni način: Ne ponavljaj. Uklj./isklj. ponavlj. ++ Trenutni način: Ponovi jedno. Uklj./isklj. ponavlj. ++ Premotavanje unazad ++ Napredak reprodukcije ++ Postavke ++ PrikaÅži kontrole plejera ++ Omogućavanje nasumičnog načina rada ++ Onemogućavanje nasumičnog načina rada ++ Zaustavljanje ++ VR način rada ++ Preuzimanje je zavrÅĄeno ++ Preuzmi ++ Preuzimanje ++ Preuzimanje nije uspjelo ++ Preuzimanja ++ Preuzimanja su pauzirana ++ Preuzimanja čekaju povezivanje s mreÅžom ++ Preuzimanja čekaju WiFi ++ Uklanjanje preuzimanja ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativni zapis ++ Titlovi ++ Komentari ++ Dodatni zapis ++ Automatski ++ NiÅĄta ++ Zvuk ++ Stereo ++ Prostorno ozvučenje ++ Prostorno ozvučenje 5.1 ++ Prostorno ozvučenje 7.1 ++ Nepoznato ++ Nepoznato (%1$s) ++ Pauziranje ++ Reproduciranje ++ Pomicanje nazad ++ Pomicanje naprijed ++ Pomicanje na sljedeću stavku ++ Pomicanje na prethodnu stavku ++ "PretraÅžite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..0925f70 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Avança ràpidament %d segon ++ Avança ràpidament %d segons ++ ++ ++ Rebobina %d segon ++ Rebobina %d segons ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "MÊs opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicaciÃŗ" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "FunciÃŗ+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "MenÃē+" ++ "Cercaâ€Ļ" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ "Respon" ++ "Vídeo" ++ "Rebutja" ++ "Penja" ++ "Trucada entrant" ++ "Trucada en curs" ++ "S\'està filtrant una trucada entrant" ++ S\'està reproduint ++ Inicia la sessiÃŗ per utilitzar aquesta aplicaciÃŗ ++ Les dades d\'entrada sÃŗn incorrectes ++ S\'està escoltant contingut en massa dispositius ++ Aquest contingut ja s\'està reproduint ++ S\'ha desconnectat de l\'aplicaciÃŗ multimèdia ++ No hi ha res mÊs a la cua ++ S\'ha produït un error. Prova-ho mÊs tard. ++ No s\'ha pogut acabar. Torna-ho a provar. ++ Ara mateix aquesta acciÃŗ no es pot dur a terme ++ Error d\'entrada o de sortida ++ El contingut no està disponible en aquesta regiÃŗ ++ L\'aplicaciÃŗ no pot dur a terme aquesta acciÃŗ ++ El contingut està bloquejat ++ AccÊs denegat ++ Es requereix accÊs prèmium ++ ConfiguraciÃŗ necessària ++ No es poden saltar mÊs cançons ++ Activa els subtítols ++ Desactiva els subtítols ++ Avança ràpidament ++ Entra a la pantalla completa ++ Surt de la pantalla completa ++ Amaga els controls del reproductor ++ SegÃŧent ++ Amaga les opcions de configuraciÃŗ addicionals ++ Mostra opcions de configuraciÃŗ addicionals ++ Posa en pausa ++ Reprodueix ++ Velocitat ++ Anterior ++ Actual: repeteix tot. Commuta mode repeticiÃŗ. ++ Actual: no repeteixis. Commuta mode repeticiÃŗ. ++ Actual: repeteix un. Commuta mode repeticiÃŗ. ++ Rebobina ++ ProgrÊs de la reproducciÃŗ ++ ConfiguraciÃŗ ++ Mostra els controls del reproductor ++ Activa el mode aleatori ++ Desactiva el mode aleatori ++ Atura ++ Mode RV ++ S\'ha completat la baixada ++ Baixa ++ S\'està baixant ++ No s\'ha pogut baixar ++ Baixades ++ Les baixades estan en pausa ++ Les baixades estan esperant una xarxa ++ Les baixades estan esperant una Wi‑Fi ++ S\'estan suprimint les baixades ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativa ++ Subtítols ++ Comentaris ++ Complementària ++ Automàtica ++ Cap ++ Àudio ++ Estèreo ++ So envoltant ++ So envoltant 5.1 ++ So envoltant 7.1 ++ Desconegut ++ Desconegut (%1$s) ++ Posa en pausa ++ Reprodueix ++ Retrocedeix ++ Avança ++ Ves a l\'element segÃŧent ++ Ves a l\'element anterior ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..84d4fef +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,159 @@ ++ ++ ++ ++ 0,25× ++ 0,5× ++ 0,75× ++ NormÃĄlní ++ 1,25× ++ 1,5× ++ 2× ++ ++ ++ Posunout vpřed o %d sekundu ++ Posunout vpřed o %d sekundy ++ Posunout vpřed o %d sekundy ++ Posunout vpřed o %d sekund ++ ++ ++ Přetočit zpět o %d sekundu ++ Přetočit zpět o %d sekundy ++ Přetočit zpět o %d sekundy ++ Přetočit zpět o %d sekund ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "DalÅĄÃ­ moÅžnosti" ++ "Hotovo" ++ "Zobrazit vÅĄe" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledatâ€Ļ" ++ "Smazat dotaz" ++ "Dotaz pro vyhledÃĄvÃĄní" ++ "Hledat" ++ "Odeslat dotaz" ++ "HlasovÊ vyhledÃĄvÃĄní" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ VÃŊstraha ++ "Přijmout" ++ "Video" ++ "Odmítnout" ++ "Zavěsit" ++ "Příchozí hovor" ++ "Probíhající hovor" ++ "PrověřovÃĄní příchozího hovoru" ++ KombinovanÊ pole ++ PřehrÃĄvÃĄ se ++ Pokud chcete aplikaci pouŞít, přihlaste se ++ NesprÃĄvnÃĄ vstupní data ++ Poslech je aktivovÃĄn v příliÅĄ mnoha zařízeních ++ Tento obsah se uÅž přehrÃĄvÃĄ ++ Odpojeno od mediÃĄlní aplikace ++ Ve frontě není nic dalÅĄÃ­ho ++ Někde se stala chyba. Zkuste to později. ++ Nelze dokončit. Zkuste to znovu. ++ Tuto akci teď nelze provÊst ++ Chyba vstupu/vÃŊstupu ++ Tento obsah tu nelze načíst ++ Tuto akci aplikace nedokÃĄÅže provÊst ++ Obsah je blokovÃĄn ++ Přístup byl odepřen ++ Je vyÅžadovÃĄn prÊmiovÃŊ přístup ++ Je vyÅžadovÃĄno nastavení ++ DalÅĄÃ­ skladby nelze přeskočit ++ Zapnout titulky ++ Vypnout titulky ++ Rychle vpřed ++ Přejít do reÅžimu celÊ obrazovky ++ Ukončit reÅžim celÊ obrazovky ++ SkrÃŊt ovlÃĄdací prvky přehrÃĄvače ++ DalÅĄÃ­ ++ SkrÃŊt dalÅĄÃ­ nastavení ++ Zobrazit dalÅĄÃ­ nastavení ++ Pozastavit ++ PřehrÃĄt ++ Rychlost ++ Předchozí ++ AktuÃĄlně: Opakovat vÅĄe. Zapněte reÅžim opakovÃĄní. ++ AktuÃĄlně: Nic neopakovat. Zapněte reÅžim opakovÃĄní. ++ AktuÃĄlně: Opakovat jednu poloÅžku. Zapněte reÅžim opakovÃĄní. ++ Přetočit zpět ++ Průběh přehrÃĄvÃĄní ++ Nastavení ++ Zobrazit ovlÃĄdací prvky přehrÃĄvače ++ Aktivovat nÃĄhodnÊ přehrÃĄvÃĄní ++ Deaktivovat nÃĄhodnÊ přehrÃĄvÃĄní ++ Zastavit ++ ReÅžim VR ++ StahovÃĄní bylo dokončeno ++ StÃĄhnout ++ StahovÃĄní ++ StaÅžení se nezdařilo ++ StahovÃĄní ++ StahovÃĄní pozastaveno ++ StahovÃĄní čekÃĄ na síÅĨ ++ StahovÃĄní čekÃĄ na WiFi ++ OdstraňovÃĄní staÅženÊho obsahu ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d × %2$d ++ Alternativní ++ Titulky ++ KomentÃĄÅ™ ++ DodatkovÊ ++ Automaticky ++ ÅŊÃĄdnÊ ++ Zvuk ++ Stereo ++ ProstorovÃŊ zvuk ++ ProstorovÃŊ zvuk 5.1 ++ ProstorovÃŊ zvuk 7.1 ++ NeznÃĄmÊ ++ NeznÃĄmÊ (%1$s) ++ Nadpis ++ ObrÃĄzek ++ Tlačítko, obrÃĄzek ++ Odkaz ++ Pozastavit ++ PřehrÃĄt ++ Posunout zpět ++ Posunout vpřed ++ Posunout na dalÅĄÃ­ poloÅžku ++ Posunout na předchozí poloÅžku ++ Nabídka ++ Panel nabídky ++ PoloÅžka nabídky ++ Ukazatel postupu ++ Skupina přepínačů ++ Karta ++ Posuvník ++ "Hledat" ++ Číselník ++ zaneprÃĄzdněno ++ sbaleno ++ rozbaleno ++ oboje ++ vyp ++ zap ++ nevybrÃĄno ++ "999+" ++ Přehled ++ Seznam karet ++ Časovač ++ Panel nÃĄstrojů ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..d67bab9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,152 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Spol %d sekund frem ++ Spol %d sekunder frem ++ ++ ++ Spol %d sekund tilbage ++ Spol %d sekunder tilbage ++ ++ "Find hjem" ++ "GÃĨ op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "VÃĻlg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søgâ€Ļ" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ Underretning ++ "Besvar" ++ "Video" ++ "Afvis" ++ "LÃĻg pÃĨ" ++ "IndgÃĨende opkald" ++ "IgangvÃĻrende opkald" ++ "Et indgÃĨende opkald screenes" ++ Kombinationsboks ++ Afspilles nu ++ Log ind for at bruge denne app ++ Dataene for input er ikke korrekte ++ Du lytter pÃĨ for mange enheder ++ Indholdet afspilles allerede ++ Forbindelsen til medieappen er afbrudt ++ Der er ikke mere i køen ++ Der er noget galt. Prøv igen senere. ++ Handlingen kunne ikke gennemføres. Prøv igen. ++ Det er ikke muligt lige nu ++ Fejl i input/output ++ Indholdet er ikke tilgÃĻngeligt her ++ Det kan denne app ikke gøre ++ Indholdet er blokeret ++ Adgangen blev nÃĻgtet ++ Dette krÃĻver en Premium-konto ++ Konfiguration er pÃĨkrÃĻvet ++ Du kan ikke springe flere numre over ++ AktivÊr undertekster ++ Deaktiver undertekster ++ Spol frem ++ Åbn fuld skÃĻrm ++ Afslut fuld skÃĻrm ++ Skjul afspilningsknapper ++ NÃĻste ++ Skjul yderligere indstillinger ++ Vis yderligere indstillinger ++ SÃĻt pÃĨ pause ++ Afspil ++ Hastighed ++ Forrige ++ Tilstand: Gentag alle. SlÃĨ Gentag til/fra. ++ Tilstand: Gentag ikke. SlÃĨ Gentag til/fra. ++ Tilstand: Gentag Ên. SlÃĨ Gentag til/fra. ++ Spol tilbage ++ Afspilningsstatus ++ Indstillinger ++ Vis afspilningsknapper ++ AktivÊr Bland ++ Deaktiver Bland ++ Stop ++ VR-tilstand ++ Downloaden er udført ++ Download ++ Downloader ++ Download mislykkedes ++ Downloads ++ Downloads er sat pÃĨ pause ++ Downloads venter pÃĨ netvÃĻrksforbindelse ++ Downloads venter pÃĨ Wi-Fi-netvÃĻrk ++ Fjerner downloads ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativt spor ++ Undertekster ++ Kommentarspor ++ Supplerende spor ++ Automatisk ++ Ingen ++ Lyd ++ Stereo ++ Surroundsound ++ 5.1 surround sound ++ 7.1 surroundsound ++ Ukendt ++ Ukendt (%1$s) ++ Overskrift ++ Billede ++ Knap, billede ++ SÃĻt pÃĨ pause ++ Afspil ++ Hop tilbage ++ Hop frem ++ Hop til nÃĻste element ++ Hop til forrige element ++ Menulinje ++ Menupunkt ++ Statuslinje ++ Radiogruppe ++ Fane ++ Rullelinje ++ "Søg" ++ Snurreknap ++ optaget ++ skjult ++ udvidet ++ blandet ++ fra ++ til ++ fravalgt ++ "999+" ++ Oversigt ++ Liste over faner ++ VÃĻrktøjslinje ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..acba8dd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,152 @@ ++ ++ ++ ++ 0,25-fach ++ 0,5-fach ++ 0,75-fach ++ Standard ++ 1,25-fach ++ 1,5-fach ++ 2-fach ++ ++ ++ %d Sekunde vorspulen ++ %d Sekunden vorspulen ++ ++ ++ %d Sekunde zurÃŧckspulen ++ %d Sekunden zurÃŧckspulen ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "LÃļschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "MenÃŧtaste +" ++ "Suchenâ€Ļ" ++ "Suchanfrage lÃļschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ Warnhinweis ++ "Annehmen" ++ "Video" ++ "Ablehnen" ++ "Auflegen" ++ "Eingehender Anruf" ++ "Aktueller Anruf" ++ "Filter fÃŧr eingehenden Anruf" ++ Kombinationsfeld ++ Läuft gerade ++ Melde dich an, um diese App zu verwenden ++ Die eingegebenen Daten sind nicht korrekt ++ Es wird auf zu vielen Geräten gleichzeitig gestreamt ++ Der Inhalt wird bereits wiedergegeben ++ Verbindung zur Medien-App wurde unterbrochen ++ Die Wiedergabeliste hat keine weiteren Titel ++ Ein Fehler ist aufgetreten. Bitte versuch es später noch einmal. ++ Die Aktion konnte nicht fertiggestellt werden. Bitte versuch es noch einmal. ++ Das ist gerade nicht mÃļglich ++ Fehler bei Eingabe/Ausgabe ++ Der Inhalt ist in dieser Region nicht verfÃŧgbar ++ Die Anfrage wird von dieser App nicht unterstÃŧtzt ++ Der Inhalt ist gesperrt ++ Zugriff verweigert ++ Premiumzugriff erforderlich ++ Einrichtung erforderlich ++ Du kannst keine weiteren Titel Ãŧberspringen ++ Untertitel aktivieren ++ Untertitel deaktivieren ++ Vorspulen ++ Vollbild aktivieren ++ Vollbild beenden ++ Player-Steuerelemente ausblenden ++ Weiter ++ Zusätzliche Einstellungen ausblenden ++ Zusätzliche Einstellungen einblenden ++ Pausieren ++ Wiedergeben ++ Geschwindigkeit ++ ZurÃŧck ++ Aktueller Modus: alles wiederholen. Wiederholungsmodus ändern. ++ Aktueller Modus: nichts wiederholen. Wiederholungsmodus ändern. ++ Aktueller Modus: einen Titel wiederholen. Wiederholungsmodus ändern. ++ ZurÃŧckspulen ++ Wiedergabefortschritt ++ Einstellungen ++ Player-Steuerelemente anzeigen ++ Zufallsmix aktivieren ++ Zufallsmix deaktivieren ++ Beenden ++ VR-Modus ++ Download abgeschlossen ++ Herunterladen ++ Wird heruntergeladen ++ Download fehlgeschlagen ++ Downloads ++ Downloads pausiert ++ Auf Netzwerkverbindung wird gewartet ++ Auf WLAN-Verbindung wird gewartet ++ Downloads werden entfernt ++ %1$s, %2$s ++ %1$.2f Mbit/s ++ Mono ++ %1$d × %2$d ++ Alternativer Track ++ Untertitel ++ Kommentare ++ Zusatzinhalte ++ Automatisch ++ Ohne ++ Audio ++ Stereo ++ Surround-Sound ++ 5.1-Surround-Sound ++ 7.1-Surround-Sound ++ Unbekannt ++ Unbekannt (%1$s) ++ Überschrift ++ Bild ++ Button, Bild ++ Pausieren ++ Wiedergabe ++ ZurÃŧckspulen ++ Vorspulen ++ Zum nächsten Element ++ Zum vorherigen Element ++ MenÃŧ ++ MenÃŧleiste ++ MenÃŧpunkt ++ Statusanzeige ++ Gruppe von Buttons ++ Scroll-Leiste ++ "Suche" ++ Auswahl-Button ++ in Gebrauch ++ ausgeblendet ++ eingeblendet ++ gemischt ++ aus ++ ein ++ nicht ausgewählt ++ "999+" ++ Übersicht ++ Tab-Liste ++ Symbolleiste ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..6df9a3c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ ΚαÎŊÎŋÎŊΚÎēÎŽ ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Î“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩ΀΄Îŋ ++ Î“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩĪ€Ī„Îą ++ ++ ++ ΜÎĩĪ„ÎŦÎ˛ÎąĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩ΀΄Îŋ ++ ΜÎĩĪ„ÎŦÎ˛ÎąĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩĪ€Ī„Îą ++ ++ "ΠÎģÎŋÎŽÎŗÎˇĪƒÎˇ ĪƒĪ„ÎˇÎŊ ÎąĪĪ‡ÎšÎēÎŽ ΃ÎĩÎģÎ¯Î´Îą" ++ "ΠÎģÎŋÎŽÎŗÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą ÎĩĪ€ÎŦÎŊΉ" ++ "ΠÎĩĪÎšĪƒĪƒĪŒĪ„Îĩ΁ÎĩĪ‚ ÎĩĪ€ÎšÎģÎŋÎŗÎ­Ī‚" ++ "ΤέÎģÎŋĪ‚" ++ "ΕÎŧΆÎŦÎŊÎšĪƒÎˇ ΌÎģΉÎŊ" ++ "Î•Ī€ÎšÎģÎ­ÎžĪ„Îĩ ÎŧΚι ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ" ++ "Î‘Î Î•ÎÎ•ÎĄÎ“ÎŸÎ ÎŸÎ™Î—ÎŖÎ—" ++ "Î•ÎÎ•ÎĄÎ“ÎŸÎ ÎŸÎ™Î—ÎŖÎ—" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "δΚÎŦĪƒĪ„ÎˇÎŧÎą" ++ "Sym+" ++ "Menu+" ++ "ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇâ€Ļ" ++ "Î”ÎšÎąÎŗĪÎąĪ†ÎŽ ÎĩĪĪ‰Ī„ÎŽÎŧÎąĪ„ÎŋĪ‚" ++ "Î•ĪĪŽĪ„ÎˇÎŧÎą ÎąÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇĪ‚" ++ "ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ" ++ "ÎĨĪ€ÎŋβÎŋÎģÎŽ ÎĩĪĪ‰Ī„ÎŽÎŧÎąĪ„ÎŋĪ‚" ++ "ÎĻΉÎŊÎˇĪ„ÎšÎēÎŽ ÎąÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ" ++ "ΚÎŋΚÎŊÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ ΃Îĩ" ++ "ΚÎŋΚÎŊÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ ĪƒĪ„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ %s" ++ "ÎŖĪÎŧĪ€Ī„Ī…ÎžÎˇ" ++ ΕιδÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ ++ "Î‘Ī€ÎŦÎŊĪ„ÎˇĪƒÎˇ" ++ "ΒίÎŊĪ„ÎĩÎŋ" ++ "Î‘Ī€ĪŒĪĪÎšĪˆÎˇ" ++ "ΤÎĩ΁ÎŧÎąĪ„ÎšĪƒÎŧĪŒĪ‚" ++ "Î•ÎšĪƒÎĩĪĪ‡ĪŒÎŧÎĩÎŊΡ ÎēÎģÎŽĪƒÎˇ" ++ "ΚÎģÎŽĪƒÎˇ ΃Îĩ ÎĩΞέÎģΚΞΡ" ++ "ΔιαÎģÎŋÎŗÎŽ ÎĩÎšĪƒÎĩĪĪ‡ĪŒÎŧÎĩÎŊÎˇĪ‚ ÎēÎģÎŽĪƒÎˇĪ‚" ++ ÎŖĪ…ÎŊÎ´Ī…ÎąĪƒĪ„ÎšÎēΌ ÎēÎŋĪ…Ī„ÎŦÎēΚ ++ ΑÎēÎŋĪÎŗÎĩĪ„ÎąÎš Ī„ĪŽĪÎą ++ ÎŖĪ…ÎŊδÎĩθÎĩÎ¯Ī„Îĩ ÎŗÎšÎą ÎŊÎą Ī‡ĪÎˇĪƒÎšÎŧÎŋĪ€ÎŋÎšÎŽĪƒÎĩĪ„Îĩ ÎąĪ…Ī„ÎŽ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ ++ ΛαÎŊÎ¸ÎąĪƒÎŧέÎŊÎą δÎĩδÎŋÎŧέÎŊÎą ÎĩÎšĪƒĪŒÎ´ÎŋĪ… ++ ΓίÎŊÎĩĪ„ÎąÎš ÎąÎēĪĪŒÎąĪƒÎˇ ΃Îĩ Ī€ÎŦĪÎą Ī€ÎŋÎģÎģÎ­Ī‚ ĪƒĪ…ĪƒÎēÎĩĪ…Î­Ī‚ ++ ΓίÎŊÎĩĪ„ÎąÎš ΎδΡ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽ ÎąĪ…Ī„ÎŋĪ Ī„ÎŋĪ… Ī€ÎĩĪÎšÎĩ·ÎŋÎŧέÎŊÎŋĪ… ++ Î‘Ī€ÎŋĪƒĪ…ÎŊδέθΡÎēÎĩ ÎąĪ€ĪŒ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ ÎŧÎ­ĪƒĪ‰ÎŊ ++ ΔÎĩÎŊ Ī…Ī€ÎŦ΁·ÎĩΚ ÎēÎŦĪ„Îš ÎŦÎģÎģÎŋ ĪƒĪ„ÎˇÎŊ Îŋ΅΁ÎŦ ++ Î ÎąĪÎŋĪ…ĪƒÎšÎŦĪƒĪ„ÎˇÎēÎĩ ÎēÎŦĪ€ÎŋΚÎŋ Ī€ĪĪŒÎ˛ÎģΡÎŧÎą. ΔÎŋÎēΚÎŧÎŦĪƒĪ„Îĩ ÎąĪÎŗĪŒĪ„ÎĩĪÎą. ++ ΔÎĩÎŊ ÎŽĪ„ÎąÎŊ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎŋÎģÎŋÎēÎģÎŽĪĪ‰ĪƒÎˇ. ΔÎŋÎēΚÎŧÎŦĪƒĪ„Îĩ ΞιÎŊÎŦ. ++ ΔÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎĩÎēĪ„Î­ÎģÎĩĪƒÎˇ Ī„ÎŋĪ… ÎąÎšĪ„ÎŽÎŧÎąĪ„ÎŋĪ‚ ÎąĪ…Ī„ÎŽ Ī„Îˇ ĪƒĪ„ÎšÎŗÎŧÎŽ ++ ÎŖĪ†ÎŦÎģÎŧÎą ÎĩÎšĪƒĪŒÎ´ÎŋĪ…/ÎĩÎžĪŒÎ´ÎŋĪ… ++ ΔÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎģÎŽĪˆÎˇ ÎąĪ…Ī„ÎŋĪ Ī„ÎŋĪ… Ī€ÎĩĪÎšÎĩ·ÎŋÎŧέÎŊÎŋĪ… ÎĩÎ´ĪŽ ++ ΔÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎĩÎēĪ„Î­ÎģÎĩĪƒÎˇ Ī„ÎŋĪ… ÎąÎšĪ„ÎŽÎŧÎąĪ„ÎŋĪ‚ ÎąĪ€ĪŒ ÎąĪ…Ī„ÎŽ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ ++ Î‘Ī…Ī„ĪŒ Ī„Îŋ Ī€ÎĩĪÎšÎĩĪ‡ĪŒÎŧÎĩÎŊÎŋ ÎĩίÎŊιΚ ÎąĪ€ÎŋÎēÎģÎĩÎšĪƒÎŧέÎŊÎŋ ++ ΔÎĩÎŊ ÎĩĪ€ÎšĪ„ĪÎ­Ī€ÎĩĪ„ÎąÎš Ρ Ī€ĪĪŒĪƒÎ˛ÎąĪƒÎˇ ++ Î‘Ī€ÎąÎšĪ„ÎĩÎ¯Ī„ÎąÎš premium Ī€ĪĪŒĪƒÎ˛ÎąĪƒÎˇ ++ Î‘Ī€ÎąÎšĪ„ÎĩÎ¯Ī„ÎąÎš ĪĪÎ¸ÎŧÎšĪƒÎˇ ++ ΔÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ Ī€ÎąĪÎŦβÎģÎĩĪˆÎˇ Ī€ÎĩĪÎšĪƒĪƒĪŒĪ„Îĩ΁ΉÎŊ ÎēÎŋÎŧÎŧÎąĪ„ÎšĪŽÎŊ ++ ΕÎŊÎĩĪÎŗÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ Ī…Ī€ĪŒĪ„ÎšĪ„ÎģΉÎŊ ++ Î‘Ī€ÎĩÎŊÎĩĪÎŗÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ Ī…Ī€ĪŒĪ„ÎšĪ„ÎģΉÎŊ ++ Î“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇ ++ ΠÎģÎŽĪÎˇĪ‚ ÎŋÎ¸ĪŒÎŊΡ ++ ΈΞÎŋδÎŋĪ‚ ÎąĪ€ĪŒ Ī€ÎģÎŽĪÎˇ ÎŋÎ¸ĪŒÎŊΡ ++ Î‘Ī€ĪŒÎē΁. ĪƒĪ„ÎŋÎšĪ‡ÎĩÎ¯Ī‰ÎŊ ÎĩÎģÎ­ÎŗĪ‡ÎŋĪ… ΀΁ÎŋÎŗĪÎŦÎŧÎŧÎąĪ„ÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ ++ Î•Ī€ĪŒÎŧÎĩÎŊÎŋ ++ Î‘Ī€ĪŒÎēĪĪ…ĪˆÎˇ Ī€ĪĪŒĪƒÎ¸Îĩ΄ΉÎŊ ĪĪ…Î¸ÎŧÎ¯ĪƒÎĩΉÎŊ ++ ΕÎŧΆÎŦÎŊÎšĪƒÎˇ Ī€ĪĪŒĪƒÎ¸Îĩ΄ΉÎŊ ĪĪ…Î¸ÎŧÎ¯ĪƒÎĩΉÎŊ ++ Î ÎąĪĪƒÎˇ ++ ΑÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽ ++ Î¤ÎąĪ‡ĪĪ„ÎˇĪ„Îą ++ Î ĪÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋ ++ Î¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: Î•Ī€ÎąÎŊÎŦÎģ. ΌÎģΉÎŊ ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ. ++ Î¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: ΚαÎŧÎ¯Îą ÎĩĪ€ÎąÎŊÎŦÎģ. ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ. ++ Î¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: Î•Ī€ÎąÎŊÎŦÎģ. ÎĩÎŊĪŒĪ‚. ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ. ++ Î•Ī€ÎąÎŊÎąĪ†Îŋ΁ÎŦ ++ Î ĪĪŒÎŋδÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ ++ ÎĄĪ…Î¸ÎŧÎ¯ĪƒÎĩÎšĪ‚ ++ ΕÎŧΆÎŦÎŊ. ĪƒĪ„ÎŋÎšĪ‡ÎĩÎ¯Ī‰ÎŊ ÎĩÎģÎ­ÎŗĪ‡ÎŋĪ… ΀΁ÎŋÎŗĪÎŦÎŧÎŧÎąĪ„ÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ ++ ΕÎŊÎĩĪÎŗÎŋĪ€. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. Ī„Ī…Ī‡ÎąÎ¯ÎąĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ ++ Î‘Ī€ÎĩÎŊÎĩĪÎŗ. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. Ī„Ī…Ī‡ÎąÎ¯ÎąĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ ++ ΔιαÎēÎŋĪ€ÎŽ ++ ΛÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą VR mode ++ Η ÎģÎŽĪˆÎˇ ÎŋÎģÎŋÎēÎģÎˇĪĪŽÎ¸ÎˇÎēÎĩ ++ Î›ÎŽĪˆÎˇ ++ Î›ÎŽĪˆÎˇ ++ Η ÎģÎŽĪˆÎˇ ÎąĪ€Î­Ī„Ī…Ī‡Îĩ ++ Î›ÎŽĪˆÎĩÎšĪ‚ ++ Οι ÎģÎŽĪˆÎĩÎšĪ‚ Ī„Î­Î¸ÎˇÎēÎąÎŊ ΃Îĩ Ī€ÎąĪĪƒÎˇ. ++ Οι ÎģÎŽĪˆÎĩÎšĪ‚ ÎĩίÎŊιΚ ΃Îĩ ÎąÎŊÎąÎŧÎŋÎŊÎŽ ÎŗÎšÎą δίÎē΄΅Îŋ. ++ Οι ÎģÎŽĪˆÎĩÎšĪ‚ ÎĩίÎŊιΚ ΃Îĩ ÎąÎŊÎąÎŧÎŋÎŊÎŽ ÎŗÎšÎą Wi-Fi. ++ ÎšÎąĪ„ÎŦĪÎŗÎˇĪƒÎˇ ÎģÎŽĪˆÎĩΉÎŊ ++ %1$s, %2$s ++ %1$.2f Mbps ++ ΜÎŋÎŊÎŋΆΉÎŊΚÎēΌ ++ %1$d × %2$d ++ ΕÎŊÎąÎģÎģÎąÎēĪ„ÎšÎēΌ ++ ÎĨĪ€ĪŒĪ„ÎšĪ„ÎģÎŋΚ ++ ÎŖĪ‡ÎŋÎģÎšÎąĪƒÎŧĪŒĪ‚ ++ ÎŖĪ…ÎŧĪ€ÎģÎˇĪĪ‰ÎŧÎąĪ„ÎšÎēΌ ++ Î‘Ī…Ī„ĪŒÎŧÎąĪ„Îŋ ++ ΚαÎŊέÎŊÎą ++ Î‰Ī‡ÎŋĪ‚ ++ ÎŖĪ„Îĩ΁ÎĩÎŋΆΉÎŊΚÎēΌ ++ ΠÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚ ++ ΠÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚ 5.1 ++ ΠÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚ 7.1 ++ Î†ÎŗÎŊĪ‰ĪƒĪ„Îŋ ++ Î†ÎŗÎŊĪ‰ĪƒĪ„Îŋ (%1$s) ++ Î•Ī€ÎšÎēÎĩĪ†ÎąÎģÎ¯Î´Îą ++ ΕιÎēΌÎŊÎą ++ ΚÎŋĪ…ÎŧĪ€Î¯, ÎĩΚÎēΌÎŊÎą ++ ÎŖĪÎŊδÎĩ΃ÎŧÎŋĪ‚ ++ Î ÎąĪĪƒÎˇ ++ ΑÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽ ++ ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰ ++ ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą ÎĩÎŧĪ€ĪĪŒĪ‚ ++ ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ ÎĩĪ€ĪŒÎŧÎĩÎŊÎŋ ĪƒĪ„ÎŋÎšĪ‡ÎĩίÎŋ ++ ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ ΀΁ÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋ ĪƒĪ„ÎŋÎšĪ‡ÎĩίÎŋ ++ ΜÎĩÎŊÎŋĪ ++ Î“ĪÎąÎŧÎŧÎŽ ÎŧÎĩÎŊÎŋĪ ++ ÎŖĪ„ÎŋÎšĪ‡ÎĩίÎŋ ÎŧÎĩÎŊÎŋĪ ++ Î“ĪÎąÎŧÎŧÎŽ ΀΁ÎŋĪŒÎ´ÎŋĪ… ++ ΟÎŧÎŦδι ÎēÎŋĪ…ÎŧĪ€ÎšĪŽÎŊ ÎĩĪ€ÎšÎģÎŋÎŗÎŽĪ‚ ++ ÎšÎąĪĪ„Î­ÎģÎą ++ Î“ĪÎąÎŧÎŧÎŽ ÎēĪÎģÎšĪƒÎˇĪ‚ ++ "ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ" ++ ΚÎŋĪ…ÎŧĪ€Î¯ Ī€ÎĩĪÎšĪƒĪ„ĪÎŋĪ†ÎŽĪ‚ ++ ÎąĪ€ÎąĪƒĪ‡ÎŋÎģΡÎŧέÎŊÎŋĪ‚/Ρ ++ ĪƒĪ…ÎŧĪ€Ī„Ī…ÎŗÎŧέÎŊÎŋ ++ δΚÎĩ΅΁΅ÎŧέÎŊÎŋ ++ ĪƒĪ…ÎŊÎ´Ī…ÎąĪƒÎŧĪŒĪ‚ ++ ĪŒĪ‡Îš ++ ÎŊιΚ ++ ÎŧΡ ÎĩĪ€ÎšÎģÎĩÎŗÎŧέÎŊÎą ++ "999+" ++ ÎŖĪÎŊÎŋĪˆÎˇ ++ Î›Î¯ĪƒĪ„Îą ÎēÎąĪĪ„ÎĩÎģĪŽÎŊ ++ Î§ĪÎŋÎŊΌÎŧÎĩ΄΁Îŋ ++ Î“ĪÎąÎŧÎŧÎŽ ÎĩĪÎŗÎąÎģÎĩÎ¯Ī‰ÎŊ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..92e4aee +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ ++ Rewind %d second ++ Rewind %d seconds ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Searchâ€Ļ" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Answer" ++ "Video" ++ "Decline" ++ "Hang up" ++ "Incoming call" ++ "On-going call" ++ "Screening an incoming call" ++ Now playing ++ Sign in to use this app ++ Incorrect input data ++ Listening on too many devices ++ Already playing that content ++ Disconnected from media app ++ Nothing else is queued up ++ Something\'s wrong. Try later. ++ Couldn\'t finish. Try again. ++ Can\'t do that at the moment ++ Input/output error ++ Can\'t get that content here ++ This app can\'t do that ++ That content is blocked ++ Access denied ++ Premium access required ++ Setup required ++ Can\'t skip any more tracks ++ Enable subtitles ++ Disable subtitles ++ Fast-forward ++ Enter fullscreen ++ Exit fullscreen ++ Hide player controls ++ Next ++ Hide additional settings ++ Show additional settings ++ Pause ++ Play ++ Speed ++ Previous ++ Current mode: Repeat all. Toggle repeat mode. ++ Current mode: Repeat none. Toggle repeat mode. ++ Current mode: Repeat one. Toggle repeat mode. ++ Rewind ++ Playback progress ++ Settings ++ Show player controls ++ Enable shuffle mode ++ Disable shuffle mode ++ Stop ++ VR mode ++ Download completed ++ Download ++ Downloading ++ Download failed ++ Downloads ++ Downloads paused ++ Downloads waiting for network ++ Downloads waiting for Wi-Fi ++ Removing downloads ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternative ++ CC ++ Commentary ++ Supplementary ++ Auto ++ None ++ Audio ++ Stereo ++ Surround sound ++ 5.1 surround sound ++ 7.1 surround sound ++ Unknown ++ Unknown (%1$s) ++ Pause ++ Play ++ Rewind ++ Fast forward ++ Forward to next item ++ Rewind to previous item ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..bc83d64 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Searchâ€Ļ" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Answer" ++ "Video" ++ "Decline" ++ "Hang Up" ++ "Incoming call" ++ "Ongoing call" ++ "Screening an incoming call" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..769685a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,140 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ ++ Rewind %d second ++ Rewind %d seconds ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Searchâ€Ļ" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Answer" ++ "Video" ++ "Decline" ++ "Hang up" ++ "Incoming call" ++ "On-going call" ++ "Screening an incoming call" ++ Combo box ++ Now playing ++ Sign in to use this app ++ Incorrect input data ++ Listening on too many devices ++ Already playing that content ++ Disconnected from media app ++ Nothing else is queued up ++ Something\'s wrong. Try later. ++ Couldn\'t finish. Try again. ++ Can\'t do that at the moment ++ Input/output error ++ Can\'t get that content here ++ This app can\'t do that ++ That content is blocked ++ Access denied ++ Premium access required ++ Setup required ++ Can\'t skip any more tracks ++ Enable subtitles ++ Disable subtitles ++ Fast-forward ++ Enter fullscreen ++ Exit fullscreen ++ Hide player controls ++ Next ++ Hide additional settings ++ Show additional settings ++ Pause ++ Play ++ Speed ++ Previous ++ Current mode: Repeat all. Toggle repeat mode. ++ Current mode: Repeat none. Toggle repeat mode. ++ Current mode: Repeat one. Toggle repeat mode. ++ Rewind ++ Playback progress ++ Settings ++ Show player controls ++ Enable shuffle mode ++ Disable shuffle mode ++ Stop ++ VR mode ++ Download completed ++ Download ++ Downloading ++ Download failed ++ Downloads ++ Downloads paused ++ Downloads waiting for network ++ Downloads waiting for Wi-Fi ++ Removing downloads ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternative ++ CC ++ Commentary ++ Supplementary ++ Auto ++ None ++ Audio ++ Stereo ++ Surround sound ++ 5.1 surround sound ++ 7.1 surround sound ++ Unknown ++ Unknown (%1$s) ++ Button, image ++ Pause ++ Play ++ Rewind ++ Fast forward ++ Forward to next item ++ Rewind to previous item ++ Menu bar ++ Menu item ++ Progress bar ++ Radio group ++ Scroll bar ++ "Search" ++ Spin button ++ "999+" ++ Tab list ++ Tool bar ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..92e4aee +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ ++ Rewind %d second ++ Rewind %d seconds ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Searchâ€Ļ" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Answer" ++ "Video" ++ "Decline" ++ "Hang up" ++ "Incoming call" ++ "On-going call" ++ "Screening an incoming call" ++ Now playing ++ Sign in to use this app ++ Incorrect input data ++ Listening on too many devices ++ Already playing that content ++ Disconnected from media app ++ Nothing else is queued up ++ Something\'s wrong. Try later. ++ Couldn\'t finish. Try again. ++ Can\'t do that at the moment ++ Input/output error ++ Can\'t get that content here ++ This app can\'t do that ++ That content is blocked ++ Access denied ++ Premium access required ++ Setup required ++ Can\'t skip any more tracks ++ Enable subtitles ++ Disable subtitles ++ Fast-forward ++ Enter fullscreen ++ Exit fullscreen ++ Hide player controls ++ Next ++ Hide additional settings ++ Show additional settings ++ Pause ++ Play ++ Speed ++ Previous ++ Current mode: Repeat all. Toggle repeat mode. ++ Current mode: Repeat none. Toggle repeat mode. ++ Current mode: Repeat one. Toggle repeat mode. ++ Rewind ++ Playback progress ++ Settings ++ Show player controls ++ Enable shuffle mode ++ Disable shuffle mode ++ Stop ++ VR mode ++ Download completed ++ Download ++ Downloading ++ Download failed ++ Downloads ++ Downloads paused ++ Downloads waiting for network ++ Downloads waiting for Wi-Fi ++ Removing downloads ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternative ++ CC ++ Commentary ++ Supplementary ++ Auto ++ None ++ Audio ++ Stereo ++ Surround sound ++ 5.1 surround sound ++ 7.1 surround sound ++ Unknown ++ Unknown (%1$s) ++ Pause ++ Play ++ Rewind ++ Fast forward ++ Forward to next item ++ Rewind to previous item ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..27a3d53 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,39 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Searchâ€Ļ‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‎‏‎‏‎‎‎Answer‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‏‎‎‏‏‏‎‎‎‏‎‎‎‏‎‏‎‏‎‎‏‏‎‎‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‎‏‏‎‏‎‎‏‎‎‎‎‎‎Video‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‏‎‎‎‏‏‎‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‏‎‎‏‎‎Decline‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‏‎‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‎‏‏‎‏‏‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‏‎‏‏‏‎Hang Up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‎‏‎‎‎‎‏‎‎‎‎‏‎‏‏‎‎‎‏‏‏‎‏‏‎‎‎‏‎‎‎‏‏‎‏‎‎‎‏‎‏‏‎‏‏‏‎Incoming call‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‎‏‏‏‏‏‏‏‎‏‎‎‎‏‎‏‏‎‎‏‏‏‏‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‏‎‎‏‎‏‏‏‏‏‎‎Ongoing call‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎‎‏‎‏‎‏‏‏‏‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎Screening an incoming call‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml +new file mode 100644 +index 0000000..b860671 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml +@@ -0,0 +1,28 @@ ++ ++ ++ Alerta ++ Cuadro combinado ++ Encabezado ++ Imagen ++ BotÃŗn, imagen ++ Enlace ++ MenÃē ++ Barra de menÃē ++ Elemento del menÃē ++ Barra de progreso ++ Grupo de botones de radio ++ PestaÃąa ++ Barra de desplazamiento ++ BotÃŗn de selecciÃŗn ++ ocupado ++ contraído ++ ampliado ++ mezclado ++ desactivado ++ activado ++ sin seleccionar ++ Resumen ++ Lista de pestaÃąas ++ Temporizador ++ Barra de herramientas ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..6667c57 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ Adelantar %d segundo ++ Adelantar %d segundos ++ ++ ++ Retroceder %d segundo ++ Retroceder %d segundos ++ ++ "Navegar a la pÃĄgina principal" ++ "Navegar hacia arriba" ++ "MÃĄs opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "FunciÃŗn+" ++ "Meta+" ++ "MayÃēscula+" ++ "espacio" ++ "Sym+" ++ "MenÃē+" ++ "Buscarâ€Ļ" ++ "Borrar consulta" ++ "BÃēsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "BÃēsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ "Responder" ++ "Video" ++ "Rechazar" ++ "Colgar" ++ "Llamada entrante" ++ "Llamada en curso" ++ "Filtrando una llamada entrante" ++ EstÃĄ sonando ++ Accede para usar esta app ++ Datos de entrada incorrectos ++ Se estÃĄ escuchando contenido en demasiados dispositivos ++ Ya se estÃĄ reproduciendo ese contenido ++ Se desconectÃŗ de la app de mÃēsica ++ No hay mÃĄs contenido en la fila ++ Se produjo un error. Vuelve a intentarlo mÃĄs tarde. ++ No se pudo completar la acciÃŗn. Vuelve a intentarlo. ++ No se puede realizar esa acciÃŗn en este momento ++ Error de entrada/salida ++ No se puede acceder a ese contenido en esta regiÃŗn ++ Esta app no puede realizar esa acciÃŗn ++ Ese contenido estÃĄ bloqueado ++ Acceso denegado ++ Se requiere acceso Premium ++ Se requiere la configuraciÃŗn ++ No se pueden omitir mÃĄs pistas ++ Habilitar subtítulos ++ Inhabilitar subtítulos ++ Avanzar ++ Iniciar pantalla completa ++ Salir de pantalla completa ++ Ocultar controles del reproductor ++ Siguiente ++ Ocultar configuraciÃŗn adicional ++ Mostrar configuraciÃŗn adicional ++ Pausar ++ Reproducir ++ Velocidad ++ Anterior ++ Ahora: rep. todo. Cambia modo. ++ Ahora: no repite. Cambia modo. ++ Ahora: repetir 1. Cambia modo. ++ Retroceder ++ ReproducciÃŗn en curso ++ ConfiguraciÃŗn ++ Mostrar controles del reproductor ++ Habilitar reproducciÃŗn aleatoria ++ Inhabilitar reproducciÃŗn aleatoria ++ Detener ++ Modo RV ++ Se completÃŗ la descarga ++ Descargar ++ Descargando ++ No se pudo descargar ++ Descargas ++ Se pausaron las descargas ++ Esperando red para descargas ++ Esperando Wi-Fi para descargas ++ Quitando descargas ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativa ++ CC ++ Comentarios ++ Complementaria ++ AutomÃĄtica ++ Ninguna ++ Audio ++ EstÊreo ++ Sonido envolvente ++ Sonido envolvente 5.1 ++ Sonido envolvente 7.1 ++ Desconocido ++ Desconocido (%1$s) ++ Pausar ++ Reproducir ++ Retroceder ++ Avanzar ++ Saltar al siguiente elemento ++ Saltar al elemento anterior ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..ef4eda0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Avanzar %d segundo ++ Avanzar %d segundos ++ ++ ++ Retroceder %d segundo ++ Retroceder %d segundos ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "MÃĄs opciones" ++ "Hecho" ++ "Ver todo" ++ "Seleccionar una aplicaciÃŗn" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "FunciÃŗn +" ++ "Meta +" ++ "MayÃēs +" ++ "Espacio" ++ "Sym +" ++ "MenÃē +" ++ "Buscarâ€Ļ" ++ "Borrar consulta" ++ "Consulta de bÃēsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "BÃēsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ Alerta ++ "Responder" ++ "Vídeo" ++ "Rechazar" ++ "Colgar" ++ "Llamada entrante" ++ "Llamada en curso" ++ "Filtrando una llamada entrante" ++ Cuadro combinado ++ EstÃĄ sonando ++ Inicia sesiÃŗn para usar esta aplicaciÃŗn ++ Datos de entrada incorrectos ++ Se estÃĄ escuchando en demasiados dispositivos ++ Ya se estÃĄ reproduciendo ese contenido ++ Desconectado de la aplicaciÃŗn multimedia ++ No hay nada mÃĄs en la cola ++ Se ha producido un error. IntÊntalo mÃĄs tarde. ++ No se ha podido finalizar. IntÊntalo de nuevo. ++ No se puede hacer en estos momentos ++ Error de entrada/salida ++ No se puede reproducir ese contenido en esta ubicaciÃŗn ++ Esta aplicaciÃŗn no puede hacer eso ++ Ese contenido estÃĄ bloqueado ++ Acceso denegado ++ Se necesita acceso premium ++ ConfiguraciÃŗn necesaria ++ No se pueden saltar mÃĄs pistas ++ Habilitar subtítulos ++ Inhabilitar subtítulos ++ Avanzar rÃĄpidamente ++ Activar pantalla completa ++ Salir de pantalla completa ++ Ocultar controles de jugador ++ Siguiente ++ Ocultar ajustes adicionales ++ Mostrar ajustes adicionales ++ Pausar ++ Reproducir ++ Velocidad ++ Anterior ++ Modo actual: Repetir todo. Cambiar de modo. ++ Modo actual: No repetir. Cambiar de modo. ++ Modo actual: Repetir uno. Cambiar de modo. ++ Rebobinar ++ Progreso de reproducciÃŗn ++ Ajustes ++ Mostrar controles del reproductor ++ Habilitar modo aleatorio ++ Inhabilitar modo aleatorio ++ Detener ++ Modo RV ++ Descarga de archivos completado ++ Descargar ++ Descargando ++ No se ha podido descargar ++ Descargas ++ Descargas pausadas ++ Descargas en espera de red ++ Descargas en espera de Wi-Fi ++ Quitando descargas ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d×%2$d ++ Alternativa ++ CC ++ Comentarios ++ Complementaria ++ AutomÃĄtico ++ Ninguna ++ Audio ++ EstÊreo ++ Sonido envolvente ++ Sonido envolvente 5.1 ++ Sonido envolvente 7.1 ++ Desconocido ++ Desconocido (%1$s) ++ Encabezado ++ Imagen ++ BotÃŗn, imagen ++ Enlace ++ Pausar ++ Reproducir ++ Volver ++ Avanzar ++ Ir al elemento siguiente ++ Ir al elemento anterior ++ MenÃē ++ Barra de menÃēs ++ Elemento de menÃē ++ Barra de progreso ++ Grupo de botones de opciÃŗn ++ PestaÃąa ++ Barra de desplazamiento ++ "Buscar" ++ BotÃŗn de nÃēmero ++ ocupado ++ contraído ++ expandido ++ mixto ++ desactivado ++ activado ++ no seleccionado ++ "999+" ++ Resumen ++ Lista de pestaÃąas ++ Temporizador ++ Barra de herramientas ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..cd955fb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,154 @@ ++ ++ ++ ++ 0,25-kordne ++ 0,5-kordne ++ 0,75-kordne ++ Tavaline ++ 1,25-kordne ++ 1,5-kordne ++ 2-kordne ++ ++ ++ Keri %d sekund edasi ++ Keri %d sekundit edasi ++ ++ ++ Keri %d sekund tagasi ++ Keri %d sekundit tagasi ++ ++ "Liigu avalehele" ++ "Liigu Ãŧles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kÃĩik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "TÃĩstuklahv +" ++ "tÃŧhik" ++ "Sym +" ++ "MenÃŧÃŧ +" ++ "Otsige â€Ļ" ++ "Päringu tÃŧhistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ Hoiatus ++ "Vasta" ++ "Video" ++ "Keeldu" ++ "LÃĩpeta kÃĩne" ++ "Sissetulev kÃĩne" ++ "Käimasolev kÃĩne" ++ "Sissetuleva kÃĩne filtreerimine" ++ Liitboks ++ Hetkel mängimas ++ Selle rakenduse kasutamiseks logige sisse ++ Valed sisendandmed ++ Kuulatakse liiga paljudes seadmetes ++ Seda sisu juba esitatakse ++ Ühendus meediarakendusega on katkestatud ++ Midagi muud pole järjekorras ++ Midagi on valesti. Proovige hiljem. ++ Ei saanud lÃĩpetada. Proovige uuesti. ++ Seda ei saa praegu teha ++ Sisendi/väljundi viga ++ Seda sisu ei saa siin esitada ++ See rakendus ei saa seda teha ++ See sisu on blokeeritud ++ Juurdepääs keelatud ++ Vaja on Premium-tasemel juurdepääsu ++ Seadistamine on nÃĩutav ++ Rohkem lugusid ei saa vahele jätta ++ Luba subtiitrid ++ Keela subtiitrid ++ Keri edasi ++ Avamine täisekraanil ++ Väljumine täisekraanilt ++ Peida pleieri juhtnupud ++ Edasi ++ Peida lisaseaded ++ Kuva lisaseaded ++ Peata ++ Esita ++ Kiirus ++ Eelmine ++ Praegune reÅžiim: Korda kÃĩiki. Aktiveerige kordusreÅžiim. ++ Praegune reÅžiim: Ära korda. Aktiveerige kordusreÅžiim. ++ Praegune reÅžiim: Korda Ãŧhte. Aktiveerige kordusreÅžiim. ++ Keri tagasi ++ Taasesitus on pooleli ++ Seaded ++ Kuva pleieri juhtnupud ++ Juhuesituse reÅžiimi lubamine ++ Juhuesituse reÅžiimi keelamine ++ LÃĩpeta ++ VR-reÅžiim ++ Allalaadimine lÃĩpetati ++ Allalaadimine ++ Allalaadimine ++ Allalaadimine ebaÃĩnnestus ++ Allalaadimised ++ Allalaadimised peatati ++ Allalaadimised on vÃĩrgu ootel ++ Allalaadimised on WiFi-vÃĩrgu ootel ++ Allalaadimiste eemaldamine ++ %1$s, %2$s ++ %1$.2f Mbit/s ++ Mono ++ %1$d × %2$d ++ Alternatiiv ++ Subtiitrid ++ Kommentaar ++ Lisalugu ++ Automaatne ++ Ühtegi ++ Heli ++ Stereo ++ Ruumiline heli ++ Ruumiline heli 5.1 ++ Ruumiline heli 7.1 ++ Teadmata ++ Teadmata (%1$s) ++ Pealkiri ++ Pilt ++ Nupp, pilt ++ Peatamine ++ Esitamine ++ Tagasikerimine ++ Edasikerimine ++ Järgmise Ãŧksuse juurde liikumine ++ Eelmise Ãŧksuse juurde liikumine ++ MenÃŧÃŧ ++ MenÃŧÃŧriba ++ MenÃŧÃŧ-Ãŧksus ++ Edenemisriba ++ Raadionuppude grupp ++ Vahekaart ++ Kerimisriba ++ "Otsing" ++ PÃļÃļramisnupp ++ hÃĩivatud ++ ahendatud ++ laiendatud ++ miksitud ++ väljas ++ sees ++ valimata ++ "999+" ++ KokkuvÃĩte ++ Vahekaartide loend ++ Taimer ++ TÃļÃļriistariba ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..b70e938 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0,25× ++ 0,5× ++ 0,75× ++ Normala ++ 1,25× ++ 1,5× ++ 2× ++ ++ ++ Aurreratu %d segundo ++ Aurreratu %d segundo ++ ++ ++ Atzeratu %d segundo ++ Atzeratu %d segundo ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatuâ€Ļ" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ "Erantzun" ++ "Bideoa" ++ "Baztertu" ++ "Amaitu deia" ++ "Sarrerako deia" ++ "Deia abian da" ++ "Sarrerako dei bat bistaratzen" ++ Orain erreproduzitzen ++ Aplikazioa erabiltzeko, hasi saioa ++ Emandako informazioa ez da zuzena ++ Gailu gehiegitatik jasotzen ari da soinua ++ Dagoeneko ari da erreproduzitzen eduki hori ++ Multimedia-aplikaziotik deskonektatu da ++ Ez dago beste ezer ilaran ++ Arazoren bat izan da. Saiatu geroago. ++ Ezin izan da amaitu ekintza. Saiatu berriro. ++ Ezin da egin halakorik une honetan ++ Emandako informazioaren edo emaitzaren errorea ++ Ezin da eskuratu eduki hori lurralde honetan ++ Aplikazio honek ezin du egin halakorik ++ Eduki hori blokeatuta dago ++ Sarbidea ukatu da ++ Premium-eko sarbidea behar da ++ Konfiguratu egin behar da ++ Ezin da saltatu pista gehiagorik ++ Gaitu azpitituluak ++ Desgaitu azpitituluak ++ Aurreratu ++ Erreproduzitu pantaila osoan ++ Irten pantaila osotik ++ Ezkutatu erreproduzigailua kontrolatzeko aukerak ++ Hurrengoa ++ Ezkutatu ezarpen gehigarriak ++ Erakutsi ezarpen gehigarriak ++ Pausatu ++ Erreproduzitu ++ Abiadura ++ Aurrekoa ++ Oraingo modua: errepikatu guztiak. Aldatu errepikatzeko modua. ++ Oraingo modua: ez errepikatu. Aldatu errepikatzeko modua. ++ Oraingo modua: errepikatu bat. Aldatu errepikatzeko modua. ++ Atzeratu ++ Erreprodukzioaren garapena ++ Ezarpenak ++ Erakutsi erreproduzigailua kontrolatzeko aukerak ++ Gaitu ausaz erreproduzitzeko modua ++ Desgaitu ausaz erreproduzitzeko modua ++ Gelditu ++ EBko modua ++ Osatu da deskarga ++ Deskargak ++ Deskargatzen ++ Ezin izan da deskargatu ++ Deskargak ++ Deskargak pausatuta daude ++ Deskargak sare mugikorrera konektatzeko zain daude ++ Deskargak wifira konektatzeko zain daude ++ Deskargak kentzen ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Monoa ++ %1$d × %2$d ++ Ordezkoa ++ Azpitituluak ++ Iruzkinak ++ Osagarria ++ Automatikoa ++ Bat ere ez ++ Audioa ++ Estereoa ++ Soinu inguratzailea ++ 5.1 soinu inguratzailea ++ 7.1 soinu inguratzailea ++ Ezezaguna ++ Ezezaguna (%1$s) ++ Pausatu ++ Erreproduzitu ++ Atzeratu ++ Aurreratu ++ Joan hurrengo elementura ++ Joan aurreko elementura ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..c7897ea +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ Û°ŲĢÛ˛Ûĩ Ø¨ØąØ§Ø¨Øą ++ Û°ŲĢÛĩ Ø¨ØąØ§Ø¨Øą ++ Û°ŲĢÛˇÛĩ Ø¨ØąØ§Ø¨Øą ++ ؚادی ++ ÛąŲĢÛ˛Ûĩ Ø¨ØąØ§Ø¨Øą ++ ÛąŲĢÛĩ Ø¨ØąØ§Ø¨Øą ++ Û˛ Ø¨ØąØ§Ø¨Øą ++ ++ ++ %d ØĢØ§Ų†ÛŒŲ‡ ØŗØąÛŒØš Ø¨Ų‡â€ŒØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ++ %d ØĢØ§Ų†ÛŒŲ‡ ØŗØąÛŒØš Ø¨Ų‡â€ŒØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ++ ++ ++ %d ØĢØ§Ų†ÛŒŲ‡ Ø¨Ų‡â€ŒØšŲ‚Ø¨ Ø¨ØąØ¯Ų† ++ %d ØĢØ§Ų†ÛŒŲ‡ Ø¨Ų‡â€ŒØšŲ‚Ø¨ Ø¨ØąØ¯Ų† ++ ++ "ŲžÛŒŲ…Ø§ÛŒØ´ Ø¨Ų‡ ØĩŲØ­Ų‡ اØĩŲ„ÛŒ" ++ "ØąŲØĒŲ† Ø¨Ų‡ Ø¨Ø§Ų„Ø§" ++ "Ú¯Ø˛ÛŒŲ†Ų‡â€ŒŲ‡Ø§ÛŒ بیشØĒØą" ++ "ØĒŲ…Ø§Ų…" ++ "Ø¯ÛŒØ¯Ų† Ų‡Ų…Ų‡" ++ "Ø§Ų†ØĒ؎اب Ø¨ØąŲ†Ø§Ų…Ų‡" ++ "ØŽØ§Ų…ŲˆØ´" ++ "ØąŲˆØ´Ų†" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "Ø­Ø°Ų" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "ŲØ§ØĩŲ„Ų‡" ++ "‎Sym+‎" ++ "Ų…Ų†Ųˆ+" ++ "ØŦØŗØĒØŦ؈â€Ļ‏" ++ "ŲžØ§ÚŠ ÚŠØąØ¯Ų† ŲžŲØąØŗŲ…Ø§Ų†" ++ "Ø¯ØąØŽŲˆØ§ØŗØĒ ØŦØŗØĒØŦ؈" ++ "ØŦØŗØĒØŦ؈" ++ "Ø§ØąØŗØ§Ų„ ŲžŲØąØŗŲ…Ø§Ų†" ++ "ØŦØŗØĒØŦŲˆÛŒ Ú¯ŲØĒØ§ØąÛŒ" ++ "Ų‡Ų…â€ŒØąØŗØ§Ų†ÛŒ با" ++ "Ų‡Ų…â€ŒØąØŗØ§Ų†ÛŒ با %s" ++ "ÚŠŲˆÚ†ÚŠ ÚŠØąØ¯Ų†" ++ Ų‡Ø´Ø¯Ø§Øą ++ "ŲžØ§ØŗØŽ Ø¯Ø§Ø¯Ų†" ++ "ŲˆÛŒØ¯ÛŒŲˆ" ++ "ØąØ¯ ÚŠØąØ¯Ų†" ++ "Ų‚ØˇØš ØĒŲ…Ø§Øŗ" ++ "ØĒŲ…Ø§Øŗ ŲˆØąŲˆØ¯ÛŒ" ++ "ØĒŲ…Ø§Øŗ Ø¯ØąØ­Ø§Ų„ Ø§Ų†ØŦØ§Ų…" ++ "Ø¯ØąØ­Ø§Ų„ ØēØąØ¨Ø§Ų„ ÚŠØąØ¯Ų† ØĒŲ…Ø§Øŗ ŲˆØąŲˆØ¯ÛŒ" ++ ØŦØšØ¨Ų‡ Ú¯ŲØĒÚ¯Ųˆ ++ Ø¯ØąØ­Ø§Ų„ ŲžØŽØ´ ++ Ø¨ØąØ§ÛŒ Ø§ØŗØĒŲØ§Ø¯Ų‡ Ø§Ø˛ Ø§ÛŒŲ† Ø¨ØąŲ†Ø§Ų…Ų‡ØŒ Ø¨Ų‡ ØŗÛŒØŗØĒŲ… ŲˆØ§ØąØ¯ Ø´ŲˆÛŒØ¯ ++ Ø¯Ø§Ø¯Ų‡â€ŒŲ‡Ø§ÛŒ ŲˆØąŲˆØ¯ÛŒ Ų†Ø§Ø¯ØąØŗØĒ Ø§ØŗØĒ ++ Ø¯ØąØ­Ø§Ų„ Ú¯ŲˆØ´ ÚŠØąØ¯Ų† Ø¨Ų‡ ØĒؚداد Ø˛ÛŒØ§Ø¯ÛŒ Ø¯ØŗØĒÚ¯Ø§Ų‡ ++ Ø§ÛŒŲ† Ų…Ø­ØĒŲˆØ§ Ø§Ø˛Ų‚Ø¨Ų„ Ø¯ØąØ­Ø§Ų„ ŲžØŽØ´ Ø§ØŗØĒ ++ اØĒØĩØ§Ų„ Ø§Ø˛ Ø¨ØąŲ†Ø§Ų…Ų‡ ØąØŗØ§Ų†Ų‡ Ų‚ØˇØš شد ++ Ų‡ÛŒÚ† Ų…ŲˆØąØ¯ Ø¯ÛŒÚ¯ØąÛŒ Ø¯Øą Øĩ؁ ŲžØŽØ´ Ų†ÛŒØŗØĒ ++ Ų…Ø´ÚŠŲ„ÛŒ ØąØŽ داد. Ø¨ØšØ¯Ø§Ų‹ Ø§Ų…ØĒØ­Ø§Ų† ÚŠŲ†ÛŒØ¯. ++ ØĒÚŠŲ…ÛŒŲ„ Ų†Ø´Ø¯. Ø¯ŲˆØ¨Ø§ØąŲ‡ Ø§Ų…ØĒØ­Ø§Ų† ÚŠŲ†ÛŒØ¯. ++ Ø¯ØąØ­Ø§Ų„â€ŒØ­Ø§ØļØą Ø§Ų†ØŦØ§Ų… Ų†Ų…ÛŒâ€ŒØ´ŲˆØ¯ ++ ØŽØˇØ§ Ø¯Øą ŲˆØąŲˆØ¯ÛŒ/ ØŽØąŲˆØŦی ++ Ų†Ų…ÛŒâ€ŒØĒŲˆØ§Ų† Ø§ÛŒŲ† Ų…Ø­ØĒŲˆØ§ ØąØ§ Ø¯Øą Ø§ÛŒŲ†ØŦا Ø¯ØąÛŒØ§ŲØĒ ÚŠØąØ¯ ++ Ø§ÛŒŲ† Ø¨ØąŲ†Ø§Ų…Ų‡ Ų†Ų…ÛŒâ€ŒØĒŲˆØ§Ų†Ø¯ Ø§ÛŒŲ† ÚŠØ§Øą ØąØ§ Ø§Ų†ØŦØ§Ų… Ø¯Ų‡Ø¯ ++ Ø§ÛŒŲ† Ų…Ø­ØĒŲˆØ§ Ų…ØŗØ¯ŲˆØ¯ Ø´Ø¯Ų‡ Ø§ØŗØĒ ++ Ø¯ØŗØĒØąØŗÛŒ ØąØ¯ شد ++ Ø¯ØŗØĒØąØŗÛŒ Ų…Ų…ØĒØ§Ø˛ Ų„Ø§Ø˛Ų… Ø§ØŗØĒ ++ Ų„Ø§Ø˛Ų… Ø§ØŗØĒ ØąØ§Ų‡â€ŒØ§Ų†Ø¯Ø§Ø˛ÛŒ ÚŠŲ†ÛŒØ¯ ++ Ø§Ø˛ Ų‡ÛŒÚ† ØĸŲ‡Ų†Ú¯ Ø¯ÛŒÚ¯ØąÛŒ Ų†Ų…ÛŒâ€ŒØĒŲˆØ§Ų† ØąØ¯ شد ++ ŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø˛ÛŒØąŲ†ŲˆÛŒØŗ ++ ØēÛŒØąŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø˛ÛŒØąŲ†ŲˆÛŒØŗ ++ ØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ØŗØąÛŒØš ++ ŲˆØąŲˆØ¯ Ø¨Ų‡ Ø­Ø§Ų„ØĒ ØĒŲ…Ø§Ų…â€ŒØĩŲØ­Ų‡ ++ ØŽØąŲˆØŦ Ø§Ø˛ Ø­Ø§Ų„ØĒ ØĒŲ…Ø§Ų…â€ŒØĩŲØ­Ų‡ ++ ŲžŲ†Ų‡Ø§Ų† ÚŠØąØ¯Ų† ÚŠŲ†ØĒØąŲ„â€ŒŲ‡Ø§ÛŒ ŲžØŽØ´â€ŒÚŠŲ†Ų†Ø¯Ų‡ ++ بؚدی ++ ŲžŲ†Ų‡Ø§Ų† ÚŠØąØ¯Ų† ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒ اØļØ§ŲÛŒ ++ Ų†Ų…Ø§ÛŒØ´ ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒ اØļØ§ŲÛŒ ++ Ų…ÚŠØĢ ++ ŲžØŽØ´ ++ ØŗØąØšØĒ ++ Ų‚Ø¨Ų„ÛŒ ++ Ø­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą Ų‡Ų…Ų‡. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą. ++ Ø­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą Ų‡ÛŒÚ†â€ŒÚŠØ¯Ø§Ų…. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą. ++ Ø­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą یڊ Ų…ŲˆØąØ¯. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą. ++ ØšŲ‚Ø¨ Ø¨ØąØ¯Ų† ++ ŲžÛŒØ´ØąŲØĒ Ø¨Ø§Ø˛ŲžØŽØ´ ++ ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒ ++ Ų†Ų…Ø§ÛŒØ´ ÚŠŲ†ØĒØąŲ„â€ŒŲ‡Ø§ÛŒ ŲžØŽØ´â€ŒÚŠŲ†Ų†Ø¯Ų‡ ++ ŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ Ø¯ØąŲ‡Ų… ++ ØēÛŒØąŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ Ø¯ØąŲ‡Ų… ++ ØĒŲˆŲ‚Ų ++ Ø­Ø§Ų„ØĒ ŲˆØ§Ų‚ØšÛŒØĒ Ų…ØŦØ§Ø˛ÛŒ ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒ ÚŠØ§Ų…Ų„ شد ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒ ++ Ø¯ØąØ­Ø§Ų„ Ø¨Ø§ØąÚ¯ÛŒØąÛŒ ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒ Ų†Ø´Ø¯ ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ų…ŲˆŲ‚ØĒØ§Ų‹ Ų…ØĒŲˆŲ‚Ų شد ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ø¯ØąØ§Ų†ØĒØ¸Ø§Øą Ø´Ø¨ÚŠŲ‡ Ø§ØŗØĒ ++ Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ø¯Øą Ø§Ų†ØĒØ¸Ø§Øą Wi-Fi Ø§ØŗØĒ ++ Ø­Ø°Ų Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ ++ %1$s،‏ %2$s ++ %1$.2f Ų…Ú¯Ø§Ø¨ÛŒØĒ Ø¯Øą ØĢØ§Ų†ÛŒŲ‡ ++ Ų…ŲˆŲ†Ųˆ ++ %1$d × %2$d ++ Ø¨Ø¯ÛŒŲ„ ++ Ø˛ÛŒØąŲ†ŲˆÛŒØŗ Ų†Ø§Ø´Ų†ŲˆØ§ÛŒØ§Ų† ++ Ø´ØąØ­ ؈ Ų†Ų‚Ø¯ ++ ØĒÚŠŲ…ÛŒŲ„ÛŒ ++ ØŽŲˆØ¯ÚŠØ§Øą ++ Ų‡ÛŒÚ†â€ŒÚŠØ¯Ø§Ų… ++ Øĩ؈ØĒی ++ Ø§ØŗØĒØąÛŒŲˆ ++ Øĩدای ŲØąØ§Ú¯ÛŒØą ++ Øĩدای ŲØąØ§Ú¯ÛŒØą Ûĩ.Ûą ++ Øĩدای ŲØąØ§Ú¯ÛŒØą ÛˇŲĢÛą ++ Ų†Ø§Ų…Ø´ØŽØĩ ++ Ų†Ø§Ø´Ų†Ø§Øŗ (%1$s) ++ ØŗØąâ€ŒØĩŲØ­Ų‡ ++ ØĒØĩŲˆÛŒØą ++ Ø¯ÚŠŲ…Ų‡ØŒ ØĒØĩŲˆÛŒØą ++ ŲžÛŒŲˆŲ†Ø¯ ++ Ų…ÚŠØĢ ++ ŲžØŽØ´ ++ ØąŲØĒŲ† Ø¨Ų‡ ØšŲ‚Ø¨ ++ ØąŲØĒŲ† Ø¨Ų‡ ØŦŲ„Ųˆ ++ ØąŲØĒŲ† Ø¨Ų‡ Ų…ŲˆØąØ¯ بؚدی ++ ØąŲØĒŲ† Ø¨Ų‡ Ų…ŲˆØąØ¯ Ų‚Ø¨Ų„ÛŒ ++ Ų…Ų†Ųˆ ++ Ų†ŲˆØ§Øą Ų…Ų†Ųˆ ++ Ų…ŲˆØąØ¯ Ų…Ų†Ųˆ ++ Ų†ŲˆØ§Øą ŲžÛŒØ´ØąŲØĒ ++ Ú¯ØąŲˆŲ‡ ØąØ§Ø¯ÛŒŲˆÛŒÛŒ ++ Ø¨ØąÚ¯Ų‡ ++ Ų†ŲˆØ§Øą ŲžÛŒŲ…Ø§ÛŒØ´ ++ "ØŦØŗØĒØŦ؈" ++ Ø¯ÚŠŲ…Ų‡ Ú†ØąØŽØ´ ++ Ų…Ø´ØēŲˆŲ„ ++ ÚŠŲˆÚ†ÚŠâ€ŒØ´Ø¯Ų‡ ++ Ø¨Ø˛ØąÚ¯â€ŒØ´Ø¯Ų‡ ++ ØĒØąÚŠÛŒØ¨â€ŒØ´Ø¯Ų‡ ++ ØŽØ§Ų…ŲˆØ´ ++ ØąŲˆØ´Ų† ++ Ų„Øē؈ Ø§Ų†ØĒ؎اب شد ++ "999+" ++ ØŽŲ„Ø§ØĩŲ‡ ++ ŲŲ‡ØąØŗØĒ Ø¨ØąÚ¯Ų‡ ++ Ø˛Ų…Ø§Ų†â€ŒØŗŲ†ØŦ ++ Ų†ŲˆØ§Øą Ø§Ø¨Ø˛Ø§Øą ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..bc1566e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normaali ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Siirry eteenpäin %d sekunti ++ Siirry eteenpäin %d sekuntia ++ ++ ++ Siirry taaksepäin %d sekunti ++ Siirry taaksepäin %d sekuntia ++ ++ "Siirry etusivulle" ++ "Siirry ylÃļs" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyÃļnti" ++ "Sym+" ++ "Valikko+" ++ "Hakuâ€Ļ" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaaâ€Ļ" ++ "Jaa: %s" ++ "Tiivistä" ++ Hälytys ++ "Vastaa" ++ "Video" ++ "Hylkää" ++ "Lopeta puhelu" ++ "Saapuva puhelu" ++ "Käynnissä oleva puhelu" ++ "Seulotaan saapuvaa puhelua" ++ Yhdistelmäruutu ++ Nyt toistetaan ++ Kirjaudu sisään käyttääksesi tätä sovellusta ++ Virheellinen syÃļtedata ++ Kuuntelu käynnissä liian monella laitteella ++ SisältÃļä toistetaan jo ++ Yhteys katkaistu mediasovelluksesta ++ Ei muuta jonossa ++ Jotain meni pieleen. Yritä myÃļhemmin. ++ Ei onnistunut. Yritä uudelleen. ++ Tämä ei juuri nyt onnistu ++ SyÃļte‑ tai tuotosvirhe ++ SisältÃļ ei ole saatavilla täällä ++ Sovellus ei tue pyyntÃļä ++ Tämä sisältÃļ on estetty ++ Pääsy estetty ++ Edellyttää premium-tilausta ++ KäyttÃļÃļnottoa vaaditaan ++ Enimmäismäärä kappaleita ohitettu ++ Ota tekstitykset käyttÃļÃļn ++ Poista tekstitykset käytÃļstä ++ Kelaa eteenpäin ++ Siirry koko näytÃļn tilaan ++ Sulje koko näytÃļn tila ++ Näytä soittimen säätimet ++ Seuraava ++ Piilota lisäasetukset ++ Näytä lisäasetukset ++ Keskeytä ++ Toista ++ Nopeus ++ Edellinen ++ Tila: Toista kaikki. Vaihda. ++ Tila: Älä toista. Vaihda. ++ Tila: Toista yksi. Vaihda. ++ Kelaa taaksepäin ++ Toiston edistyminen ++ Asetukset ++ Näytä soittimen säätimet ++ Ota satunnaistoisto käyttÃļÃļn ++ Poista satunnaistoisto käytÃļstä ++ Lopeta ++ VR-tila ++ Lataus valmis ++ Lataa ++ Ladataan ++ Lataus epäonnistui ++ Lataukset ++ Lataukset keskeytetty ++ Lataukse odottavat verkkoyhteyttä ++ Lataukset odottavat Wi-Fi-yhteyttä ++ Poistetaan latauksia ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d × %2$d ++ Vaihtoehtoinen ++ Tekstitykset ++ Kommenttiraita ++ Lisämateriaali ++ Automaattinen ++ – ++ Ääni ++ Stereo ++ Surround-ääni ++ 5.1-surround-ääni ++ 7.1-surround-ääni ++ Tuntematon ++ Tuntematon (%1$s) ++ Otsikko ++ Kuva ++ Painike, kuva ++ Linkki ++ Keskeytä ++ Toista ++ Siirry taaksepäin ++ Siirry eteenpäin ++ Siirry seuraavaan ++ Siirry edelliseen ++ Valikko ++ Valikkopalkki ++ Valikkokohde ++ Edistymispalkki ++ Valintanappiryhmä ++ Välilehti ++ Vierityspalkki ++ "Haku" ++ PyÃļrityspainike ++ varattu ++ pienennetty ++ laajennettu ++ yhdistetty ++ ei käytÃļssä ++ käytÃļssä ++ ei valittu ++ "999+" ++ Yhteenveto ++ Välilehtilista ++ Ajastin ++ TyÃļkalupalkki ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..e2713c8 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,153 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Avancer rapidement de %d seconde ++ Avancer rapidement de %d secondes ++ ++ ++ Reculer de %d seconde ++ Reculer de %d secondes ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "TerminÊ" ++ "Tout afficher" ++ "SÊlectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrÊe" ++ "Fonction+" ++ "MÊta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercherâ€Ļ" ++ "Effacer la requÃĒte" ++ "RequÃĒte de recherche" ++ "Rechercher" ++ "Envoyer la requÃĒte" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "RÊduire" ++ Alerte ++ "RÊpondre" ++ "VidÊo" ++ "Refuser" ++ "Raccrocher" ++ "Appel entrant" ++ "Appel en cours" ++ "Filtrer un appel entrant" ++ Zone combinÊe ++ En cours de lecture ++ Connectez-vous pour utiliser cette appli ++ DonnÊes d\'entrÊe incorrectes ++ Écoute en cours sur trop d\'appareils ++ Ce contenu est dÊjà en cours de lecture ++ DÊconnectÊ de l\'appli multimÊdia ++ Rien d\'autre n\'est dans la file d\'attente ++ Une erreur s\'est produite. RÊessayez plus tard. ++ Impossible de terminer l\'action. RÊessayez. ++ Impossible d\'effectuer cette action pour le moment ++ Erreur d\'entrÊe/de sortie ++ Impossible d\'obtenir ce contenu ici ++ Cette appli ne peut pas effectuer cette action ++ Ce contenu est bloquÊ ++ Accès refusÊ ++ Accès Premium requis ++ Configuration requise ++ Impossible de passer à d\'autres chansons ++ Activer les sous-titres ++ DÊsactiver les sous-titres ++ Avance rapide ++ Activez le mode plein Êcran ++ Quittez le mode plein Êcran ++ Masquer les commandes du lecteur ++ Suivant ++ Masquer les autres paramètres ++ Afficher d\'autres paramètres ++ Pause ++ Lire ++ Vitesse ++ PrÊcÊdent ++ Mode actuel : tout rÊpÊter. Basculer le mode rÊpÊtition. ++ Mode actuel : aucune rÊpÊtition. Basculer le mode rÊpÊtition. ++ Mode actuel : rÊpÊter une fois. Basculer le mode rÊpÊtition. ++ Retour arrière ++ Progression de la lecture ++ Paramètres ++ Afficher les commandes du lecteur ++ Activer le mode lecture alÊatoire ++ DÊsactiver le mode lecture alÊatoire ++ ArrÃĒter ++ Mode RV ++ TÊlÊchargement terminÊ ++ TÊlÊcharger ++ TÊlÊchargement en coursâ€Ļ ++ Échec du tÊlÊchargement ++ TÊlÊchargements ++ TÊlÊchargements interrompus ++ TÊlÊchargements en attente du rÊseau ++ TÊlÊchargements en attente du Wi-Fi ++ Suppression des tÊlÊchargements en coursâ€Ļ ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d × %2$d ++ Autre version ++ Sous-titres codÊs ++ Commentaires ++ SupplÊmentaire ++ Auto ++ Aucun ++ Audio ++ StÊrÊo ++ Son ambiophonique ++ Son ambiophonique 5.1 ++ Son ambiophonique 7.1 ++ Inconnu ++ Inconnu (%1$s) ++ Titre ++ Bouton, image ++ Lien ++ Pause ++ Lire ++ Rechercher vers l\'arrière ++ Rechercher vers l\'avant ++ Rechercher vers l\'ÊlÊment suivant ++ Rechercher vers l\'ÊlÊment prÊcÊdent ++ Barre de menu ++ Option de menu ++ Barre de progression ++ Groupe de boutons radio ++ Onglet ++ Barre de dÊroulement ++ "Rechercher" ++ Bouton compteur circulaire ++ en cours de traitement ++ rÊduit ++ agrandi ++ à double Êtat ++ dÊsactivÊ ++ activÊ ++ dÊsÊlectionnÊ ++ "999+" ++ RÊsumÊ ++ Liste des onglets ++ Minuterie ++ Barre d’outils ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..d506d72 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,153 @@ ++ ++ ++ ++ x 0,25 ++ x 0,5 ++ x 0,75 ++ Normal ++ x 1,25 ++ x 1,5 ++ x 2 ++ ++ ++ Avancer de %d seconde ++ Avancer de %d secondes ++ ++ ++ Revenir en arrière de %d seconde ++ Revenir en arrière de %d secondes ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "SÊlectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrÊe" ++ "Fonction+" ++ "MÊta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercherâ€Ļ" ++ "Effacer la requÃĒte" ++ "RequÃĒte de recherche" ++ "Rechercher" ++ "Envoyer la requÃĒte" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "RÊduire" ++ Alerte ++ "RÊpondre" ++ "VidÊo" ++ "Refuser" ++ "Raccrocher" ++ "Appel entrant" ++ "Appel en cours" ++ "Filtrage d\'un appel entrant" ++ Liste dÊroulante ++ En cours de lecture ++ Connectez-vous pour utiliser cette appli ++ DonnÊes d\'entrÊe incorrectes ++ Écoute en cours sur trop d\'appareils ++ Ce contenu est dÊjà en cours de lecture ++ DÊconnectÊ de l\'application multimÊdia ++ Aucun autre titre dans la file d\'attente ++ Une erreur s\'est produite. RÊessayez plus tard. ++ Impossible de terminer l\'opÊration. RÊessayez. ++ Impossible d\'effectuer cette opÊration pour le moment ++ Erreur d\'entrÊe/de sortie ++ Impossible d\'accÊder à ce contenu ici ++ Cette appli ne peut pas effectuer cette opÊration ++ Ce contenu est bloquÊ ++ Accès refusÊ ++ Accès Premium requis ++ Configuration requise ++ Impossible de passer d\'autres titres ++ Activer les sous-titres ++ DÊsactiver les sous-titres ++ Avance rapide ++ Activer le mode plein Êcran ++ Quitter le mode plein Êcran ++ Masquer les commandes du lecteur ++ Suivant ++ Masquer les paramètres supplÊmentaires ++ Afficher les paramètres supplÊmentaires ++ Pause ++ Lecture ++ Vitesse ++ PrÊcÊdent ++ Mode actuel : tout rÊpÊter. Changer le mode rÊpÊtition. ++ Mode actuel : sans rÊpÊtition. Changer le mode rÊpÊtition. ++ Mode actuel : une rÊpÊtition. Changer le mode rÊpÊtition. ++ Retour arrière ++ Progression de la lecture ++ Paramètres ++ Afficher les commandes du lecteur ++ Activer le mode alÊatoire ++ DÊsactiver le mode alÊatoire ++ ArrÃĒter ++ Mode RV ++ TÊlÊchargement terminÊ ++ TÊlÊcharger ++ TÊlÊchargementâ€Ļ ++ Échec du tÊlÊchargement ++ TÊlÊchargements ++ TÊlÊchargements mis en pause ++ TÊlÊchargements en attente de rÊseau ++ TÊlÊchargements en attente de Wi-Fi ++ Suppression des tÊlÊchargementsâ€Ļ ++ %1$s, %2$s ++ %1$.2f Mbit/s ++ Mono ++ %1$d × %2$d ++ Piste alternative ++ Sous-titres ++ Commentaires ++ Piste supplÊmentaire ++ Automatique ++ Aucun ++ Audio ++ StÊrÊo ++ Son surround ++ Son surround 5.1 ++ Son surround 7.1 ++ Inconnu ++ Inconnu (%1$s) ++ Titre ++ Bouton, image ++ Lien ++ Pause ++ Lecture ++ Revenir en arrière ++ Avancer ++ AccÊder à l\'ÊlÊment suivant ++ AccÊder à l\'ÊlÊment prÊcÊdent ++ Barre de menu ++ ÉlÊment du menu ++ Barre de progression ++ Groupe de boutons radio ++ Onglet ++ Barre de dÊfilement ++ "Rechercher" ++ Toupie ++ opÊration en cours ++ rÊduit ++ agrandi ++ mixte ++ dÊsactivÊ ++ activÊ ++ dÊsÊlectionnÊ(s) ++ "999+" ++ RÊcapitulatif ++ Liste d’onglets ++ Minuteur ++ Barre d’outils ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..4a6e7d3 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ x 0,25 ++ x 0,5 ++ x 0,75 ++ Normal ++ x 1,25 ++ x 1,5 ++ x 2 ++ ++ ++ Avanza rapidamente %d segundo ++ Avanza rapidamente %d segundos ++ ++ ++ Rebobina %d segundo ++ Rebobina %d segundos ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "MÃĄis opciÃŗns" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicaciÃŗn" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "FunciÃŗn +" ++ "Meta +" ++ "MaiÃēs +" ++ "espazo" ++ "Sym +" ++ "MenÃē +" ++ "Buscaâ€Ļ" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicaciÃŗn %s" ++ "Contrae" ++ "Contestar" ++ "Vídeo" ++ "Rexeitar" ++ "Colgar" ++ "Chamada entrante" ++ "Chamada en curso" ++ "Filtrando chamada entrante" ++ Reproducindo ++ Inicia sesiÃŗn para utilizar esta aplicaciÃŗn ++ Datos de entrada incorrectos ++ Estase escoitando contido en demasiados dispositivos ++ Xa se estÃĄ reproducindo ese contido ++ Desconectouse da aplicaciÃŗn multimedia ++ Non hai nada mÃĄis na cola ++ Produciuse un problema. TÊntao mÃĄis tarde. ++ Non se puido completar a acciÃŗn. TÊntao de novo. ++ Nestes momentos non se pode realizar a acciÃŗn ++ Erro de entrada/saída ++ Aquí non se pode acceder a ese contido ++ Esta aplicaciÃŗn non pode realizar a acciÃŗn ++ Ese contido estÃĄ bloqueado ++ Acceso denegado ++ Requírese acceso premium ++ ConfiguraciÃŗn obrigatoria ++ Non se poden saltar mÃĄis pistas ++ Activa os subtítulos ++ Desactiva os subtítulos ++ Avance rÃĄpido ++ Acceder a pantalla completa ++ Saír de pantalla completa ++ Ocultar controis do reprodutor ++ Seguinte ++ Oculta a configuraciÃŗn adicional ++ Mostra a configuraciÃŗn adicional ++ Pausar ++ Reproducir ++ Velocidade ++ Anterior ++ Modo actual: Repetir todas as pistas. Alternar modo de repeticiÃŗn. ++ Modo actual: Non repetir. Alternar modo de repeticiÃŗn. ++ Modo actual: Repetir unha pista. Alternar modo de repeticiÃŗn. ++ Retroceder ++ Progreso da reproduciÃŗn ++ ConfiguraciÃŗn ++ Mostrar controis do reprodutor ++ Activar modo de reproduciÃŗn aleatoria ++ Desactivar modo de reproduciÃŗn aleatoria ++ Deter ++ Modo RV ++ Completouse a descarga ++ Descargar ++ Descargando ++ Produciuse un erro na descarga ++ Descargas ++ As descargas estÃĄn en pausa ++ As descargas estÃĄn agardando pola rede ++ As descargas estÃĄn agardando pola wifi ++ Quitando descargas ++ %1$s, %2$s ++ %1$.2f Mb/s ++ Mono ++ %1$d × %2$d ++ Alternativa ++ Subtítulos ++ Comentarios ++ Complementaria ++ Pista automÃĄtica ++ Ningunha pista ++ Audio ++ EstÊreo ++ Son envolvente ++ Son envolvente 5.1 ++ Son envolvente 7.1 ++ DescoÃąecido ++ DescoÃąecido (%1$s) ++ PÃŗr en pausa ++ Reproducir ++ Retroceder ++ Avanzar ++ Avanzar ao elemento seguinte ++ Retroceder ao elemento anterior ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..3a38343 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ āǏāĒžāĒŽāĒžāǍāĢāǝ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹ ++ ++ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹ ++ ++ "āǘāǰāǍāĢ‹ āǰāǏāĢāǤāĢ‹ āĒŦāǤāĒžāĒĩāĢ‹" ++ "āljāĒĒāǰ āǍāĢ…āĒĩāĒŋāĒ—ā̇āǟ āĒ•āǰāĢ‹" ++ "āĒĩāǧā́ āĒĩāĒŋāĒ•āǞāĢāĒĒāĢ‹" ++ "āĒĨāLj āĒ—āǝā́āĒ‚" ++ "āĒŦāǧāĢ€ āǜā́āĒ“" ++ "āĒāĒĒāĢāǞāĒŋāĒ•ā̇āĒļāǍ āĒĒāǏāĒ‚āĒĻ āĒ•āǰāĢ‹" ++ "āĒŦāĒ‚āǧ" ++ "āǚāĒžāǞā́" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "āĒļāĢ‹āǧāĢ‹â€Ļ" ++ "āĒ•āĢāĒĩā̇āǰāĢ€ āǏāĒžāĒĢ āĒ•āǰāĢ‹" ++ "āĒļāĢ‹āǧ āĒ•āĢāĒĩā̇āǰāĢ€" ++ "āĒļāĢ‹āǧāĢ‹" ++ "āĒ•āĢāĒĩā̇āǰāĢ€ āǏāĒŦāĒŽāĒŋāǟ āĒ•āǰāĢ‹" ++ "āĒĩā̉āLJāǏ āĒļāĢ‹āǧ" ++ "ādžāǍāĢ€ āǏāĒžāĒĨā̇ āĒļā̇āǰ āĒ•āǰāĢ‹" ++ "%sāǍāĢ€ āǏāĒžāĒĨā̇ āĒļā̇āǰ āĒ•āǰāĢ‹" ++ "āǏāĒ‚āĒ•ā́āǚāĒŋāǤ āĒ•āǰāĢ‹" ++ āĒāǞāǰāĢāǟ ++ "āǜāĒĩāĒžāĒŦ" ++ "āĒĩāĢ€āĒĄāĒŋāǝāĢ‹" ++ "āǍāĒ•āĒžāǰāĢ‹" ++ "āǏāĒŽāĒžāĒĒāĢāǤ āĒ•āǰāĢ‹" ++ "āLJāǍāĒ•āĒŽāĒŋāĒ‚āĒ— āĒ•ā̉āǞ" ++ "āǚāĒžāǞā́ āĒ•ā̉āǞ" ++ "āLJāǍāĒ•āĒŽāĒŋāĒ‚āĒ— āĒ•ā̉āǞāǍā́āĒ‚ āǏāĢāĒ•āĢāǰāĢ€āǍāĒŋāĒ‚āĒ— āĒĨāĒžāǝ āĒ›ā̇" ++ āĒ•āĢ‹āĒŽāĢāĒŦāĢ‹ āĒŦāĢ‹āĒ•āĢāǏ ++ āĒšāĒžāǞāĒŽāĒžāĒ‚ āǚāĒžāǞāĢ€ āǰāĒšāĢ€ āĒ›ā̇ ++ ādž āĒāĒĒāǍāĢ‹ āljāĒĒāǝāĢ‹āĒ— āĒ•āǰāĒĩāĒž āĒŽāĒžāǟā̇ āǏāĒžāLJāǍ āLJāǍ āĒ•āǰāĢ‹ ++ āĒ–āĢ‹āǟāĢ‹ āLJāǍāĒĒā́āǟ āĒĄā̇āǟāĒž ++ āǘāĒŖāĒž āĒŦāǧāĒž āĒĄāĒŋāĒĩāĒžāLJāǏ āĒĒāǰ āǏāĒžāĒ‚āĒ­āĒŗāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒ ++ āǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒĒāĒšā̇āǞāĒžāĒ‚āĒĨāĢ€ āǚāǞāĒžāĒĩāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒ ++ āĒŽāĢ€āĒĄāĒŋāǝāĒž āĒāĒĒāĒĨāĢ€ āĒĄāĒŋāǏāĢāĒ•āǍā̇āĒ•āĢāǟā̇āĒĄ āĒ›ā̇ ++ āĒŦāĢ€āǜā́āĒ‚ āĒ•āĒ‚āLj āĒ•āǤāĒžāǰāĒŽāĒžāĒ‚ āǍāĒĨāĢ€ ++ āĒ•āĒ‚āLjāĒ• āĒ–āĢ‹āǟā́āĒ‚ āĒĨāǝā́āĒ‚. āĒĨāĢ‹āĒĄāĒž āǏāĒŽāǝ āĒĒāĒ›āĢ€ āĒĒāĢāǰāǝāĒžāǏ āĒ•āǰāĢ‹. ++ āǏāĒŽāĒžāĒĒāĢāǤ āĒ•āǰāĢ€ āĒļāĒ•āĢāǝāĒžāĒ‚ āǍāĒĨāĢ€. āĒĢāǰāĢ€ āĒĒāĢāǰāǝāĒžāǏ āĒ•āǰāĢ‹. ++ āǤā̇ āĒ…āǤāĢāǝāĒžāǰā̇ āĒ•āǰāĢ€ āĒļāĒ•āǤāĒž āǍāĒĨāĢ€ ++ āLJāǍāĒĒā́āǟ/ādžāljāǟāĒĒā́āǟāĒŽāĒžāĒ‚ āĒ­āĢ‚āǞ ++ āǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒ…āĒšāĢ€āĒ‚ āĒŽā̇āĒŗāĒĩāĢ€ āĒļāĒ•āĒžāǤā́āĒ‚ āǍāĒĨāĢ€ ++ ādž āĒāĒĒ āǤā̇ āĒ•āǰāĢ€ āĒļāĒ•āǤāĢ€ āǍāĒĨāĢ€ ++ āǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒŦāĢāǞā̉āĒ• āĒ•āǰāĢāǝā́āĒ‚ āĒ›ā̇ ++ āĒāĒ•āĢāǏā̇āǏ āǍāĒ•āĒžāǰāĒĩāĒžāĒŽāĒžāĒ‚ ādžāĒĩāĢāǝāĢ‹ ++ āĒĒāĢāǰāĢ€āĒŽāĒŋāǝāĒŽ āĒāĒ•āĢāǏā̇āǏ āǜāǰāĢ‚āǰāĢ€ āĒ›ā̇ ++ āǏā̇āǟāĒ…āĒĒ āǜāǰāĢ‚āǰāĢ€ āĒ›ā̇ ++ āĒ•āĢ‹āLj āĒĩāǧā́ āǟāĢāǰāĢ…āĒ• āĒ›āĢ‹āĒĄāĢ€ āĒļāĒ•āĒžāǤāĒž āǍāĒĨāĢ€ ++ āǏāĒŦāǟāĒžāLJāǟāǞ āǚāĒžāǞā́ āĒ•āǰāĢ‹ ++ āǏāĒŦāǟāĒžāLJāǟāǞ āĒŦāĒ‚āǧ āĒ•āǰāĢ‹ ++ āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹ ++ āĒĒāĢ‚āǰāĢāĒŖāǏāĢāĒ•āĢāǰāĢ€āǍ āĒŽāĢ‹āĒĄāĒŽāĒžāĒ‚ āĒĻāĒžāĒ–āǞ āĒĨāĒžāĒ“ ++ āĒĒāĢ‚āǰāĢāĒŖāǏāĢāĒ•āĢāǰāĢ€āǍ āĒŽāĢ‹āĒĄāĒŽāĒžāĒ‚āĒĨāĢ€ āĒŦāĒšāĒžāǰ āǍāĢ€āĒ•āĒŗāĢ‹ ++ āĒĒāĢāǞā̇āǝāǰ āĒŽāĒžāǟā̇āǍāĒž āǍāĒŋāǝāĒ‚āǤāĢāǰāĒŖāĢ‹ āĒ›ā́āĒĒāĒžāĒĩāĢ‹ ++ ādžāĒ—āĒŗ ++ āĒĩāǧāĒžāǰāĒžāǍāĒž āǏā̇āǟāĒŋāĒ‚āĒ— āĒ›ā́āĒĒāĒžāĒĩāĢ‹ ++ āĒĩāǧāĒžāǰāĒžāǍāĒž āǏā̇āǟāĒŋāĒ‚āĒ— āĒŦāǤāĒžāĒĩāĢ‹ ++ āĒĨāĢ‹āĒ­āĢ‹ ++ āǚāǞāĒžāĒĩāĢ‹ ++ āĒāĒĄāĒĒ ++ āĒĒāĒžāĒ›āĒŗ ++ āĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒŦāǧā́āĒ‚ āǰāĒŋāĒĒāĢ€āǟ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹. ++ āĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒ•āĒ‚āLj āǰāĒŋāĒĒāĢ€āǟ āǍ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹. ++ āĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒāĒ• āǰāĒŋāĒĒāĢ€āǟ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹. ++ āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹ ++ āĒĒāĢāǞā̇āĒŦāĢ…āĒ• āǚāĒžāǞā́ āĒ›ā̇ ++ āǏā̇āǟāĒŋāĒ‚āĒ— ++ āĒĒāĢāǞā̇āǝāǰ āĒŽāĒžāǟā̇āǍāĒž āǍāĒŋāǝāĒ‚āǤāĢāǰāĒŖāĢ‹ āĒŦāǤāĒžāĒĩāĢ‹ ++ āĒļāĒĢāǞ āĒŽāĢ‹āĒĄ āǚāĒžāǞā́ āĒ•āǰāĢ‹ ++ āĒļāĒĢāǞ āĒŽāĢ‹āĒĄ āĒŦāĒ‚āǧ āĒ•āǰāĢ‹ ++ āǰāĢ‹āĒ•āĢ‹ ++ VR āĒŽāĢ‹āĒĄ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĒāĢ‚āǰāĢāĒŖ āĒĨāǝā́āĒ‚ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āǰāĢ‹ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āǰāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āǍāĒŋāǎāĢāĒĢāĒŗ āĒĨāǝā́āĒ‚ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĢ‹āĒ­āĒžāĒĩāĢāǝāĒž āĒ›ā̇ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĒĩāĒž āǍā̇āǟāĒĩāǰāĢāĒ•āǍāĢ€ āǰāĒžāĒš āǜāĢ‹āĒĩāĒžāLj āǰāĒšāĢ€ āĒ›ā̇ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĒĩāĒž āĒĩāĒžāLJ-āĒĢāĒžāLJāǍāĢ€ āǰāĒžāĒš āǜāĢ‹āĒĩāĒžāLj āǰāĒšāĢ€ āĒ›ā̇ ++ āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āĒžāĒĸāĢ€ āǍāĒžāĒ–āĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒ ++ %1$s, %2$s ++ %1$.2f Mbps ++ āĒŽā̉āǍāĢ‹ ++ %1$d × %2$d ++ āĒĩā̈āĒ•āǞāĢāĒĒāĒŋāĒ• ++ CC ++ āĒ•āĢ‹āĒŽā̇āǍāĢāǟāĢāǰāĢ€ ++ āĒĒāĢ‚āǰāĒ• ++ āĒ‘āǟāĢ‹āĒŽāĢ…āǟāĒŋāĒ• āǰāĢ€āǤā̇ ++ āĒāĒ•āĒĒāĒŖ āǍāĒšāĢ€āĒ‚ ++ āĒ‘āĒĄāĒŋāǝāĢ‹ ++ āǏāĢāǟāĢ€āǰāĒŋāĒ“ ++ āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄ ++ 5.1 āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄ ++ 7.1 āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄ ++ āĒ…āǜāĒžāĒŖāĢāǝāĢ‹ ++ āĒ…āǜāĒžāĒŖāĢāǝā́āĒ‚ (%1$s) ++ āĒļāĢ€āǰāĢāǎāĒ• ++ āĒĢāĢ‹āǟāĢ‹ ++ āĒŦāǟāǍ, āĒĢāĢ‹āǟāĢ‹ ++ āǞāĒŋāĒ‚āĒ• ++ āĒĨāĢ‹āĒ­āĒžāĒĩāĢ‹ ++ āǚāǞāĒžāĒĩāĢ‹ ++ āĒĒāĒžāĒ›āĒŗ āǞāLj āǜāĒžāĒ“ ++ ādžāĒ—āĒŗ āǞāLj āǜāĒžāĒ“ ++ ādžāĒ—āǞāĢ€ ādžāLJāǟāĒŽ āĒļāĢ‹āǧāĢ‹ ++ āĒĒāĒžāĒ›āǞāĢ€ ādžāLJāǟāĒŽ āĒļāĢ‹āǧāĢ‹ ++ āĒŽā̇āǍāĢ‚ ++ āĒŽā̇āǍāĢ‚ āĒŦāĒžāǰ ++ āĒŽā̇āǍāĢ‚ ādžāLJāǟāĒŽ ++ āĒĒāĢāǰāĒ—āǤāĒŋ āĒŦāĒžāǰ ++ āǰā̇āĒĄāĒŋāǝāĢ‹ āĒ—āĢāǰāĢ‚āĒĒ ++ āǟā̇āĒŦ ++ āǏāĢāĒ•āĢāǰāĢ‹āǞ āĒŦāĒžāǰ ++ "āĒļāĢ‹āǧāĢ‹" ++ āǏāĢāĒĒāĒŋāǍ āĒŦāǟāǍ ++ āĒĩāĢāǝāǏāĢāǤ ++ āǍāĒžāǍā́āĒ‚ ++ āĒĩāĒŋāǏāĢāǤā̃āǤ ++ āĒŽāĒŋāĒ•āĢāǏ āĒ•āǰā̇āǞ ++ āĒŦāĒ‚āǧ ++ āǚāĒžāǞā́ ++ āĒĒāǏāĒ‚āĒĻāĒ—āĢ€āĒŽāĒžāĒ‚āĒĨāĢ€ āĒ•āĒžāĒĸāĢ€ āǍāĒžāĒ–āĢāǝā́āĒ‚ ++ "999+" ++ āǏāĒžāǰāĒžāĒ‚āĒļ ++ āǟā̇āĒŦ āǞāĒŋāǏāĢāǟ ++ āǟāĒžāLJāĒŽāǰ ++ āǟāĢ‚āǞ āĒŦāĒžāǰ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..ae5f2e6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ ā¤¸ā¤žā¤Žā¤žā¤¨āĨā¤¯ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ⤆⤗āĨ‡ ā¤Ŧā¤ĸā¤ŧā¤žā¤ā¤‚ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ⤆⤗āĨ‡ ā¤Ŧā¤ĸā¤ŧā¤žā¤ā¤‚ ++ ++ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ ++ ++ "ā¤šāĨ‹ā¤Ž ā¤ĒāĨ‡ā¤œ ā¤Ē⤰ ā¤œā¤žā¤ā¤‚" ++ "ā¤ĩā¤žā¤Ē⤏ ā¤œā¤žā¤ā¤‚" ++ "⤜ā¤ŧāĨā¤¯ā¤žā¤Ļā¤ž ā¤ĩā¤ŋ⤕⤞āĨā¤Ē" ++ "ā¤šāĨ‹ ā¤—ā¤¯ā¤ž" ++ "⤏⤭āĨ€ ā¤ĻāĨ‡ā¤–āĨ‡ā¤‚" ++ "⤕āĨ‹ā¤ˆ ⤐ā¤ĒāĨā¤˛ā¤ŋ⤕āĨ‡ā¤ļ⤍ ⤚āĨā¤¨āĨ‡ā¤‚" ++ "ā¤Ŧ⤂ā¤Ļ" ++ "ā¤šā¤žā¤˛āĨ‚" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "⤖āĨ‹ā¤œāĨ‡ā¤‚â€Ļ" ++ "⤕āĨâ€ā¤ĩāĨ‡ā¤°āĨ€ ā¤šā¤Ÿā¤žā¤ā¤‚" ++ "⤏⤰āĨā¤š ⤕āĨā¤ĩāĨ‡ā¤°āĨ€" ++ "⤖āĨ‹ā¤œāĨ‡ā¤‚" ++ "⤕āĨā¤ĩāĨ‡ā¤°āĨ€ ⤏ā¤Ŧā¤Žā¤ŋ⤟ ⤕⤰āĨ‡ā¤‚" ++ "ā¤ŦāĨ‹ā¤˛ā¤•⤰ ⤖āĨ‹ā¤œāĨ‡ā¤‚" ++ "⤇⤏⤏āĨ‡ ā¤ļāĨ‡ā¤¯ā¤° ⤕⤰āĨ‡ā¤‚:" ++ "%s ⤏āĨ‡ ā¤ļāĨ‡ā¤¯ā¤° ⤕⤰āĨ‡ā¤‚" ++ "⤛āĨ‹ā¤Ÿā¤ž ⤕⤰āĨ‡ā¤‚" ++ ⤅⤞⤰āĨā¤Ÿ ++ "⤜ā¤ĩā¤žā¤Ŧ ā¤ĻāĨ‡ā¤‚" ++ "ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹" ++ "⤅⤏āĨā¤ĩāĨ€ā¤•ā¤žā¤° ⤕⤰āĨ‡ā¤‚" ++ "⤕āĨ‰ā¤˛ ā¤•ā¤žā¤ŸāĨ‡ā¤‚" ++ "⤆⤍āĨ‡ ā¤ĩā¤žā¤˛ā¤ž (ā¤‡ā¤¨ā¤•ā¤Žā¤ŋ⤂⤗) ⤕āĨ‰ā¤˛" ++ "ā¤Ēā¤šā¤˛āĨ‡ ⤏āĨ‡ ā¤œā¤žā¤°āĨ€ ⤕āĨ‰ā¤˛" ++ "ā¤‡ā¤¨ā¤•ā¤Žā¤ŋ⤂⤗ ⤕āĨ‰ā¤˛ ⤕āĨ‹ ⤏āĨā¤•āĨā¤°āĨ€ā¤¨ ⤕ā¤ŋā¤¯ā¤ž ā¤œā¤ž ā¤°ā¤šā¤ž ā¤šāĨˆ" ++ ⤕āĨ‰ā¤ŽāĨā¤ŦāĨ‹ ā¤ŦāĨ‰ā¤•āĨā¤¸ ++ ⤅⤭āĨ€ ⤚⤞ ā¤°ā¤šā¤ž ā¤šāĨˆ ++ ⤇⤏ ⤐ā¤ĒāĨā¤˛ā¤ŋ⤕āĨ‡ā¤ļ⤍ ā¤•ā¤ž ⤇⤏āĨā¤¤āĨ‡ā¤Žā¤žā¤˛ ⤕⤰⤍āĨ‡ ⤕āĨ‡ ⤞ā¤ŋā¤ ā¤¸ā¤žā¤‡ā¤¨ ⤇⤍ ⤕⤰āĨ‡ā¤‚ ++ ⤇⤍ā¤ĒāĨā¤Ÿ ā¤ĄāĨ‡ā¤Ÿā¤ž ⤗⤞⤤ ā¤šāĨˆ ++ ⤇⤏āĨ‡ ā¤Ŧā¤šāĨā¤¤ ā¤¸ā¤žā¤°āĨ‡ ā¤Ąā¤ŋā¤ĩā¤žā¤‡ā¤¸āĨ‹ā¤‚ ā¤Ē⤰ ā¤šā¤˛ā¤žā¤¯ā¤ž ā¤œā¤ž ā¤°ā¤šā¤ž ā¤šāĨˆ ++ ā¤¯ā¤š ⤕āĨ‰ā¤¨āĨā¤ŸāĨ‡ā¤‚ā¤Ÿ ā¤Ēā¤šā¤˛āĨ‡ ⤏āĨ‡ ā¤šāĨ€ ⤚⤞ ā¤°ā¤šā¤ž ā¤šāĨˆ ++ ā¤ŽāĨ€ā¤Ąā¤ŋā¤¯ā¤ž ⤐ā¤ĒāĨā¤˛ā¤ŋ⤕āĨ‡ā¤ļ⤍ ⤏āĨ‡ ā¤Ąā¤ŋ⤏⤕⤍āĨ‡ā¤•āĨā¤Ÿ ⤕⤰ ā¤Ļā¤ŋā¤¯ā¤ž ā¤—ā¤¯ā¤ž ā¤šāĨˆ ++ ⤏āĨ‚ā¤šāĨ€ ā¤ŽāĨ‡ā¤‚ ⤔⤰ ⤕āĨā¤› ā¤¨ā¤šāĨ€ā¤‚ ā¤šāĨˆ ++ ⤕āĨ‹ā¤ˆ ā¤—ā¤Ąā¤ŧā¤Ŧā¤Ąā¤ŧāĨ€ ā¤šāĨā¤ˆ. ā¤Ŧā¤žā¤Ļ ā¤ŽāĨ‡ā¤‚ ⤕āĨ‹ā¤ļā¤ŋā¤ļ ⤕⤰āĨ‡ā¤‚. ++ ā¤•ā¤žā¤°āĨā¤°ā¤ĩā¤žā¤ˆ ā¤ĒāĨ‚⤰āĨ€ ā¤¨ā¤šāĨ€ā¤‚ ā¤šāĨ‹ ⤏⤕āĨ€. ā¤Ģā¤ŋ⤰ ⤏āĨ‡ ⤕āĨ‹ā¤ļā¤ŋā¤ļ ⤕⤰āĨ‡ā¤‚. ++ ⤅⤍āĨā¤°āĨ‹ā¤§ ⤅⤭āĨ€ ā¤ĒāĨ‚ā¤°ā¤ž ā¤¨ā¤šāĨ€ā¤‚ ⤕ā¤ŋā¤¯ā¤ž ā¤œā¤ž ā¤¸ā¤•ā¤¤ā¤ž ++ ⤇⤍ā¤ĒāĨā¤Ÿ/ā¤†ā¤‰ā¤Ÿā¤ĒāĨā¤Ÿ ⤕āĨ€ ā¤—ā¤Ąā¤ŧā¤Ŧā¤Ąā¤ŧāĨ€ ++ ā¤¯ā¤š ⤕āĨ‰ā¤¨āĨā¤ŸāĨ‡ā¤‚ā¤Ÿ ā¤¯ā¤šā¤žā¤‚ ā¤¨ā¤šāĨ€ā¤‚ ā¤šā¤˛ā¤žā¤¯ā¤ž ā¤œā¤ž ā¤¸ā¤•ā¤¤ā¤ž ++ ⤇⤏ ⤐ā¤ĒāĨā¤˛ā¤ŋ⤕āĨ‡ā¤ļ⤍ ā¤Ē⤰ ā¤¯ā¤š ā¤•ā¤žā¤Ž ā¤¨ā¤šāĨ€ā¤‚ ⤕ā¤ŋā¤¯ā¤ž ā¤œā¤ž ā¤¸ā¤•ā¤¤ā¤ž ++ ⤕āĨ‰ā¤¨āĨā¤ŸāĨ‡ā¤‚ā¤Ÿ ā¤Ē⤰ ⤰āĨ‹ā¤• ā¤˛ā¤—ā¤ž ā¤ĻāĨ€ ā¤—ā¤ˆ ā¤šāĨˆ ++ ⤐⤕āĨā¤¸āĨ‡ā¤¸ ⤕⤰⤍āĨ‡ ⤕āĨ€ ⤅⤍āĨā¤Žā¤¤ā¤ŋ ā¤¨ā¤šāĨ€ā¤‚ ā¤Žā¤ŋ⤞āĨ€ ++ ⤇⤏⤕āĨ‡ ⤞ā¤ŋā¤ ā¤ĒāĨā¤°āĨ€ā¤Žā¤ŋā¤¯ā¤Ž ⤐⤕āĨā¤¸āĨ‡ā¤¸ ⤜ā¤ŧ⤰āĨ‚⤰āĨ€ ā¤šāĨˆ ++ ⤏āĨ‡ā¤Ÿā¤…ā¤Ē ā¤•ā¤°ā¤¨ā¤ž ⤜ā¤ŧ⤰āĨ‚⤰āĨ€ ā¤šāĨˆ ++ ⤇⤏⤏āĨ‡ ⤜ā¤ŧāĨā¤¯ā¤žā¤Ļā¤ž ā¤—ā¤žā¤¨āĨ‡ ⤏āĨā¤•ā¤ŋā¤Ē ā¤¨ā¤šāĨ€ā¤‚ ⤕ā¤ŋā¤ ā¤œā¤ž ⤏⤕⤤āĨ‡ ++ ⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ ā¤šā¤žā¤˛āĨ‚ ⤕⤰āĨ‡ā¤‚ ++ ⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚ ++ ⤤āĨ‡āĨ›āĨ€ ⤏āĨ‡ ⤆⤗āĨ‡ ā¤ŦāĨā¤žā¤ā¤‚ ++ ā¤Ģā¤ŧāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ ā¤ŽāĨ‹ā¤Ą ā¤Ē⤰ ā¤ĻāĨ‡ā¤–āĨ‡ā¤‚ ++ ā¤Ģā¤ŧāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ ā¤ŽāĨ‹ā¤Ą ⤏āĨ‡ ā¤Ŧā¤žā¤šā¤° ⤍ā¤ŋ⤕⤞āĨ‡ā¤‚ ++ ā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤° ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤Ŗ ⤛ā¤ŋā¤Ēā¤žā¤ā¤‚ ++ ā¤…ā¤—ā¤˛ā¤ž ++ ⤅⤍āĨā¤¯ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ ⤛ā¤ŋā¤Ēā¤žā¤ā¤‚ ++ ⤅⤍āĨā¤¯ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ ā¤Ļā¤ŋā¤–ā¤žā¤ā¤‚ ++ ⤰āĨ‹ā¤•āĨ‡ā¤‚ ++ ā¤šā¤˛ā¤žā¤ā¤‚ ++ ⤰ā¤Ģā¤ŧāĨā¤¤ā¤žā¤° ++ ā¤Ēā¤ŋā¤›ā¤˛ā¤ž ++ ā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ⤏⤭āĨ€ ⤕āĨ‹ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚. ++ ā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ⤕ā¤ŋ⤏āĨ€ ⤕āĨ‹ ⤍ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚. ++ ā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ā¤ā¤• ⤕āĨ‹ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚. ++ ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤚⤞⤍āĨ‡ ⤕āĨ€ ā¤ĒāĨā¤°ā¤—⤤ā¤ŋ ++ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ ++ ā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤° ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤Ŗ ā¤Ļā¤ŋā¤–ā¤žā¤ā¤‚ ++ ā¤ļā¤Ģā¤ŧ⤞ ā¤ŽāĨ‹ā¤Ą ā¤šā¤žā¤˛āĨ‚ ⤕⤰āĨ‡ā¤‚ ++ ā¤ļā¤Ģā¤ŧ⤞ ā¤ŽāĨ‹ā¤Ą ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚ ++ ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚ ++ VR ā¤ŽāĨ‹ā¤Ą ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ĒāĨ‚ā¤°ā¤ž ā¤šāĨā¤† ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕⤰āĨ‡ā¤‚ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤šāĨ‹ ā¤°ā¤šā¤ž ā¤šāĨˆ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤¨ā¤šāĨ€ā¤‚ ā¤šāĨ‹ ā¤¸ā¤•ā¤ž ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕āĨ€ ā¤—ā¤ˆ ā¤ŽāĨ€ā¤Ąā¤ŋā¤¯ā¤ž ā¤Ģā¤ŧā¤žā¤‡ā¤˛āĨ‡ā¤‚ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤰āĨ‹ā¤•ā¤ž ā¤—ā¤¯ā¤ž ā¤šāĨˆ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ļāĨā¤°āĨ‚ ⤕⤰⤍āĨ‡ ⤕āĨ‡ ⤞ā¤ŋā¤, ā¤‡ā¤‚ā¤Ÿā¤°ā¤¨āĨ‡ā¤Ÿ ⤏āĨ‡ ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤šāĨ‹ā¤¨āĨ‡ ā¤•ā¤ž ā¤‡ā¤‚ā¤¤ā¤œā¤ŧā¤žā¤° ā¤šāĨˆ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ļāĨā¤°āĨ‚ ⤕⤰⤍āĨ‡ ⤕āĨ‡ ⤞ā¤ŋā¤, ā¤ĩā¤žā¤ˆ-ā¤Ģā¤ŧā¤žā¤ˆ ⤏āĨ‡ ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤šāĨ‹ā¤¨āĨ‡ ā¤•ā¤ž ā¤‡ā¤‚ā¤¤ā¤œā¤ŧā¤žā¤° ā¤šāĨˆ ++ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕āĨ€ ā¤—ā¤ˆ āĨžā¤žā¤‡ā¤˛āĨ‡ā¤‚ ā¤šā¤Ÿā¤žā¤ˆ ā¤œā¤ž ā¤°ā¤šāĨ€ ā¤šāĨˆā¤‚ ++ %1$s, %2$s ++ %1$.2f ā¤ā¤Žā¤ŦāĨ€ā¤ĒāĨ€ā¤ā¤¸ ++ ā¤ŽāĨ‹ā¤¨āĨ‹ ā¤¸ā¤žā¤‰ā¤‚ā¤Ą ++ %1$d × %2$d ++ ā¤ĩā¤ŋ⤕⤞āĨā¤Ē ++ ⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ ++ ā¤•ā¤ŽāĨ‡ā¤‚ā¤ŸāĨā¤°āĨ€ ++ ⤏ā¤ĒāĨā¤˛ā¤ŋā¤ŽāĨ‡ā¤‚ā¤ŸāĨā¤°āĨ€ ++ ⤅ā¤Ē⤍āĨ‡ ⤆ā¤Ē ++ ⤕āĨ‹ā¤ˆ ā¤¨ā¤šāĨ€ā¤‚ ++ ā¤‘ā¤Ąā¤ŋ⤝āĨ‹ ++ ⤏āĨā¤ŸāĨ€ā¤°ā¤ŋ⤝āĨ‹ ā¤¸ā¤žā¤‰ā¤‚ā¤Ą ++ ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ą ++ 5.1 ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ą ++ 7.1 ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ą ++ ā¤…ā¤œāĨā¤žā¤žā¤¤ ++ ⤕āĨ‹ā¤ˆ ā¤œā¤žā¤¨ā¤•ā¤žā¤°āĨ€ ā¤¨ā¤šāĨ€ā¤‚ (%1$s) ++ ā¤ļāĨ€ā¤°āĨā¤ˇā¤• ++ ā¤Ģā¤ŧāĨ‹ā¤ŸāĨ‹ ++ ā¤Ŧ⤟⤍, ā¤Ģā¤ŧāĨ‹ā¤ŸāĨ‹ ++ ⤞ā¤ŋ⤂⤕ ++ ⤰āĨ‹ā¤•āĨ‡ā¤‚ ++ ā¤šā¤˛ā¤žā¤ā¤‚ ++ ā¤ĩā¤žā¤Ē⤏ ā¤œā¤žā¤ā¤‚ ++ ⤆⤗āĨ‡ ā¤ŦāĨā¤žā¤ā¤‚ ++ ⤅⤗⤞āĨ‡ ā¤†ā¤‡ā¤Ÿā¤Ž ā¤Ē⤰ ā¤œā¤žā¤ā¤‚ ++ ā¤Ēā¤ŋ⤛⤞āĨ‡ ā¤†ā¤‡ā¤Ÿā¤Ž ā¤Ē⤰ ā¤œā¤žā¤ā¤‚ ++ ā¤ŽāĨ‡ā¤¨āĨ‚ ++ ā¤ŽāĨ‡ā¤¨āĨ‚ ā¤Ŧā¤žā¤° ++ ā¤ŽāĨ‡ā¤¨āĨ‚ ā¤†ā¤‡ā¤Ÿā¤Ž ++ ā¤ĒāĨā¤°āĨ‹ā¤—āĨā¤°āĨ‡ā¤¸ ā¤Ŧā¤žā¤° ++ ⤰āĨ‡ā¤Ąā¤ŋ⤝āĨ‹ ⤗āĨā¤°āĨā¤Ē ++ ⤟āĨˆā¤Ŧ ++ ⤏āĨā¤•āĨā¤°āĨ‰ā¤˛ ā¤Ŧā¤žā¤° ++ "⤖āĨ‹ā¤œāĨ‡ā¤‚" ++ ⤏āĨā¤Ēā¤ŋ⤍ ā¤Ŧ⤟⤍ ++ ā¤ĩāĨā¤¯ā¤¸āĨā¤¤ ++ ⤛āĨ‹ā¤Ÿā¤ž ⤕ā¤ŋā¤¯ā¤ž ā¤—ā¤¯ā¤ž ++ ā¤Ŧā¤Ąā¤ŧā¤ž ⤕ā¤ŋā¤¯ā¤ž ā¤—ā¤¯ā¤ž ++ ā¤Žā¤ŋ⤕āĨā¤¸ ++ ā¤Ŧ⤂ā¤Ļ ā¤šāĨˆ ++ ā¤šā¤žā¤˛āĨ‚ ā¤šāĨˆ ++ ā¤¨ā¤šāĨ€ā¤‚ ⤚āĨā¤¨āĨ‡ ā¤—ā¤ ++ "999+" ++ ā¤¸ā¤žā¤°ā¤žā¤‚ā¤ļ ++ ⤟āĨˆā¤Ŧ ⤞ā¤ŋ⤏āĨā¤Ÿ ++ ā¤Ÿā¤žā¤‡ā¤Žā¤° ++ ⤟āĨ‚⤞ ā¤Ŧā¤žā¤° ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..f394900 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,157 @@ ++ ++ ++ ++ 0,25 x ++ 0,5 x ++ 0,75 x ++ Uobičajeno ++ 1,25 x ++ 1,5 x ++ 2 x ++ ++ ++ Premotavanje unaprijed za %d sekundu ++ Premotavanje unaprijed za %d sekunde ++ Premotavanje unaprijed za %d sekundi ++ ++ ++ Premotavanje unatrag za %d sekundu ++ Premotavanje unatrag za %d sekunde ++ Premotavanje unatrag za %d sekundi ++ ++ "Idi na početnu" ++ "Natrag" ++ "ViÅĄe opcija" ++ "Gotovo" ++ "PrikaÅži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "PretraÅžiteâ€Ļ" ++ "IzbriÅĄi upit" ++ "Upit za pretraÅživanje" ++ "PretraÅži" ++ "PoÅĄalji upit" ++ "Glasovno pretraÅživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "SaÅžmi" ++ Upozorenje ++ "Odgovori" ++ "Videozapis" ++ "Odbij" ++ "Prekini" ++ "Dolazni poziv" ++ "Poziv u tijeku" ++ "Filtriranje dolaznog poziva" ++ Kombinirani okvir ++ Upravo svira ++ Prijavite se za upotrebu te aplikacije ++ Netočni ulazni podaci ++ SluÅĄate na previÅĄe uređaja ++ Taj se sadrÅžaj već reproducira ++ Prekinuta je veza s aplikacijom za medijske sadrÅžaje ++ Nema viÅĄe ničeg u redu čekanja ++ NeÅĄto nije u redu. PokuÅĄajte kasnije. ++ ZavrÅĄavanje nije uspjelo. PokuÅĄajte ponovo. ++ Trenutačno to ne moÅžemo učiniti ++ PogreÅĄka unosa/rezultata obrade ++ Taj sadrÅžaj nije dostupan ovdje ++ Ova aplikacija nema tu mogućnost ++ Taj je sadrÅžaj blokiran ++ Pristup je odbijen ++ Potreban je pristup uz dodatnu naplatu ++ Potrebno je postavljanje ++ Ne moÅžete viÅĄe preskakati pjesme ++ Omogući titlove ++ Onemogući titlove ++ Brzo unaprijed ++ Otvaranje prikaza na cijelom zaslonu ++ Zatvaranje prikaza na cijelom zaslonu ++ Sakrij kontrole playera ++ Sljedeće ++ Sakrij dodatne postavke ++ PrikaÅži dodatne postavke ++ Pauza ++ Reproduciraj ++ Brzina ++ Prethodno ++ Trenutačno: Ponovi sve. Promijenite način ponavljanja. ++ Trenutačno: Bez ponavljanja. Promijenite način ponavljanja. ++ Trenutačno: Ponovi jedno. Promijenite način ponavljanja. ++ Unatrag ++ Napredak reprodukcije ++ Postavke ++ PrikaÅži kontrole playera ++ Omogućite način nasumične reprodukcije ++ Onemogućite način nasumične reprodukcije ++ Zaustavi ++ VR način ++ Preuzimanje je dovrÅĄeno ++ Preuzmi ++ Preuzimanje ++ Preuzimanje nije uspjelo ++ Preuzimanja ++ Preuzimanja su pauzirana ++ Preuzimanja čekaju mreÅžu ++ Preuzimanja čekaju Wi-Fi ++ Uklanjanje preuzimanja ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternativna verzija ++ Verzija s titlovima ++ Verzija s komentarima ++ Dopunska verzija ++ Automatski ++ NiÅĄta ++ Audiozapis ++ Stereo ++ OkruÅžujući zvuk ++ 5.1-kanalni okruÅžujući zvuk ++ 7.1-kanalni okruÅžujući zvuk ++ Nepoznato ++ Nepoznato (%1$s) ++ Zaglavlje ++ Slika ++ Gumb, slika ++ Veza ++ Pauziraj ++ Reproduciraj ++ Skok unatrag ++ Skok prema naprijed ++ Idi na sljedeću stavku ++ Idi na prethodnu stavku ++ Izbornik ++ Traka izbornika ++ Stavka izbornika ++ Traka napretka ++ Grupa izbornih gumba ++ Kartica ++ Traka za pomicanje ++ "PretraÅži" ++ Gumb za vrtnju ++ zauzeto ++ saÅžeto ++ proÅĄireno ++ mjeÅĄovito ++ isključeno ++ uključeno ++ poniÅĄten odabir ++ "999+" ++ SaÅžetak ++ Popis kartica ++ Mjerač vremena ++ Traka s alatima ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..dff236c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0,25× ++ 0,5× ++ 0,75× ++ NormÃĄl ++ 1,25× ++ 1,5× ++ 2× ++ ++ ++ ElőretekerÊs %d mÃĄsodperccel ++ ElőretekerÊs %d mÃĄsodperccel ++ ++ ++ VisszatekerÊs %d mÃĄsodperccel ++ VisszatekerÊs %d mÃĄsodperccel ++ ++ "UgrÃĄs a főoldalra" ++ "Fel" ++ "TovÃĄbbi lehetősÊgek" ++ "KÊsz" ++ "Az Ãļsszes megtekintÊse" ++ "VÃĄlasszon alkalmazÃĄst" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "SzÃŗkÃļz" ++ "Sym+" ++ "Menu+" ++ "KeresÊsâ€Ļ" ++ "LekÊrdezÊs tÃļrlÊse" ++ "KeresÊsi lekÊrdezÊs" ++ "KeresÊs" ++ "LekÊrdezÊs kÃŧldÊse" ++ "HangalapÃē keresÊs" ++ "MegosztÃĄs a kÃļvetkezővel:" ++ "MegosztÃĄs a kÃļvetkező alkalmazÃĄssal: %s" ++ "ÖsszecsukÃĄs" ++ FigyelmeztetÊs ++ "FogadÃĄs" ++ "VideÃŗ" ++ "ElutasítÃĄs" ++ "BefejezÊs" ++ "BejÃļvő hívÃĄs" ++ "HívÃĄs folyamatban" ++ "BejÃļvő hívÃĄs szÅąrÊse" ++ KombinÃĄlt lista ++ Most jÃĄtszott tartalom ++ Az alkalmazÃĄs hasznÃĄlatÃĄhoz jelentkezzen be ++ Helytelen beviteli adat ++ TÃēl sok eszkÃļz van hasznÃĄlatban ++ A tartalom lejÃĄtszÃĄsa mÃĄr folyamatban van ++ LevÃĄlasztva a mÊdialkalmazÃĄsrÃŗl ++ Semmi mÃĄs nincs a sorban ++ Hiba tÃļrtÊnt. PrÃŗbÃĄlkozzon Ãējra kÊsőbb. ++ Nem sikerÃŧlt befejezni. PrÃŗbÃĄlja Ãējra. ++ Ez jelenleg nem lehetsÊges ++ Beviteli/kimeneti hiba ++ Nem lehet betÃļlteni a tartalmat ++ Ez az alkalmazÃĄs nem kÊpes erre ++ A tartalom le van tiltva ++ HozzÃĄfÊrÊs megtagadva ++ PrÊmium hozzÃĄfÊrÊs szÃŧksÊges ++ BeÃĄllítÃĄs szÃŧksÊges ++ Nem lehet tÃļbb szÃĄmot ÃĄtugrani ++ Feliratok bekapcsolÃĄsa ++ Feliratok kikapcsolÃĄsa ++ ElőretekerÊs ++ Teljes kÊpernyő ++ KilÊpÊs a teljes kÊpernyős mÃŗdbÃŗl ++ LejÃĄtszÃĄsvezÊrlők elrejtÊse ++ KÃļvetkező ++ TovÃĄbbi beÃĄllítÃĄsok elrejtÊse ++ TovÃĄbbi beÃĄllítÃĄsok megjelenítÊse ++ SzÃŧneteltetÊs ++ LejÃĄtszÃĄs ++ SebessÊg ++ Előző ++ Jelenlegi: Összes ismÊtlÊse. IsmÊtlÊs mÃŗd be/ki. ++ Jelenlegi: Nincs ismÊtlÊs. IsmÊtlÊs mÃŗd be/ki. ++ Jelenlegi: Egy ismÊtlÊse. IsmÊtlÊs mÃŗd be/ki. ++ VisszatekerÊs ++ LejÃĄtszÃĄsi folyamat ++ BeÃĄllítÃĄsok ++ LejÃĄtszÃĄsvezÊrlők mutatÃĄsa ++ KeverÊs mÃŗd bekapcsolÃĄsa ++ KeverÊs mÃŗd kikapcsolÃĄsa ++ LeÃĄllítÃĄs ++ VR-mÃŗd ++ A letÃļltÊs befejeződÃļtt ++ LetÃļltÊs ++ LetÃļltÊs folyamatban ++ Nem sikerÃŧlt a letÃļltÊs ++ LetÃļltÊsek ++ LetÃļltÊsek szÃŧneteltetve ++ A letÃļltÊsek hÃĄlÃŗzatra vÃĄrakoznak ++ A letÃļltÊsek Wi-Fi-re vÃĄrakoznak ++ LetÃļltÊsek tÃļrlÊse folyamatban ++ %1$s, %2$s ++ %1$.2f Mbps ++ MonÃŗ ++ %1$d × %2$d ++ Alternatív ++ Felirat ++ KommentÃĄr ++ KiegÊszítő ++ Automatikus ++ Nincs ++ Hang ++ SztereÃŗ ++ TÊrhatÃĄsÃē hangzÃĄs ++ 5.1-es tÊrhatÃĄsÃē hangzÃĄs ++ 7.1-es tÊrhatÃĄsÃē hangzÃĄs ++ Ismeretlen ++ Ismeretlen (%1$s) ++ Címsor ++ KÊp ++ Gomb, kÊp ++ HivatkozÃĄs ++ SzÃŧneteltetÊs ++ LejÃĄtszÃĄs ++ UgrÃĄs vissza ++ UgrÃĄs előre ++ UgrÃĄs a kÃļvetkező elemre ++ UgrÃĄs az előző elemre ++ MenÃŧ ++ MenÃŧsor ++ MenÃŧelem ++ Folyamatjelző ++ VÃĄlasztÃŗgomb-csoport ++ LapfÃŧl ++ GÃļrgetősÃĄv ++ "KeresÊs" ++ ForgÃŗ gomb ++ elfoglalt ++ Ãļsszecsukva ++ kibontva ++ vegyes ++ ki ++ be ++ nincs kivÃĄlasztva ++ "999+" ++ ÖsszegzÊs ++ LapfÃŧlek listÃĄja ++ IdőmÊrő ++ EszkÃļztÃĄr ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..ac9bff9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,137 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ ÕÕ¸ÕžÕ¸Ö€ÕĄÕ¯ÕĄÕļ ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ ÕĄÕŧÕĄÕģ ÕŋÕĄÕŦ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ ÕĄÕŧÕĄÕģ ÕŋÕĄÕŦ ++ ++ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ Õ°ÕĨÕŋ ÕŋÕĄÕŦ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ Õ°ÕĨÕŋ ÕŋÕĄÕŦ ++ ++ "ÔąÕļցÕļÕĨÕŦ ÕŖÕŦÕ­ÕĄÕžÕ¸Ö€ Õ§Õģ" ++ "ÔąÕļցÕļÕĨÕŦ ÕžÕĨրև" ++ "ÔąÕĩÕŦ Õ¨ÕļÕŋÖ€ÕĄÕļքÕļÕĨր" ++ "ÕŠÕĄÕŋÖ€ÕĄÕŊÕŋ Õ§" ++ "ՏÕĨÕŊÕļÕĨÕŦ ÕĸÕ¸ÕŦորը" ++ "Ô¸ÕļÕŋրÕĨÕŦ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽ" ++ "ÔąÕ†Õ‹ÔąÕÔĩÔŧ" ++ "ՄÔģÔąÕ‘Õ†ÔĩÔŧ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ÕĸÕĄÖÕĄÕŋ" ++ "Sym+" ++ "Menu+" ++ "ՈրոÕļումâ€Ļ" ++ "ՋÕļÕģÕĨÕŦ Õ°ÕĄÖ€ÖÕ¸Ö‚Õ´Õ¨" ++ "ՈրոÕļÕ´ÕĄÕļ Õ°ÕĄÖ€ÖÕ¸Ö‚Õ´" ++ "ՈրոÕļÕĨÕŦ" ++ "ÕˆÖ‚Õ˛ÕĄÖ€Õ¯ÕĨÕŦ Õ°ÕĄÖ€ÖÕ¸Ö‚Õ´Õ¨" ++ "ÕÕĄÕĩÕļÕĄÕĩÕĢÕļ որոÕļում" ++ "ÔŋÕĢÕŊÕžÕĨÕŦâ€Ļ" ++ "ÔŋÕĢÕŊÕžÕĨÕŦ %s Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕĢ Õ´ÕĢÕģոցո՞" ++ "ÔžÕĄÕŦÕĨÕŦ" ++ "ÕŠÕĄÕŋÕĄÕŊÕ­ÕĄÕļÕĨÕŦ" ++ "ՏÕĨÕŊÕĄÕĻÕĄÕļÕŖ" ++ "ՄÕĨրÕĒÕĨÕŦ" ++ "ÔąÕžÕĄÖ€ÕŋÕĨÕŦ" ++ "ՄուÕŋÖ„ÕĄÕĩÕĢÕļ ÕĻÕĄÕļÕŖ" ++ "Ô¸ÕļÕŠÕĄÖÕĢÕ¯ ÕĻÕĄÕļÕŖ" ++ "ՄուÕŋÖ„ÕĄÕĩÕĢÕļ ÕĻÕĄÕļÕŖÕĢ ÕĻÕŋում" ++ ÔŋÕ¸Õ´ÕĸÕ¸ ÕĄÖ€Õ¯Õ˛ ++ ÔąÕĩÕĒÕ´ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´ Õ§ ++ ՄուÕŋք ÕŖÕ¸Ö€ÕŽÕĨք՝ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕļ Ö…ÕŖÕŋÕĄÕŖÕ¸Ö€ÕŽÕĨÕŦու Õ°ÕĄÕ´ÕĄÖ€ ++ ÕÕ­ÕĄÕŦ մուÕŋÖ„ÕĄÕĩÕĢÕļ ÕŋÕžÕĩÕĄÕŦÕļÕĨր ++ Õ‰ÕĄÖƒÕĢց ÕˇÕĄÕŋ ÕŊÕĄÖ€Ö„ÕĨրում Õ§ ÕĸÕ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´ ++ Ô˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÖ€Õ¤ÕĨÕļ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´ Õ§ ++ ÔąÕļÕģÕĄÕŋÕžÕĄÕŽ Õ§ մուÕŦÕŋÕĢÕ´ÕĨÕ¤ÕĢÕĄ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕĢց ++ ՀÕĨÖ€ÕŠÕĄÖÕĄÕļÕ¯Õ¨ Õ¤ÕĄÕŋÕĄÖ€Õ¯ Õ§ ++ ÕÕ­ÕĄÕŦ ÕĄÕŧÕĄÕģÕĄÖÕĄÕžÖ‰ Õ“Õ¸Ö€ÕąÕĨք ÕĄÕžÕĨÕŦÕĢ Õ¸Ö‚ÕˇÖ‰ ++ Õ‰Õ°ÕĄÕģÕ¸Õ˛ÕžÕĨց ÕĄÕžÕĄÖ€ÕŋÕĨÕŦ։ ՆորÕĢց ÖƒÕ¸Ö€ÕąÕĨք։ ++ ÔąÕĩÕŊ ÕŖÕ¸Ö€ÕŽÕ¸Õ˛Õ¸Ö‚ÕŠÕĩուÕļÕ¨ ÕļÕĨÖ€Õ¯ÕĄÕĩումÕŊ Õ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ ÕšÕ§ ++ ՆÕĨÖ€ÕĄÕŽÕ´ÕĄÕļ/ÕĄÖ€ÕŋÕĄÕŽÕ´ÕĄÕļ ÕŊÕ­ÕĄÕŦ ++ Ô˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÕļÕ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ Õ§ ÕĄÕĩÕŊ ÕŋÕĄÖ€ÕĄÕŽÕĄÕˇÖ€ÕģÕĄÕļում ++ ÔŗÕ¸Ö€ÕŽÕ¸Õ˛Õ¸Ö‚ÕŠÕĩուÕļÕ¨ Õ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ ÕšÕ§ ÕĄÕĩÕŊ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕ¸Ö‚Õ´ ++ Ô˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÖ€ÕŖÕĨÕŦÕĄÖƒÕĄÕ¯ÕžÕĄÕŽ Õ§ ++ ՄուÕŋքը Õ´ÕĨրÕĒÕžÕĄÕŽ Õ§ ++ ÔąÕļÕ°Ö€ÕĄÕĒÕĨÕˇÕŋ Õ§ ÕēրÕĨÕ´ÕĢում Õ°ÕĄÕˇÕĢÕž ++ ÕŠÕĄÕ°ÕĄÕļÕģÕžÕ¸Ö‚Õ´ Õ§ Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ ++ ÔąÕĩÕŦևÕŊ Õ°ÕļÕĄÖ€ÕĄÕžÕ¸Ö€ ÕšÕ§ Õ¯ÕĄÕŋÕĄÖ€Õ¸Ö‚Õ´ÕļÕĨր ÕĸÕĄÖ ÕŠÕ¸Õ˛ÕļÕĨÕŦ ++ ՄÕĢÕĄÖÕļÕĨÕŦ ÕĨÕļÕŠÕĄÕŖÖ€ÕĨրը ++ ÔąÕļÕģÕĄÕŋÕĨÕŦ ÕĨÕļÕŠÕĄÕŖÖ€ÕĨրը ++ ÔąÕŧÕĄÕģ ++ ՄÕŋÕļÕĨÕŦ ÕŦÕĢÕĄÕ§Õ¯Ö€ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´ ++ ԴուրÕŊ ÕŖÕĄÕŦ ÕŦÕĢÕĄÕ§Õ¯Ö€ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´ÕĢց ++ ÔšÕĄÖ„ÖÕļÕĨÕŦ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕšÕĢ Õ¯ÕĄÕŧÕĄÕžÕĄÖ€ÕļÕĨրը ++ ÔąÕŧÕĄÕģ ++ ÔšÕĄÖ„ÖÕļÕĨÕŦ ÕŦÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕš Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨրը ++ Õ‘Õ¸Ö‚ÖÕĄÕ¤Ö€ÕĨÕŦ ÕŦÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕš Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨրը ++ Ô´ÕĄÕ¤ÕĄÖ€ÕĨցÕļÕĨÕŦ ++ Õ†ÕžÕĄÕŖÕĄÖ€Õ¯ÕĨÕŦ ++ ÔąÖ€ÕĄÕŖÕ¸Ö‚ÕŠÕĩուÕļ ++ ՀÕĨÕŋ ++ Ô¸ÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢÔŋրկÕļÕĨÕŦ ÕĸÕ¸ÕŦորըÂģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ ++ Ô¸ÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢՉկրկÕļÕĨÕŦÂģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ ++ Ô¸ÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢÔŋրկÕļÕĨÕŦ Õ´ÕĨÕ¯Õ¨Âģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ ++ ՀÕĨÕŋ ++ Õ†ÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ Õ¨ÕļÕŠÕĄÖÖ„Õ¨ ++ ÔŋÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨր ++ Õ‘Õ¸Ö‚ÖÕĄÕ¤Ö€ÕĨÕŦ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕšÕĢ Õ¯ÕĄÕŧÕĄÕžÕĄÖ€ÕļÕĨրը ++ ՄÕĢÕĄÖÕļÕĨÕŦ Õ­ÕĄÕŧÕ¨ ÕļÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´Õ¨ ++ ÔąÕļÕģÕĄÕŋÕĨÕŦ Õ­ÕĄÕŧÕ¨ ÕļÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´Õ¨ ++ ÔŋÕĄÕļÕŖÕļÕĨցÕļÕĨÕŦ ++ VR ÕŧÕĨÕĒÕĢÕ´ ++ ՆÕĨրÕĸÕĨÕŧÕļումÕļ ÕĄÕžÕĄÖ€ÕŋÕžÕĨց ++ ՆÕĨրÕĸÕĨÕŧÕļÕĨÕŦ ++ ՆÕĨրÕĸÕĨÕŧÕļում ++ Õ‰Õ°ÕĄÕģÕ¸Õ˛ÕžÕĨց ÕļÕĨրÕĸÕĨÕŧÕļÕĨÕŦ ++ ՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨր ++ ՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨրը Õ¤ÕĄÕ¤ÕĄÖ€ÕĨÖÕžÕĄÕŽ ÕĨÕļ ++ Õ‘ÕĄÕļցÕĢ Õ¸Ö€Õ¸Õļում ++ Wi-Fi ÖÕĄÕļցÕĢ Õ¸Ö€Õ¸Õļում ++ ՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨրը Õ°ÕĨÕŧÕĄÖÕžÕ¸Ö‚Õ´ ÕĨÕļ ++ %1$s, %2$s ++ %1$.2f ՄÕĸÕĢÕŠ/Õž ++ ՄոÕļÕ¸ ++ %1$d × %2$d ++ ÔąÕĩÕŦÕ¨ÕļÕŋÖ€ÕĄÕļÖ„ÕĄÕĩÕĢÕļ ++ ÔĩÕļÕŠÕĄÕŖÖ€ÕĨր ++ ՄÕĨÕ¯ÕļÕĄÕĸÕĄÕļÕ¸Ö‚ÕŠÕĩուÕļÕļÕĨր ++ ÔŧÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕš ++ ÔąÕžÕŋÕ¸Õ´ÕĄÕŋ ++ ÕˆÕš Õ´ÕĨÕ¯Õ¨ ++ ÔąÕ¸Ö‚Õ¤ÕĢÕ¸ ++ ՍÕŋÕĨրÕĨÕ¸ ++ ÔžÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļ ++ 5․1 ÕŽÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļ ++ 7․1 ÕŽÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļ ++ ÔąÕļÕ°ÕĄÕĩÕŋ ++ ÔąÕļÕ°ÕĄÕĩÕŋ (%1$s) ++ Õ†Õ¯ÕĄÖ€ ++ ÔŋÕ¸ÕŗÕĄÕ¯, ÕļÕ¯ÕĄÖ€ ++ Õ€Õ˛Õ¸Ö‚Õ´ ++ Ô´ÕĄÕ¤ÕĄÖ€ÕĨցÕļÕĨÕŦ ++ Õ†ÕžÕĄÕŖÕĄÖ€Õ¯ÕĨÕŦ ++ ՀÕĨÕŋ ÕŖÕļÕĄÕŦ ++ ÔąÕŧÕĄÕģ ÕŖÕļÕĄÕŦ ++ ÔąÕļցÕļÕĨÕŦ Õ°ÕĄÕģորդ ÕŋÕĄÖ€Ö€ÕĢÕļ ++ ÔąÕļցÕļÕĨÕŦ ÕļÕĄÕ­Õ¸Ö€Õ¤ ÕŋÕĄÖ€Ö€ÕĢÕļ ++ Ô¸ÕļÕŋÖ€ÕĄÖÕĄÕļÕ¯ ++ "ՈրոÕļÕĨÕŦ" ++ ÕĄÕļÕģÕĄÕŋÕĄÕŽ ++ Õ´ÕĢÕĄÖÖ€ÕĄÕŽ ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..35ea967 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Maju cepat %d detik ++ Maju cepat %d detik ++ ++ ++ Mundur %d detik ++ Mundur %d detik ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lainnya" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ "Jawab" ++ "Video" ++ "Tolak" ++ "Tutup" ++ "Panggilan masuk" ++ "Panggilan sedang berlangsung" ++ "Menyaring panggilan masuk" ++ Sedang diputar ++ Login untuk menggunakan aplikasi ini ++ Data input salah ++ Terlalu banyak perangkat digunakan untuk mendengarkan ++ Sedang memutar konten tersebut ++ Terputus dari aplikasi media ++ Tidak ada antrean lagi ++ Terjadi error. Coba nanti. ++ Tidak dapat diselesaikan. Coba lagi. ++ Tidak dapat melakukannya saat ini ++ Input/output error ++ Tidak dapat memuat konten tersebut di sini ++ Aplikasi ini tidak dapat melakukannya ++ Konten tersebut diblokir ++ Akses ditolak ++ Memerlukan akses premium ++ Memerlukan penyiapan ++ Tidak dapat melewati lagu lagi ++ Aktifkan subtitel ++ Nonaktifkan subtitel ++ Maju cepat ++ Masuk layar penuh ++ Keluar dari layar penuh ++ Menyembunyikan kontrol pemutar ++ Berikutnya ++ Sembunyikan setelan tambahan ++ Tampilkan setelan tambahan ++ Jeda ++ Putar ++ Kecepatan ++ Sebelumnya ++ Mode saat ini: Ulang semua. Alihkan mode berulang. ++ Mode saat ini: Tidak berulang. Alihkan mode berulang. ++ Mode saat ini: Ulang sekali. Alihkan mode berulang. ++ Putar Ulang ++ Progres pemutaran ++ Setelan ++ Menampilkan kontrol pemutar ++ Aktifkan mode acak ++ Nonaktifkan mode acak ++ Berhenti ++ Mode VR ++ Download selesai ++ Download ++ Mendownload ++ Download gagal ++ Download ++ Download dijeda ++ Download menunggu konektivitas jaringan ++ Download menunggu konektivitas Wi-Fi ++ Menghapus download ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternatif ++ CC ++ Komentar ++ Tambahan ++ Otomatis ++ Tidak ada ++ Audio ++ Stereo ++ Suara surround ++ 5.1 surround sound ++ 7.1 surround sound ++ Tidak diketahui ++ Tidak diketahui (%1$s) ++ Jeda ++ Putar ++ Mundur ++ Maju ++ Cari item berikutnya ++ Cari item sebelumnya ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..c619fbb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Venjulegt ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ SpÃŗla ÃĄfram um %d sekÃēndu ++ SpÃŗla ÃĄfram um %d sekÃēndur ++ ++ ++ SpÃŗla til baka um %d sekÃēndu ++ SpÃŗla til baka um %d sekÃēndur ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "SjÃĄ allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslÃĄ" ++ "Sym+" ++ "Valmynd+" ++ "Leitaâ€Ļ" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ "Svara" ++ "Myndsímtal" ++ "Hafna" ++ "Leggja ÃĄ" ++ "Símtal berst" ++ "Símtal í gangi" ++ "Síar símtal sem berst" ++ Í spilun ++ SkrÃĄÃ°u Þig inn til að nota forritið ++ RÃļng inntaksgÃļgn ++ Hlustað í of mÃļrgum tÃĻkjum ++ Þetta efni er Þegar í spilun ++ Aftengdist efnisspilunarforriti ++ Ekkert annað í rÃļðinni ++ Eitthvað fÃŗr Ãērskeiðis. Reyndu aftur síðar. ++ Ekki tÃŗkst að ljÃēka Þessu. Reyndu aftur. ++ Ekki er hÃĻgt að framkvÃĻma Þetta eins og er ++ Villa í inntaki/Ãēttaki ++ Efnið er ekki tiltÃĻkt hÊr ++ Forritið getur ekki framkvÃĻmt Þetta ++ Þetta efni er ÃĄ bannlista ++ Aðgangi hafnað ++ Krefst Premium-aðgangs ++ Uppsetningar er krafist ++ Ekki hÃĻgt að sleppa fleiri lÃļgum ++ Kveikja ÃĄ skjÃĄtexta ++ SlÃļkkva ÃĄ skjÃĄtexta ++ SpÃŗla ÃĄfram ++ Nota allan skjÃĄinn ++ HÃĻtta að nota allan skjÃĄinn ++ Fela spilunarstÃŊringar ++ Áfram ++ Fela viðbÃŗtarstillingar ++ SÃŊna viðbÃŗtarstillingar ++ HlÊ ++ Spila ++ Hraði ++ Fyrri ++ Stilling nÃē: Endurtaka allt. Breyta endurtekningastillingu. ++ Stilling nÃē: Endurtaka ekkert. Breyta endurtekningastillingu. ++ Stilling nÃē: Endurtaka eitt. Breyta endurtekningastillingu. ++ SpÃŗla til baka ++ Framvinda spilunar ++ Stillingar ++ SÃŊna spilunarstÃŊringar ++ Kveikja ÃĄ stokkun ++ SlÃļkkva ÃĄ stokkun ++ StÃļðva ++ sÃŊndarveruleikastilling ++ Niðurhali lokið ++ SÃĻkja ++ SÃĻkir ++ Niðurhal mistÃŗkst ++ Niðurhal ++ NiðurhÃļl í bið ++ NiðurhÃļl bíða eftir netkerfi ++ NiðurhÃļl bíða eftir WiFi ++ FjarlÃĻgir niðurhal ++ %1$s, %2$s ++ %1$.2f Mb/sek. ++ EinÃŗma ++ %1$d × %2$d ++ Annað ++ SkjÃĄtextar ++ LÃŊsingar ++ Auka ++ SjÃĄlfvirkt ++ Ekkert ++ HljÃŗÃ° ++ VÃ­Ã°Ãŗma ++ VÃ­Ã°Ãŗma hljÃŗÃ° ++ 5.1 vÃ­Ã°Ãŗma hljÃŗÃ° ++ 7.1 vÃ­Ã°Ãŗma hljÃŗÃ° ++ ÓÞekkt ++ ÓÞekkt (%1$s) ++ Gera hlÊ ++ Spila ++ SpÃŗla til baka ++ SpÃŗla ÃĄfram ++ SpÃŗla að nÃĻsta atriði ++ SpÃŗla að fyrra atriði ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..eedeaf5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,151 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normale ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Avanti di %d secondo ++ Avanti di %d secondi ++ ++ ++ Indietro di %d secondo ++ Indietro di %d secondi ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cercaâ€Ļ" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ Avviso ++ "Rispondi" ++ "Video" ++ "Rifiuta" ++ "Riaggancia" ++ "Chiamata in arrivo" ++ "Chiamata in corso" ++ "Applicazione filtro a chiamata in arrivo" ++ Casella combinata ++ Ora in riproduzione ++ Accedi per usare questa app ++ Dati ingresso non corretti ++ Ascolto attivo su troppi dispositivi ++ Contenuti già in riproduzione ++ Disconnessione da app multimediale ++ Nient\'altro in coda ++ Si è verificato un problema. Prova piÚ tardi. ++ Impossibile completare. Riprova. ++ Al momento non è possibile svolgere l\'operazione ++ Errore ingresso/uscita ++ Qui non è possibile scaricare questi contenuti ++ Questa app non supporta l\'azione richiesta ++ Contenuti bloccati ++ Accesso negato ++ È necessario l\'accesso Premium ++ È richiesta la configurazione ++ Impossibile saltare altre tracce ++ Attiva i sottotitoli ++ Disattiva i sottotitoli ++ Avanti veloce ++ Attiva schermo intero ++ Esci da schermo intero ++ Nascondi i controlli del player ++ Avanti ++ Nascondi impostazioni aggiuntive ++ Mostra impostazioni aggiuntive ++ Pausa ++ Riproduci ++ Velocità ++ Indietro ++ Modalità attuale: Ripeti tutto. Cambia modalità di ripetizione. ++ Modalità attuale: Non ripetere nulla. Cambia modalità di ripetizione. ++ Modalità attuale: Ripeti uno. Cambia modalità di ripetizione. ++ Riavvolgi ++ Avanzamento della riproduzione ++ Impostazioni ++ Mostra i controlli del player ++ Attiva la riproduzione casuale ++ Disattiva la riproduzione casuale ++ Interrompi ++ Modalità VR ++ Download completato ++ Scarica ++ Download in corsoâ€Ļ ++ Download non riuscito ++ Download ++ Download in pausa ++ Download in attesa di rete ++ Download in attesa di Wi-Fi ++ Rimozione dei downloadâ€Ļ ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Versione alternativa ++ Sottotitoli ++ Commenti ++ Contenuti supplementari ++ Auto ++ Nessuno ++ Audio ++ Stereo ++ Audio surround ++ Audio surround 5.1 ++ Audio surround 7.1 ++ Sconosciuta ++ Sconosciute (%1$s) ++ Titolo ++ Immagine ++ Pulsante, Immagine ++ Metti in pausa ++ Riproduci ++ Vai indietro ++ Vai avanti ++ Vai all\'elemento successivo ++ Vai all\'elemento precedente ++ Barra dei menu ++ Elemento del menu ++ Barra di avanzamento ++ Gruppo radio ++ Barra di scorrimento ++ "Cerca" ++ Pulsante girevole ++ occupato ++ chiuso ++ aperto ++ misto ++ no ++ sÃŦ ++ non selezionato ++ "999+" ++ Riepilogo ++ Lista delle tab ++ Barra degli strumenti ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..74c7106 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,157 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ רגילה ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ ++ ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ ++ "ניווט ×œ×“×Ŗ הבי×Ē" ++ "ניווט למ×ĸלה" ++ "×ĸוד אפשרויו×Ē" ++ "סיום" ++ "ה×Ļג×Ē ×”×›×•×œ" ++ "בחיר×Ē ××¤×œ×™×§×Ļיה" ++ "כבוי" ++ "מופ×ĸל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "×Ēפריט+" ++ "חיפושâ€Ļ" ++ "מחיק×Ē ×”×Š××™×œ×Ēה" ++ "שאיל×Ē×Ē ×—×™×¤×•×Š" ++ "חיפוש" ++ "שליח×Ē ×Š××™×œ×Ēה" ++ "חיפוש קולי" ++ "שי×Ēות ×ĸם" ++ "שי×Ēות ×ĸם %s" ++ "כיוו×Ĩ" ++ ה×Ēראה ++ "מ×ĸנה" ++ "וידאו" ++ "דחייה" ++ "ני×Ēוק" ++ "שיחה נכנס×Ē" ++ "שיחה פ×ĸילה" ++ "סינון שיחה נכנס×Ē" ++ ×Ēיבה משולב×Ē ++ הפריט שמופ×ĸל ×ĸכשיו ++ כדי להש×Ēמ׊ באפליק×Ļיה הזו, ×Ļריך להיכנס לחשבון ++ × ×Ēוני קלט שגויים ++ מ×Ēב×Ļ×ĸ×Ē ×”××–× ×” ביו×Ēר מדי מכשירים ++ ה×Ēוכן הזה כבר פו×ĸל ++ נו×Ē×§ מאפליק×Ļיי×Ē ×”×ž×“×™×” ++ אין ×ĸוד פריטים ברשימ×Ē ×”×‘××™× ב×Ēור ++ משהו הש×Ēבש. אפ׊ר לנסו×Ē ×ž××•×—×¨ יו×Ēר. ++ לא ני×Ēן להשלים א×Ē ×”×¤×ĸולה. רו×Ļה לנסו×Ē ×Š×•×‘? ++ אי אפ׊ר לב×Ļ×ĸ א×Ē ×”×¤×ĸולה הזו כרג×ĸ ++ × ×Ēוני קלט או פלט שגויים ++ ה×Ēוכן הזה לא זמין כאן ++ אי אפ׊ר לב×Ļ×ĸ א×Ē ×”×¤×ĸולה הזו באפליק×Ļיה הזו ++ ה×Ēוכן הזה חסום ++ הגישה נדח×Ēה ++ נדרש×Ē ×’×™×Š×” ל-Premium ++ נדרש×Ē ×”×’×“×¨×” ++ אי אפ׊ר לדלג יו×Ēר ×ĸל טראקים ++ הפ×ĸל×Ē ×›×Ēוביו×Ē ++ השב×Ē×Ē ×›×Ēוביו×Ē ++ הר×Ļה קדימה ++ כניסה למסך מלא ++ י×Ļיאה ממסך מלא ++ הס×Ēר×Ē ×¤×§×“×™ הנגן ++ הבא ++ הס×Ēר×Ē ×”×”×’×“×¨×•×Ē ×”× ×•×Ą×¤×•×Ē ++ ה×Ļג×Ē ×”×’×“×¨×•×Ē × ×•×Ą×¤×•×Ē ++ השהיה ++ הפ×ĸלה ++ מהירו×Ē ++ הקודם ++ המ×Ļב הנוכחי: חזרה ×ĸל כל הפריטים. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה. ++ המ×Ļב הנוכחי: ללא חזרה. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה. ++ המ×Ļב הנוכחי: חזרה ×ĸל פריט אחד. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה. ++ הר×Ļה אחורה ++ ה×Ēקדמו×Ē ×”×”×¤×ĸלה ++ הגדרו×Ē ++ ה×Ļג×Ē ×¤×§×“×™ הנגן ++ הפ×ĸל×Ē ×ž×Ļב ההפ×ĸלה האקראי×Ē ++ השב×Ē×Ē ×ž×Ļב ההפ×ĸלה האקראי×Ē ++ הפסקה ++ מ×Ļב VR ++ ההורדה הושלמה ++ הורדה ++ ההורדה מ×Ēב×Ļ×ĸ×Ē ++ ההורדה לא הושלמה ++ הורדו×Ē ++ ההורדו×Ē ×”×•×Š×”×• ++ ההורדו×Ē ×‘×”×ž×Ēנה לרש×Ē ++ ההורדו×Ē ×‘×”×ž×Ēנה ל-Wi-Fi ++ מסיר הורדו×Ē ++ %1$s‏, %2$s ++ %1$.2f מגה סיביו×Ē ×œ×Š× ×™×™×” ++ מונו ++ %1$d × %2$d ++ חלופי ++ כ×Ēוביו×Ē ++ פרשנו×Ē ++ משלים ++ אוטומטי ++ ללא ++ אודיו ++ סטריאו ++ סראונד ++ סראונד 5.1 ++ סראונד 7.1 ++ לא ידו×ĸ ++ לא ידו×ĸ (%1$s) ++ כו×Ēר×Ē ++ ×Ēמונה ++ לח×Ļן, ×Ēמונה ++ קישור ++ השהיה ++ הפ×ĸלה ++ דילוג אחורה ++ דילוג קדימה ++ דילוג לפריט הבא ++ דילוג לפריט הקודם ++ ×Ēפריט ++ סרגל ×Ēפריטים ++ פריט ב×Ēפריט ++ סרגל ה×Ēקדמו×Ē ++ קבו×Ļ×Ē ×¨×“×™×• ++ לשוני×Ē ++ סרגל גלילה ++ "חיפוש" ++ לח×Ļן מס×Ēובב ++ ×Ēפוס ++ מ×Ļומ×Ļם ++ מורחב ++ משולב ++ כבוי ++ מופ×ĸל ++ הבחירה בוטלה ++ "999+" ++ סיכום ++ רשימ×Ē ×œ×Š×•× ×™×•×Ē ++ טיימר ++ סרגל כלים ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..b056edb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ 標æē– ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ %d į§’æ—Šé€ã‚Š ++ %d į§’æ—Šé€ã‚Š ++ ++ ++ %d į§’åˇģきæˆģし ++ %d į§’åˇģきæˆģし ++ ++ "ホãƒŧムãĢæˆģる" ++ "前ãĢæˆģる" ++ "そぎäģ–ぎã‚Ēãƒ—ã‚ˇãƒ§ãƒŗ" ++ "厌äē†" ++ "すずãĻ襨į¤ē" ++ "ã‚ĸプãƒĒぎ選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検į´ĸâ€Ļ" ++ "検į´ĸキãƒŧワãƒŧドを削除" ++ "検į´ĸキãƒŧワãƒŧド" ++ "検į´ĸ" ++ "検į´ĸキãƒŧワãƒŧドを送äŋĄ" ++ "éŸŗåŖ°æ¤œį´ĸ" ++ "å…ąæœ‰" ++ "%sã¨å…ąæœ‰" ++ "折りたたむ" ++ ã‚ĸナãƒŧト ++ "åŋœį­”" ++ "ビデã‚Ē" ++ "拒åĻ" ++ "通話įĩ‚äē†" ++ "į€äŋĄ" ++ "通話中" ++ "į€äŋĄã‚’゚クãƒĒãƒŧãƒ‹ãƒŗã‚°ä¸­" ++ ã‚ŗãƒŗãƒœãƒœãƒƒã‚¯ã‚š ++ å†į”Ÿä¸­ ++ こぎã‚ĸプãƒĒをäŊŋį”¨ã™ã‚‹ãĢã¯ãƒ­ã‚°ã‚¤ãƒŗã—ãĻください ++ å…Ĩ力デãƒŧã‚ŋãŒé–“é•ãŖãĻいぞす ++ å†į”Ÿã—ãĻいるデバイ゚が多すぎぞす ++ å†į”Ÿä¸­ãŽã‚ŗãƒŗãƒ†ãƒŗãƒ„ã§ã™ ++ ãƒĄãƒ‡ã‚Ŗã‚ĸã‚ĸプãƒĒから切断されぞした ++ キãƒĨãƒŧが一杯でčŋŊ加できぞせん ++ エナãƒŧがį™ēį”Ÿã—ãžã—ãŸã€‚ã—ã°ã‚‰ãã—ãĻからおčŠĻしください。 ++ 厌äē†ã§ããžã›ã‚“。もう一åēĻおčŠĻしください。 ++ įžåœ¨ã€ããŽæ“äŊœã¯åŽŸčĄŒã§ããžã›ã‚“ ++ å…Ĩå‡ē力エナãƒŧです ++ ã“ãŽåœ°åŸŸã§ã¯åˆŠį”¨ã§ããĒã„ã‚ŗãƒŗãƒ†ãƒŗãƒ„ã§ã™ ++ こぎã‚ĸプãƒĒではã‚ĩポãƒŧトされãĻいぞせん ++ ã“ãŽã‚ŗãƒŗãƒ†ãƒŗãƒ„ã¯ãƒ–ãƒ­ãƒƒã‚¯ã•ã‚ŒãĻいぞす ++ ã‚ĸクã‚ģ゚が拒åĻされぞした ++ プãƒŦミã‚ĸム ã‚ĸã‚Ģã‚ĻãƒŗãƒˆãŒåŋ…čĻã§ã™ ++ ã‚ģットã‚ĸップがåŋ…čĻã§ã™ ++ これäģĨ上トナックを゚キップできぞせん ++ 字嚕ぎ有劚化 ++ å­—åš•ãŽį„ĄåŠšåŒ– ++ 旊送り ++ 全į”ģéĸ襨į¤ēãĢ変更 ++ 全į”ģéĸ襨į¤ēをįĩ‚äē† ++ プãƒŦãƒŧヤãƒŧãŽã‚ŗãƒŗãƒˆãƒ­ãƒŧãƒĢã‚’éžčĄ¨į¤ēãĢする ++ æŦĄã¸ ++ そぎäģ–ãŽč¨­åŽšãŽéžčĄ¨į¤ē ++ そぎäģ–ãŽč¨­åŽšãŽčĄ¨į¤ē ++ 一時停æ­ĸ ++ å†į”Ÿ ++ 速åēĻ ++ 前へ ++ įžåœ¨: å…¨æ›˛ãƒĒピãƒŧト。ãƒĸãƒŧドを切りæ›ŋえぞす。 ++ įžåœ¨: ãƒĒピãƒŧトãĒし。ãƒĸãƒŧドを切りæ›ŋえぞす。 ++ įžåœ¨: 1 æ›˛ãƒĒピãƒŧト。ãƒĸãƒŧドを切りæ›ŋえぞす。 ++ åˇģきæˆģし ++ å†į”Ÿä¸­ ++ č¨­åŽš ++ プãƒŦãƒŧヤãƒŧãŽã‚ŗãƒŗãƒˆãƒ­ãƒŧãƒĢã‚’čĄ¨į¤ēする ++ ã‚ˇãƒŖãƒƒãƒ•ãƒĢ ãƒĸãƒŧドを有劚ãĢする ++ ã‚ˇãƒŖãƒƒãƒ•ãƒĢ ãƒĸãƒŧãƒ‰ã‚’į„ĄåŠšãĢする ++ 停æ­ĸ ++ VR ãƒĸãƒŧド ++ ダã‚Ļãƒŗãƒ­ãƒŧドが厌äē†ã—ぞした ++ ダã‚Ļãƒŗãƒ­ãƒŧド ++ ダã‚Ļãƒŗãƒ­ãƒŧドしãĻいぞす ++ ダã‚Ļãƒŗãƒ­ãƒŧドãĢå¤ąæ•—ã—ãžã—ãŸ ++ ダã‚Ļãƒŗãƒ­ãƒŧド ++ ダã‚Ļãƒŗãƒ­ãƒŧド一時停æ­ĸ ++ ダã‚Ļãƒŗãƒ­ãƒŧド停æ­ĸ: ネットワãƒŧクæŽĨįļšä¸­ ++ ダã‚Ļãƒŗãƒ­ãƒŧド停æ­ĸ: Wi-Fi æŽĨįļšä¸­ ++ ダã‚Ļãƒŗãƒ­ãƒŧドを削除しãĻいぞす ++ %1$s、%2$s ++ %1$.2f Mbps ++ ãƒĸノナãƒĢ ++ %1$d × %2$d ++ äģŖæ›ŋ ++ å­—åš• ++ č§ŖčĒŦ ++ 誜čļŗ ++ č‡Ē動 ++ ãĒし ++ 韺媰 ++ ゚テãƒŦã‚Ē ++ ã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰ ++ 5.1 ã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰ ++ 7.1 ã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰ ++ 不明 ++ 不明īŧˆ%1$sīŧ‰ ++ čĻ‹å‡ēし ++ į”ģ像 ++ ボã‚ŋãƒŗã€į”ģ像 ++ ãƒĒãƒŗã‚¯ ++ 一時停æ­ĸ ++ å†į”Ÿ ++ åˇģきæˆģし ++ 旊送り ++ æŦĄãŽã‚ĸイテムãĢį§ģ動 ++ 前ぎã‚ĸイテムãĢį§ģ動 ++ ãƒĄãƒ‹ãƒĨãƒŧ ++ ãƒĄãƒ‹ãƒĨãƒŧバãƒŧ ++ ãƒĄãƒ‹ãƒĨãƒŧã‚ĸイテム ++ 進行įŠļæŗãƒãƒŧ ++ ナジã‚ĒグãƒĢãƒŧプ ++ ã‚ŋブ ++ ゚クロãƒŧãƒĢバãƒŧ ++ "検į´ĸ" ++ ã‚šãƒ”ãƒŗãƒœã‚ŋãƒŗ ++ äŊœæĨ­ä¸­ ++ į¸Žå°ä¸­ ++ åą•é–‹ä¸­ ++ æˇˇåˆ ++ ã‚Ēフ ++ ã‚Ēãƒŗ ++ æœĒ選択 ++ "999+" ++ æĻ‚čρ ++ ã‚ŋブãƒĒ゚ト ++ ã‚ŋイマãƒŧ ++ ツãƒŧãƒĢバãƒŧ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..a4171ba +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,154 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ áƒŠáƒ•áƒ”áƒŖáƒšáƒ”áƒ‘áƒ áƒ˜áƒ•áƒ˜ ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ áƒŦინ გადახვევა %d áƒŦამით ++ áƒŦინ გადახვევა %d áƒŦამით ++ ++ ++ áƒŖáƒ™áƒáƒœ გადახვევა %d áƒŦამით ++ áƒŖáƒ™áƒáƒœ გადახვევა %d áƒŦამით ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანáƒĸები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "áƒĢიებაâ€Ļ" ++ "მოთხოვნის áƒ’áƒáƒĄáƒŖáƒ¤áƒ—áƒáƒ•áƒ”áƒ‘áƒ" ++ "მოთხოვნის áƒĢიება" ++ "áƒĢიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი áƒĢიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეáƒĒვა" ++ გაფრთხილება ++ "áƒžáƒáƒĄáƒŖáƒŽáƒ˜" ++ "ვიდეო" ++ "áƒŖáƒáƒ áƒ§áƒáƒ¤áƒ" ++ "გათიშვა" ++ "შემომავალი ზარი" ++ "მიმდინარე ზარი" ++ "შემომავალი ზარების გაáƒĒხრილვა" ++ ამჟამად áƒŖáƒ™áƒ áƒáƒ•áƒĄ ++ ამ აპით სარგებლობისთვის შედით ქიქáƒĸემაში ++ შეáƒĸანილი მონაáƒĒემები არაქáƒŦორია ++ მოსმენა მიმდინარეობს მეáƒĸისმეáƒĸად ბევრ მოáƒŦყობილობაზე ++ ეს კონáƒĸენáƒĸი áƒŖáƒ™áƒ•áƒ” იკვრება ++ მედია აპთან კავშირი გაáƒŦყვეáƒĸილია ++ რიგში აáƒĻარაფერია ++ áƒŦარმოიáƒĨმნა შეფერხება. áƒĒადეთ მოგვიანებით. ++ áƒ“áƒáƒĄáƒ áƒŖáƒšáƒ”áƒ‘áƒ ვერ მოხერხდა. áƒĒადეთ ხელახლა. ++ ამჟამად ამის გაკეთება áƒ¨áƒ”áƒŖáƒĢლებელია ++ შეáƒĸანილი/გამოáƒĸანილი მონაáƒĒემების შეáƒĒდომა ++ ამ კონáƒĸენáƒĸქ აáƒĨ ვერ მიიáƒĻებთ ++ ეს აპი ამას ვერ გააკეთებს ++ ეს კონáƒĸენáƒĸი დაბლოკილია ++ áƒŦვდომა áƒŖáƒáƒ áƒ§áƒáƒ¤áƒ˜áƒšáƒ˜áƒ ++ საჭიროა áƒžáƒ áƒ”áƒ›áƒ˜áƒŖáƒ› áƒĸიპის áƒŦვდომა ++ საჭიროა დაყენება ++ მეáƒĸ ჩანაáƒŦერს ვერ გამოáƒĸოვებთ ++ áƒĄáƒŖáƒ‘áƒĸიáƒĸრების ჩართვა ++ áƒĄáƒŖáƒ‘áƒĸიáƒĸრების გათიშვა ++ áƒŦინ გადახვევა ++ áƒĄáƒ áƒŖáƒšáƒ”áƒ™áƒ áƒáƒœáƒ˜áƒáƒœ რეჟიმში შესვლა ++ áƒĄáƒ áƒŖáƒšáƒ”áƒ™áƒ áƒáƒœáƒ˜áƒáƒœáƒ˜ რეჟიმიდან გამოსვლა ++ დამკვრელის სამართავი áƒĻილაკების დამალვა ++ შემდეგ ++ დამაáƒĸებითი პარამეáƒĸრების დამალვა ++ დამაáƒĸებითი პარამეáƒĸრების ჩვენება ++ áƒžáƒáƒŖáƒ–áƒ ++ დაკვრა ++ ქი჊áƒĨარე ++ áƒŦინა ++ მიმდინარე რეჟიმი: ყველას გამეორება. გადართეთ გამეორების რეჟიმი. ++ მიმდინარე რეჟიმი: არაფრიქ გამეორება. გადართეთ გამეორების რეჟიმი. ++ მიმდინარე რეჟიმი: ერთის გამეორება. გადართეთ გამეორების რეჟიმი. ++ áƒŖáƒ™áƒáƒœ გადახვევა ++ დაკვრის პროგრესი ++ პარამეáƒĸრები ++ დამკვრელის სამართავი áƒĻილაკების ჩვენება ++ áƒáƒ áƒ”áƒŖáƒšáƒáƒ“ დაკვრის რეჟიმის ჩართვა ++ áƒáƒ áƒ”áƒŖáƒšáƒáƒ“ დაკვრის რეჟიმის გათიშვა ++ შეáƒŦყვეáƒĸა ++ VR რეჟიმი ++ ჩამოáƒĸვირთვა áƒ“áƒáƒĄáƒ áƒŖáƒšáƒ“áƒ ++ ჩამოáƒĸვირთვა ++ მიმდინარეობს ჩამოáƒĸვირთვა ++ ჩამოáƒĸვირთვა ვერ მოხერხდა ++ ჩამოáƒĸვირთვები ++ ჩამოáƒĸვირთვები áƒ“áƒáƒžáƒáƒŖáƒ–áƒ”áƒ‘áƒŖáƒšáƒ˜áƒ ++ ჩამოáƒĸვირთვები áƒĨსელს ელოდება ++ ჩამოáƒĸვირთვები Wi-Fi-ქ ელოდება ++ მიმდინარეობს ჩამოáƒĸვირთვების ამოშლა ++ %1$s, %2$s ++ %1$.2f მბიáƒĸ/áƒŦმ ++ მონო ++ %1$d × %2$d ++ ალáƒĸერნაáƒĸáƒ˜áƒŖáƒšáƒ˜ ++ áƒ“áƒáƒŽáƒŖáƒ áƒŖáƒšáƒ˜ áƒĄáƒŖáƒ‘áƒĸიáƒĸრები ++ კომენáƒĸარი ++ დამაáƒĸებითი ++ ავáƒĸომაáƒĸáƒŖáƒ áƒ˜ ++ არáƒĒერთი ++ áƒáƒŖáƒ“áƒ˜áƒ ++ ქáƒĸერეო ++ მოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ ხმა ++ 5.1 მოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ ხმა ++ 7.1 მოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ ხმა ++ áƒŖáƒĒნობი ++ áƒŖáƒĒნობი (%1$s) ++ áƒĄáƒáƒ—áƒáƒŖáƒ áƒ˜ ++ áƒ’áƒáƒ›áƒáƒĄáƒáƒŽáƒŖáƒšáƒ”áƒ‘áƒ ++ áƒĻილაკი, áƒ’áƒáƒ›áƒáƒĄáƒáƒŽáƒŖáƒšáƒ”áƒ‘áƒ ++ áƒ‘áƒ›áƒŖáƒšáƒ˜ ++ áƒžáƒáƒŖáƒ–áƒ ++ დაკვრა ++ áƒŖáƒ™áƒáƒœ გადახვევა ++ áƒŦინ გადახვევა ++ შემდეგ áƒ”áƒ áƒ—áƒ”áƒŖáƒšáƒ–áƒ” გადახვევა ++ áƒŦინა áƒ”áƒ áƒ—áƒ”áƒŖáƒšáƒ–áƒ” გადახვევა ++ áƒ›áƒ”áƒœáƒ˜áƒŖ ++ áƒ›áƒ”áƒœáƒ˜áƒŖáƒĄ ზოლი ++ áƒ›áƒ”áƒœáƒ˜áƒŖáƒĄ áƒ”áƒ áƒ—áƒ”áƒŖáƒšáƒ˜ ++ პროგრესის ზოლი ++ რადიო áƒ¯áƒ’áƒŖáƒ¤áƒ˜ ++ ჩანართი ++ გადაადგილების პანელი ++ "áƒĢიება" ++ დაáƒĸრიალების áƒĻილაკი ++ áƒ“áƒáƒ™áƒáƒ•áƒ”áƒ‘áƒŖáƒšáƒ˜ ++ აკეáƒĒილი ++ გაშლილი ++ áƒ¨áƒ”áƒ áƒ”áƒŖáƒšáƒ˜ ++ áƒ’áƒáƒ›áƒáƒ áƒ—áƒŖáƒšáƒ˜áƒ ++ áƒŠáƒáƒ áƒ—áƒŖáƒšáƒ˜ ++ áƒáƒŖáƒ áƒŠáƒ”áƒ•áƒ”áƒšáƒ˜ ++ "999+" ++ შეჯამება ++ ჩანართების ქია ++ áƒĸაიმერი ++ ხელსაáƒŦყოების ზოლი ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..c8a90f2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,137 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ ŌšĐ°ĐģŅ‹Đŋ҂ҋ ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ++ "НĐĩĐŗŅ–ĐˇĐŗŅ– ĐąĐĩŅ‚ĐēĐĩ ĶŠŅ‚Ņƒ" ++ "Đ–ĐžŌ“Đ°Ņ€Ņ‹ Ō›Đ°Ņ€Đ°Đš ĶŠŅ‚Ņƒ" ++ "Đ‘Đ°ŅŌ›Đ° ĐžĐŋŅ†Đ¸ŅĐģĐ°Ņ€" ++ "Đ”Đ°ĐšŅ‹ĐŊ" ++ "Đ‘Đ°Ņ€ĐģҋԓҋĐŊ ĐēĶŠŅ€Ņƒ" ++ "ŌšĐžĐģдаĐŊйаĐŊŅ‹ Ņ‚Đ°ŌŖĐ´Đ°Ņƒ" ++ "Ķ¨Đ¨Đ†Đ ĐŖ" ++ "ŌšĐžĐĄĐŖ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ĐąĐžŅ ĐžŅ€Ņ‹ĐŊ" ++ "Sym+" ++ "Menu+" ++ "ІздĐĩ҃â€Ļ" ++ "ĐĄŌąŅ€Đ°ŅƒĐ´Ņ‹ ĶŠŅˆŅ–Ņ€Ņƒ" ++ "ІздĐĩ҃ ŅŌąŅ€Đ°ŅƒŅ‹" ++ "ІздĐĩ҃" ++ "ĐĄŌąŅ€Đ°ŅƒĐ´Ņ‹ ĐļŅ–ĐąĐĩŅ€Ņƒ" ++ "Đ”Đ°ŅƒŅ‹ŅĐŋĐĩĐŊ Ņ–ĐˇĐ´Đĩ҃" ++ "Đ‘ĶŠĐģŅ–ŅŅƒ" ++ "%s Ō›ĐžĐģдаĐŊĐąĐ°ŅŅ‹ĐŧĐĩĐŊ ĐąĶŠĐģŅ–ŅŅƒ" ++ "Đ–Đ¸ŅŽ" ++ "Đ–Đ°ŅƒĐ°Đŋ" ++ "БĐĩĐšĐŊĐĩ" ++ "ŌšĐ°ĐąŅ‹ĐģдаĐŧĐ°Ņƒ" ++ "ĐĸŌąŅ‚Ō›Đ°ĐŊŅ‹ Ō›ĐžŅŽ" ++ "ĐšŅ–Ņ€Ņ–Ņ Ō›ĐžŌŖŅ‹Ņ€Đ°Ņƒ" ++ "ŌšĐžŌŖŅ‹Ņ€Đ°Ņƒ" ++ "КĐĩĐģĐŗĐĩĐŊ Ō›ĐžŌŖŅ‹Ņ€Đ°ŅƒĐ´Ņ‹ ŅŌ¯ĐˇŅƒ" ++ Đ‘Ņ–Ņ€Ņ–Đē҂ҖҀҖĐģĐŗĐĩĐŊ Ņ‚Ņ–ĐˇŅ–Đŧ ++ ŌšĐ°ĐˇŅ–Ņ€ ОКĐŊаĐŋ Ņ‚ŌąŅ€ ++ Đ‘ŌąĐģ Ō›ĐžĐģдаĐŊйаĐŊŅ‹ ĐŋаКдаĐģаĐŊ҃ Ō¯ŅˆŅ–ĐŊ аĐēĐēĐ°ŅƒĐŊŅ‚Ō›Đ° ĐēŅ–Ņ€Ņ–ŌŖŅ–Đˇ. ++ ĐšŅ–Ņ€Ņ–Ņ Đ´ĐĩŅ€ĐĩĐē Đ´ŌąŅ€Ņ‹Ņ ĐĩĐŧĐĩҁ. ++ ĐĸŅ‹Đŧ ĐēĶŠĐŋ Ō›ŌąŅ€Ņ‹ĐģŌ“Ņ‹Đ´Đ° Ņ‚Ņ‹ŌŖĐ´Đ°ĐģŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€. ++ Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ОКĐŊĐ°Ņ‚Ņ‹ĐģŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€. ++ ĐœŅƒĐģŅŒŅ‚Đ¸ĐŧĐĩдиа Ō›ĐžĐģдаĐŊĐąĐ°ŅŅ‹ĐŊаĐŊ аĐļŅ‹Ņ€Đ°Ņ‚Ņ‹ĐģĐ´Ņ‹. ++ КĐĩСĐĩĐēĐēĐĩ ĐąĐ°ŅŌ›Đ° ĐĩŅˆŅ‚ĐĩŌŖĐĩ Ō›ĐžĐšŅ‹ĐģĐŧĐ°Ō“Đ°ĐŊ. ++ Đ‘Ņ–Ņ€Đ´ĐĩŌŖĐĩ Đ´ŌąŅ€Ņ‹Ņ ĐĩĐŧĐĩҁ. КĐĩĐšŅ–ĐŊŅ–Ņ€ĐĩĐē Ō›Đ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ņ–ŌŖŅ–Đˇ. ++ ĐŅŌ›Ņ‚Đ°ĐģĐŧĐ°Đ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ņ–ŌŖŅ–Đˇ. ++ ĐœŌąĐŊŅ‹ Đ´Ķ™Đģ Ō›Đ°ĐˇŅ–Ņ€ ĐžŅ€Ņ‹ĐŊĐ´Đ°Ņƒ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ. ++ ĐšŅ–Ņ€Ņ–Ņ/ŅˆŅ‹Ō“Ņ‹Ņ Đ´ĐĩŅ€ĐĩĐē Ō›Đ°Ņ‚ĐĩҁҖ ĐžŅ€Ņ‹ĐŊ аĐģĐ´Ņ‹. ++ Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊ҂҂Җ ĐžŅŅ‹ ĐļĐĩŅ€Đ´Đĩ аĐģ҃ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ. ++ Đ‘ŌąĐģ Ō›ĐžĐģдаĐŊйа ĐŧŌąĐŊŅ‹ ĐžŅ€Ņ‹ĐŊдаК аĐģĐŧĐ°ĐšĐ´Ņ‹. ++ Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ĐąĐģĐžĐēŅ‚Đ°ĐģŌ“Đ°ĐŊ. ++ Đ ŌąŌ›ŅĐ°Ņ‚ ĐļĐžŌ›. ++ ĐŸŅ€ĐĩĐŧĐ¸ŅƒĐŧ Ņ€ŌąŌ›ŅĐ°Ņ‚ Ō›Đ°ĐļĐĩŅ‚. ++ Đ Đĩ҂҂Đĩ҃ Ō›Đ°ĐļĐĩŅ‚. ++ Đ‘Đ°ŅŌ›Đ° Đ°ŅƒĐ´Đ¸ĐžŅ‚Ņ€ĐĩĐēŅ‚ĐĩŅ€Đ´Ņ– ĶŠŅ‚ĐēŅ–ĐˇŅ–Đŋ ĐļŅ–ĐąĐĩŅ€Ņƒ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ. ++ ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ´Ņ– Ō›ĐžŅŅƒ ++ ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ´Ņ– ĶŠŅˆŅ–Ņ€Ņƒ ++ Đ–Ņ‹ĐģдаĐŧ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ĐĸĐžĐģҋԛ ŅĐēŅ€Đ°ĐŊĐ´Ņ‹ Ņ€ĐĩĐļиĐŧĐŗĐĩ ĐēŅ–Ņ€Ņƒ ++ ĐĸĐžĐģҋԛ ŅĐēŅ€Đ°ĐŊĐ´Ņ‹ Ņ€ĐĩĐļиĐŧĐŊĐĩĐŊ ŅˆŅ‹Ō“Ņƒ ++ ОйĐŊĐ°Ņ‚Ō›Ņ‹ŅˆŅ‚Ņ‹ ĐąĐ°ŅŌ›Đ°Ņ€Ņƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩҀҖĐŊ ĐļĐ°ŅŅ‹Ņ€Ņƒ ++ КĐĩĐģĐĩҁҖ ++ ŌšĐžŅŅ‹ĐŧŅˆĐ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Ņ– ĐļĐ°ŅŅ‹Ņ€Ņƒ ++ ŌšĐžŅŅ‹ĐŧŅˆĐ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Ņ– ĐēĶŠŅ€ŅĐĩŅ‚Ņƒ ++ ĐšŅ–Đ´Ņ–Ņ€Ņ‚Ņƒ ++ ОйĐŊĐ°Ņ‚Ņƒ ++ Đ–Ņ‹ĐģдаĐŧĐ´Ņ‹Ō› ++ АĐģĐ´Ņ‹ŌŖŌ“Ņ‹ ++ ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: ĐąĐ°Ņ€Đģҋԛ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐ°Đ´Ņ‹ ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ. ++ ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: Đĩ҈ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐąĐ°ĐšĐ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ. ++ ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: ĐąŅ–Ņ€ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐ°Đ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ. ++ ĐŅ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ОйĐŊĐ°Ņ‚Ņƒ ĐąĐ°Ņ€Ņ‹ŅŅ‹ ++ ĐŸĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€ ++ ОйĐŊĐ°Ņ‚Ō›Ņ‹ŅˆŅ‚Ņ‹ ĐąĐ°ŅŌ›Đ°Ņ€Ņƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩҀҖĐŊ ĐēĶŠŅ€ŅĐĩŅ‚Ņƒ ++ ĐŅ€Đ°ĐģĐ°ŅŅ‚Ņ‹Ņ€Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Ō›ĐžŅŅƒ ++ ĐŅ€Đ°ĐģĐ°ŅŅ‚Ņ‹Ņ€Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ ĶŠŅˆŅ–Ņ€Ņƒ ++ ĐĸĐžŌ›Ņ‚Đ°Ņ‚Ņƒ ++ VR Ņ€ĐĩĐļиĐŧŅ– ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊĐ´Ņ‹ ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€ ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊĐąĐ°Đ´Ņ‹ ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŌ“Đ°ĐŊĐ´Đ°Ņ€ ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ ĐŋŅ€ĐžŅ†Đĩҁ҂ĐĩҀҖ ŅƒĐ°Ō›Ņ‹Ņ‚ŅˆĐ° Ņ‚ĐžŌ›Ņ‚Đ°Đ´Ņ‹. ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ Ō¯ŅˆŅ–ĐŊ ĐļĐĩĐģŅ–ĐŗĐĩ Ō›ĐžŅŅ‹Đģ҃ ĐēĐĩŅ€ĐĩĐē. ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ Ō¯ŅˆŅ–ĐŊ Wi-Fi-Ō“Đ° Ō›ĐžŅŅ‹Đģ҃ ĐēĐĩŅ€ĐĩĐē. ++ Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŌ“Đ°ĐŊĐ´Đ°Ņ€ ĶŠŅˆŅ–Ņ€Ņ–ĐģŅƒĐ´Đĩ ++ %1$s, %2$s ++ %1$.2f МБ/ҁĐĩĐē ++ МоĐŊĐž ++ %1$d × %2$d ++ БаĐģаĐŧа ++ ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€ ++ ĐĸԝҁҖĐŊĐ´Ņ–Ņ€ĐŧĐĩ ++ ŌšĐžŅŅ‹ĐŧŅˆĐ° ++ ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Ņ‚Ņ‹ ++ Đ–ĐžŌ› ++ AŅƒĐ´Đ¸ĐžĐŧаСĐŧŌąĐŊ ++ ĐĄŅ‚ĐĩŅ€ĐĩĐž ++ ĐšĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ ++ 5.1 ĐēĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ ĐļŌ¯ĐšĐĩҁҖ ++ 7.1 ĐēĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ ĐļŌ¯ĐšĐĩҁҖ ++ БĐĩĐģĐŗŅ–ŅŅ–Đˇ ++ БĐĩĐģĐŗŅ–ŅŅ–Đˇ (%1$s) ++ КĐĩҁĐēŅ–ĐŊ ++ ĐĸŌ¯ĐšĐŧĐĩ, ĐēĐĩҁĐēŅ–ĐŊ ++ ĐĄŅ–ĐģŅ‚ĐĩĐŧĐĩ ++ ĐšŅ–Đ´Ņ–Ņ€Ņ‚Ņƒ ++ ОйĐŊĐ°Ņ‚Ņƒ ++ ĐŅ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ АĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ КĐĩĐģĐĩҁҖ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ĐēĐĩ ĶŠŅ‚Ņƒ ++ АĐģĐ´Ņ‹ŌŖŌ“Ņ‹ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ĐēĐĩ ĶŠŅ‚Ņƒ ++ ĐœĶ™ĐˇŅ–Ņ€ ++ "ІздĐĩ҃" ++ ĶŠŅˆŅ–Ņ€ŅƒĐģŅ– ++ Ō›ĐžŅŅƒĐģŅ‹ ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..f3ef502 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ ធម្មតážļ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ ខážļ​ទៅមážģខ %d វិនážļទី ++ ខážļ​ទៅមážģខ %d វិនážļទី ++ ++ ++ ខážļ​ថយក្រោយ %d វិនážļទី ++ ខážļ​ថយក្រោយ %d វិនážļទី ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រážŊចរážļល់" ++ "មើលទážļំងážĸស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លážģប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរកâ€Ļ" ++ "សម្ážĸážļត​សំណážŊរ" ++ "ស្វែងរកសំណážŊរ​" ++ "ស្វែងរក" ++ "ដážļក់បញ្ជážŧន​សំណážŊរ" ++ "ស្វែងរក​តážļម​សំឡេង" ++ "ចែករំលែក​ជážļ​មážŊយ" ++ "ចែក​រំលែក​ជážļ​មážŊយ %s" ++ "បង្រážŊម" ++ ជážŧន​ដំណឹង ++ "ឆ្លើយ" ++ "វីដេážĸážŧ" ++ "បដិសេធ" ++ "ដážļក់​ចážģះ" ++ "កážļរ​ហៅ​ចážŧល" ++ "កážļរ​ហៅដែលកំពážģងដំណើរកážļរ" ++ "កំពážģងពិនិត្យកážļរ​ហៅ​ចážŧល" ++ ប្រážĸប់បញ្ចážŧលគ្នážļ ++ កំពážģងចážļក់ ++ ចážŧលគណនី ដើម្បីប្រើកម្មវិធីនេះ ++ ទិន្នន័យបញ្ចážŧលមិនត្រឹមត្រážŧវ ++ កំពážģងស្ដážļប់​នៅលើ​ឧបករណ៍​ច្រើនពេក ++ កំពážģងចážļក់​ខ្លឹមសážļរនោះ​ស្រážļប់ហើយ ++ បážļនផ្ដážļច់ពីកម្មវិធី​មេឌៀ ++ មិនមážļនážĸ្វី​ផ្សេងទៀត​នៅក្នážģង​ជážŊរទេ ++ មážļនážĸ្វីមážŊយ​ខážģស​ប្រក្រតី។ សážŧមព្យážļយážļម​នៅពេលក្រោយ។ ++ មិនážĸážļច​បញ្ចប់បážļនទេ។ សážŧមព្យážļយážļមម្ដងទៀត។ ++ មិនážĸážļច​ធ្វើតážļមសំណើនោះ​ážĨឡážŧវនេះ​បážļនទេ ++ បញ្ហážļធážļតážģចážŧល/ធážļតážģចេញ ++ មិនážĸážļច​យក​ខ្លឹមសážļរនោះ​នៅទីនេះ​បážļនទេ ++ កម្មវិធីនេះ​មិនážĸážļចធ្វើ​តážļមសំណើនោះ​បážļនទេ ++ ខ្លឹមសážļរនោះ​ត្រážŧវបážļនទប់ស្កážļត់ ++ បážļន​បដិសេធ​កážļរចážŧល​ប្រើប្រážļស់ ++ តម្រážŧវឱ្យមážļន​កážļរចážŧលប្រើ​លំដážļប់ខ្ពស់ ++ តម្រážŧវឱ្យ​រៀបចំ ++ មិនážĸážļច​រំលងចម្រៀង​បážļនទៀតទេ ++ បើកážĸក្សររត់ ++ បិទážĸក្សររត់ ++ ទៅ​មážģខ​​​រហ័ស ++ ចážŧលážĸេក្រង់ពេញ ++ ចážļកចេញពីážĸេក្រង់ពេញ ++ លážļក់កážļរគ្រប់គ្រងកម្មវិធីចážļក់ចម្រៀង ++ បន្ទážļប់ ++ លážļក់កážļរកំណត់​បន្ថែម ++ បង្ហážļញកážļរកំណត់​បន្ថែម ++ ផ្ážĸážļក ++ លេង ++ ល្បážŋន ++ មážģន ++ មážģខងážļរបច្ចážģប្បន្ន៖ ចážļក់ឡើងវិញទážļំងážĸស់។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។ ++ មážģខងážļរបច្ចážģប្បន្ន៖ មិនចážļក់ឡើងវិញ។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។ ++ មážģខងážļរបច្ចážģប្បន្ន៖ ចážļក់ឡើងវិញមážŊយ។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។ ++ ខážļ​ថយ​ក្រោយ ++ កážļរចážļក់​កំពážģង​ដំណើរកážļរ ++ កážļរកំណត់ ++ បង្ហážļញកážļរគ្រប់គ្រងកម្មវិធីចážļក់ចម្រៀង ++ បើក​មážģខងážļរច្របល់ ++ បិទ​មážģខងážļរច្របល់ ++ ឈប់ ++ មážģខងážļរ VR ++ បážļន​បញ្ចប់​កážļរទážļញយក ++ ទážļញយក ++ កំពážģង​ទážļញ​យក ++ មិន​ážĸážļច​ទážļញយក​បážļន​ទេ ++ ទážļញយក ++ កážļរទážļញយក​ត្រážŧវបážļនផ្ážĸážļក ++ កážļរទážļញយក​កំពážģងរង់ចážļំ​កážļរតភ្ជážļប់បណ្ដážļញ ++ កážļរទážļញយក​កំពážģងរង់ចážļំ​កážļរតភ្ជážļប់ Wi-Fi ++ កំពážģង​លážģប​កážļរទážļញយក ++ %1$s, %2$s ++ %1$.2f Mbps ++ ម៉ážŧ​ណážŧ ++ %1$d × %2$d ++ ជំនážŊស ++ ážĸក្សររត់ ++ កážļរážĸត្ថážļធិប្បážļយ ++ បំពេញបន្ថែម ++ ស្វ័យប្រវត្តិ ++ គ្មážļន ++ សំឡេង ++ ស្តេរ៉េážĸážŧ ++ សំឡេង​រងំ ++ សំឡេង​រងំ​ខ្នážļត 5.1 ++ សំឡេង​រងំ​ខ្នážļត 7.1 ++ មិនស្គážļល់ ++ មិនស្គážļល់ (%1$s) ++ ចំណងជើង ++ រážŧបភážļព ++ ប៊ážŧតážģង, រážŧបភážļព ++ តំណ ++ ផ្ážĸážļក ++ ចážļក់ ++ ថយក្រោយ ++ រំលង​​ទៅ​មážģខ ++ ទៅកážļន់ធážļតážģបន្ទážļប់ ++ ទៅកážļន់ធážļតážģមážģន ++ ម៉ážēនážģយ ++ របážļរម៉ážēនážģយ ++ ធážļតážģម៉ážēនážģយ ++ របážļរ​ដំណើរកážļរ ++ ក្រážģមវិទ្យážģ ++ ផ្ទážļំង ++ របážļររំកិល ++ "ស្វែងរក" ++ ប៊ážŧតážģង​បង្វិល ++ ជážļប់រវល់ ++ បážļនបង្រážŊម ++ បážļនពង្រីក ++ បážļនលážļយ ++ បិទ ++ បើក ++ បážļបនដោះកážļរជ្រើសរើស ++ "999+" ++ សេចក្ដីសង្ខេប ++ បញ្ជីថេប ++ មážģខងážļរកំណត់ម៉ោង ++ របážļរ​ឧបករណ៍ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..8ed3afd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 0.5 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 0.75 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ ā˛¸ā˛žā˛Žā˛žā˛¨āŗā˛¯ ++ 1.25 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 1.5 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 2 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ ++ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ++ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ++ "ā˛šāŗ‹ā˛Žāŗâ€Œā˛—āŗ† ā˛¨āŗā˛¯ā˛žā˛ĩā˛ŋā˛—āŗ‡ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ" ++ "ā˛Žāŗ‡ā˛˛ā˛•āŗā˛•āŗ† ā˛¨āŗā˛¯ā˛žā˛ĩā˛ŋā˛—āŗ‡ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ" ++ "ā˛‡ā˛¨āŗā˛¨ā˛ˇāŗā˛Ÿāŗ ā˛†ā˛¯āŗā˛•āŗ†ā˛—ā˛ŗāŗ" ++ "➆➝ā˛ŋ➤⺁" ++ "ā˛Žā˛˛āŗā˛˛ā˛ĩā˛¨āŗā˛¨āŗ‚ ā˛¨āŗ‹ā˛Ąā˛ŋ" ++ "ā˛†āŗā˛¯ā˛Ēāŗâ€Œā˛ĩāŗŠā˛‚ā˛Ļā˛¨āŗā˛¨āŗ ā˛†ā˛¯āŗā˛•āŗ†ā˛Žā˛žā˛Ąā˛ŋ" ++ "➆ā˛Ģāŗ" ++ "ā˛†ā˛¨āŗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ā˛šāŗā˛Ąāŗā˛•ā˛ŋâ€Ļ" ++ "ā˛Ēāŗā˛°ā˛ļāŗā˛¨āŗ†ā˛¯ā˛¨āŗā˛¨āŗ ➤⺆➰ā˛ĩāŗā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ" ++ "ā˛Ēāŗā˛°ā˛ļāŗā˛¨āŗ†ā˛¯ā˛¨āŗā˛¨āŗ ā˛šāŗā˛Ąāŗā˛•ā˛ŋ" ++ "ā˛šāŗā˛Ąāŗā˛•ā˛ŋ" ++ "ā˛Ēāŗā˛°ā˛ļāŗā˛¨āŗ†ā˛¯ā˛¨āŗā˛¨āŗ ā˛¸ā˛˛āŗā˛˛ā˛ŋ➏ā˛ŋ" ++ "ā˛§āŗā˛ĩ➍ā˛ŋ ā˛šāŗā˛Ąāŗā˛•ā˛žā˛Ÿ" ++ "➇ā˛ĩā˛°āŗŠā˛‚ā˛Ļā˛ŋ➗⺆ ā˛šā˛‚ā˛šā˛ŋā˛•āŗŠā˛ŗāŗā˛ŗā˛ŋ" ++ "%s ā˛¨āŗŠā˛‚ā˛Ļā˛ŋ➗⺆ ā˛šā˛‚ā˛šā˛ŋā˛•āŗŠā˛ŗāŗā˛ŗā˛ŋ" ++ "ā˛•āŗā˛—āŗā˛—ā˛ŋ➏ā˛ŋ" ++ ā˛Žā˛šāŗā˛šā˛°ā˛ŋ➕⺆ ++ "ā˛‰ā˛¤āŗā˛¤ā˛°ā˛ŋ➏ā˛ŋ" ++ "ā˛ĩāŗ€ā˛Ąā˛ŋ➝⺊" ++ "➍ā˛ŋā˛°ā˛žā˛•ā˛°ā˛ŋ➏ā˛ŋ" ++ "➕➰⺆ ā˛•āŗŠā˛¨āŗ†ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ" ++ "➒➺ā˛Ŧ➰⺁ā˛ĩ ➕➰⺆" ++ "ā˛šā˛žā˛˛āŗā˛¤ā˛ŋā˛¯ā˛˛āŗā˛˛ā˛ŋ➰⺁ā˛ĩ ➕➰⺆" ++ "➒➺ā˛Ŧ➰⺁ā˛ĩ ā˛•ā˛°āŗ†ā˛¯ā˛¨āŗā˛¨āŗ ā˛¸āŗā˛•āŗā˛°āŗ€ā˛¨āŗ ā˛Žā˛žā˛Ąā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ†" ++ ā˛•āŗŠā˛‚ā˛Ŧ⺊ ā˛Ŧā˛žā˛•āŗā˛¸āŗ ++ ➇ā˛Ļ⺀➗ ā˛Ēāŗā˛˛āŗ‡ ā˛Žā˛žā˛Ąā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ† ++ ➈ ā˛†āŗā˛¯ā˛Ēāŗ ā˛Ŧ➺➏➞⺁ ā˛¸āŗˆā˛¨āŗ ā˛‡ā˛¨āŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ➤ā˛Ēāŗā˛Ēā˛žā˛Ļ ā˛‡ā˛¨āŗâ€Œā˛Ēāŗā˛Ÿāŗ ā˛Ąāŗ‡ā˛Ÿā˛ž ++ ā˛šā˛˛ā˛ĩā˛žā˛°āŗ ā˛¸ā˛žā˛§ā˛¨ā˛—ā˛ŗā˛˛āŗā˛˛ā˛ŋ ➆➞ā˛ŋā˛¸ā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ† ++ ā˛ˆā˛—ā˛žā˛—ā˛˛āŗ‡ ➆ ā˛•ā˛‚ā˛Ÿāŗ†ā˛‚ā˛Ÿāŗâ€Œ ā˛…ā˛¨āŗā˛¨āŗ ā˛Ēāŗā˛˛āŗ‡ ā˛Žā˛žā˛Ąā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ† ++ ā˛Žā˛žā˛§āŗā˛¯ā˛Ž ā˛†āŗā˛¯ā˛Ēāŗâ€Œā˛¨ā˛ŋ➂ā˛Ļ ➏➂ā˛Ēā˛°āŗā˛• ā˛•ā˛Ąā˛ŋā˛¤ā˛—āŗŠā˛‚ā˛Ąā˛ŋā˛Ļāŗ† ++ ➏➰ā˛Ļā˛ŋā˛¯ā˛˛āŗā˛˛ā˛ŋ ā˛¯ā˛žā˛ĩ⺁ā˛Ļ⺁ ā˛Ŧā˛žā˛•ā˛ŋ ➉➺ā˛ŋā˛Ļā˛ŋā˛˛āŗā˛˛ ++ ā˛ā˛¨āŗ†āŗ‚āŗ• ➤ā˛Ēāŗā˛Ēā˛žā˛—ā˛ŋā˛Ļāŗ†. ➍➂➤➰ ā˛Ēāŗā˛°ā˛¯ā˛¤āŗā˛¨ā˛ŋ➏ā˛ŋ. ++ ā˛Ēāŗ‚ā˛°āŗā˛Ŗā˛—āŗ†āŗ‚ā˛ŗā˛ŋ➏➞⺁ ā˛¸ā˛žā˛§āŗā˛¯ā˛ĩā˛žā˛—ā˛˛ā˛ŋā˛˛āŗā˛˛. ā˛Ē⺁➍➃ ā˛Ēāŗā˛°ā˛¯ā˛¤āŗā˛¨ā˛ŋ➏ā˛ŋ. ++ ➏ā˛Ļāŗā˛¯ā˛•āŗā˛•āŗ† ➅ā˛Ļā˛¨āŗā˛¨āŗ ā˛Žā˛žā˛Ąā˛˛āŗ ā˛¸ā˛žā˛§āŗā˛¯ā˛ĩā˛ŋā˛˛āŗā˛˛ ++ ā˛‡ā˛¨āŗâ€Œā˛Ēāŗā˛Ÿāŗ/ā˛”ā˛Ÿāŗâ€Œâ€Œā˛Ēāŗā˛Ÿāŗ ā˛Ļ⺋➎ ++ ➆ ā˛•ā˛‚ā˛Ÿāŗ†ā˛‚ā˛Ÿāŗâ€Œ ā˛…ā˛¨āŗā˛¨āŗ ā˛‡ā˛˛āŗā˛˛ā˛ŋ ā˛Ēā˛Ąāŗ†ā˛Ļāŗā˛•āŗŠā˛ŗāŗā˛ŗā˛˛āŗ ā˛¸ā˛žā˛§āŗā˛¯ā˛ĩā˛ŋā˛˛āŗā˛˛ ++ ➈ ā˛†āŗā˛¯ā˛Ēāŗâ€Œā˛¨ā˛ŋ➂ā˛Ļ ➅ā˛Ļā˛¨āŗā˛¨āŗ ā˛Žā˛žā˛Ąā˛˛āŗ ā˛¸ā˛žā˛§āŗā˛¯ā˛ĩā˛ŋā˛˛āŗā˛˛ ++ ā˛•ā˛‚ā˛Ÿāŗ†ā˛‚ā˛Ÿāŗâ€Œ ā˛…ā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛°āŗā˛Ŧ➂➧ā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ† ++ ā˛†āŗā˛¯ā˛•āŗā˛¸āŗ†ā˛¸āŗ ā˛…ā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛°ā˛žā˛•ā˛°ā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ† ++ ā˛Ēāŗā˛°āŗ€ā˛Žā˛ŋ➝➂ ā˛†āŗā˛¯ā˛•āŗā˛¸āŗ†ā˛¸āŗâ€Œā˛¨ ā˛…ā˛—ā˛¤āŗā˛¯ā˛ĩā˛ŋā˛Ļāŗ† ++ ā˛¸āŗ†ā˛Ÿā˛Ēāŗ ā˛…ā˛—ā˛¤āŗā˛¯ā˛ĩā˛ŋā˛Ļāŗ† ++ ā˛‡ā˛¨āŗā˛¨āŗ ā˛Žāŗā˛‚ā˛Ļāŗ† ā˛Ÿāŗā˛°āŗā˛¯ā˛žā˛•āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛¸āŗā˛•ā˛ŋā˛Ēāŗ ā˛Žā˛žā˛Ąā˛˛āŗ ā˛¸ā˛žā˛§āŗā˛¯ā˛ĩā˛ŋā˛˛āŗā˛˛ ++ ➏ā˛Ŧāŗâ€Œā˛Ÿāŗˆā˛Ÿā˛˛āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛¸ā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ ++ ➏ā˛Ŧāŗâ€Œā˛Ÿāŗˆā˛Ÿā˛˛āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛ˇāŗā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ ++ ā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗ ++ ā˛Ģāŗā˛˛āŗâ€Œā˛¸āŗā˛•āŗā˛°āŗ€ā˛¨āŗâ€Œā˛—āŗ† ā˛Ēāŗā˛°ā˛ĩāŗ‡ā˛ļā˛ŋ➏ā˛ŋ ++ ā˛Ģāŗā˛˛āŗâ€Œā˛¸āŗā˛•āŗā˛°āŗ€ā˛¨āŗâ€Œā˛¨ā˛ŋ➂ā˛Ļ ➍ā˛ŋā˛°āŗā˛—ā˛Žā˛ŋ➏ā˛ŋ ++ ā˛Ēāŗā˛˛āŗ‡ā˛¯ā˛°āŗ ➍ā˛ŋā˛¯ā˛‚ā˛¤āŗā˛°ā˛Ŗā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛Žā˛°āŗ†ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛Žāŗā˛‚ā˛Ļāŗ† ++ ā˛šāŗ†ā˛šāŗā˛šāŗā˛ĩ➰ā˛ŋ ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛Žā˛°āŗ† ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛šāŗ†ā˛šāŗā˛šāŗā˛ĩ➰ā˛ŋ ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺋➰ā˛ŋ➏ā˛ŋ ++ ā˛ĩā˛ŋā˛°ā˛žā˛Ž ++ ā˛Ēāŗā˛˛āŗ‡ ++ ā˛ĩ⺇➗ ++ ā˛šā˛ŋ➂ā˛Ļā˛ŋ➍ā˛Ļ⺁ ++ ā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ā˛Žā˛˛āŗā˛˛ā˛ĩā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ. ++ ā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ā˛¯ā˛žā˛ĩ⺁ā˛Ļā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛Ŧāŗ‡ā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ. ++ ā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ➒➂ā˛Ļā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ. ++ ➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗ ++ ā˛Ēāŗā˛˛āŗ‡ā˛Ŧāŗā˛¯ā˛žā˛•āŗ ā˛Ēāŗā˛°ā˛—ā˛¤ā˛ŋā˛¯ā˛˛āŗā˛˛ā˛ŋā˛Ļāŗ† ++ ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗāŗ ++ ā˛Ēāŗā˛˛āŗ‡ā˛¯ā˛°āŗ ➍ā˛ŋā˛¯ā˛‚ā˛¤āŗā˛°ā˛Ŗā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺋➰ā˛ŋ➏ā˛ŋ ++ ā˛ļā˛Ģā˛˛āŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛…ā˛¨āŗā˛¨āŗā˛¸ā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ ++ ā˛ļā˛Ģā˛˛āŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛…ā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛ˇāŗā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ ++ ➍ā˛ŋā˛˛āŗā˛˛ā˛ŋ➏ā˛ŋ ++ VR ā˛Žāŗ‹ā˛Ąāŗ ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗ ā˛Ēāŗ‚ā˛°āŗā˛Ŗā˛—āŗŠā˛‚ā˛Ąā˛ŋā˛Ļāŗ† ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œ ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ† ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œ ā˛ĩā˛ŋā˛Ģā˛˛ā˛—āŗŠā˛‚ā˛Ąā˛ŋā˛Ļāŗ† ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗ ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛ĩā˛ŋā˛°ā˛žā˛Žā˛—āŗŠā˛ŗā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ† ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗ ā˛¨āŗ†ā˛Ÿāŗâ€Œā˛ĩā˛°āŗā˛•āŗâ€Œā˛—ā˛žā˛—ā˛ŋ ā˛•ā˛žā˛¯āŗā˛¤āŗā˛¤ā˛ŋā˛ĩāŗ† ++ ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗ Wi-Fi ā˛—ā˛žā˛—ā˛ŋ ā˛•ā˛žā˛¯āŗā˛¤āŗā˛¤ā˛ŋā˛ĩāŗ† ++ ā˛ĄāŗŒā˛¨āŗā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺆➗⺆ā˛Ļāŗā˛šā˛žā˛•ā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ† ++ %1$s, %2$s ++ %1$.2f Mbps ++ ā˛Žāŗ†āŗ‚ā˛¨āŗ†āŗ‚ ++ %1$d × %2$d ++ ā˛Ēā˛°āŗā˛¯ā˛žā˛¯ ++ CC ++ ā˛ĩāŗā˛¯ā˛žā˛–āŗā˛¯ā˛žā˛¨ ++ ā˛Ē⺂➰➕ ++ ā˛¸āŗā˛ĩ➝➂ ++ ā˛¯ā˛žā˛ĩ⺁ā˛Ļāŗ‚ ā˛…ā˛˛āŗā˛˛ ++ ā˛†ā˛Ąā˛ŋ➝⺋ ++ ā˛¸āŗā˛Ÿāŗ€ā˛°ā˛ŋ➝⺊ ++ ā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ ++ 5.1 ā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ ++ 7.1 ā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ ++ ➅ā˛Ē➰ā˛ŋ➚ā˛ŋ➤ ++ ➅ā˛Ē➰ā˛ŋ➚ā˛ŋ➤ (%1$s) ++ ā˛ļā˛ŋ➰⺋➞⺇➖ ++ ➚ā˛ŋā˛¤āŗā˛° ++ ā˛Ŧā˛Ÿā˛¨āŗ, ➚ā˛ŋā˛¤āŗā˛° ++ ➞ā˛ŋā˛‚ā˛•āŗ ++ ā˛ĩā˛ŋā˛°ā˛žā˛Žā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ ++ ā˛Ēāŗā˛˛āŗ‡ ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛šā˛ŋ➂ā˛Ļā˛•āŗā˛•āŗ† ā˛¸āŗ€ā˛•āŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛Žāŗā˛‚ā˛Ļā˛•āŗā˛•āŗ† ā˛¸āŗ€ā˛•āŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛Žāŗā˛‚ā˛Ļā˛ŋ➍ ā˛ā˛Ÿā˛‚ā˛—āŗ† ā˛¸āŗ€ā˛•āŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛šā˛ŋ➂ā˛Ļā˛ŋ➍ ā˛ā˛Ÿā˛‚ā˛—āŗ† ā˛¸āŗ€ā˛•āŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ā˛Žāŗ†ā˛¨āŗ ++ ā˛Žāŗ†ā˛¨āŗ ā˛Ŧā˛žā˛°āŗ ++ ā˛Žāŗ†ā˛¨āŗ ā˛ā˛Ÿā˛‚ ++ ā˛Ēāŗā˛°āŗ‹ā˛—āŗā˛°āŗ†ā˛¸āŗ ā˛Ŧā˛žā˛°āŗ ++ ā˛°āŗ‡ā˛Ąā˛ŋ➝⺋ ➗⺁➂ā˛Ē⺁ ++ ā˛Ÿāŗā˛¯ā˛žā˛Ŧāŗ ++ ā˛¸āŗā˛•āŗā˛°ā˛žā˛˛āŗ ā˛Ŧā˛žā˛°āŗ ++ "ā˛šāŗā˛Ąāŗā˛•ā˛ŋ" ++ ā˛¸āŗā˛Ēā˛ŋā˛¨āŗ ā˛Ŧā˛Ÿā˛¨āŗ ++ ā˛•ā˛žā˛°āŗā˛¯ā˛¨ā˛ŋ➰➤ ++ ā˛Žāŗā˛šāŗā˛šā˛ŋā˛Ļāŗ† ++ ā˛ĩā˛ŋā˛¸āŗā˛¤ā˛°ā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ† ++ ā˛Ŧ➗⺆ā˛Ŧ➗⺆➝ ++ ➆ā˛Ģāŗ ++ ā˛†ā˛¨āŗ ++ ā˛†ā˛¯āŗā˛•āŗ† ➰ā˛Ļāŗā˛Ļāŗā˛Žā˛žā˛Ąā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ† ++ "999+" ++ ā˛¸ā˛žā˛°ā˛žā˛‚ā˛ļ ++ ā˛Ÿāŗā˛¯ā˛žā˛Ŧāŗ ā˛Ēā˛Ÿāŗā˛Ÿā˛ŋ ++ ā˛Ÿāŗˆā˛Žā˛°āŗ ++ ā˛Ÿāŗ‚ā˛˛āŗ ā˛Ŧā˛žā˛°āŗ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..3bc1ef6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25ë°°ė† ++ 0.5ë°°ė† ++ 0.75ë°°ė† ++ ëŗ´í†ĩ ++ 1.25ë°°ė† ++ 1.5ë°°ė† ++ 2ë°°ė† ++ ++ ++ %d봈 뚨ëĻŦ 감기 ++ %d봈 뚨ëĻŦ 감기 ++ ++ ++ %d봈 되감기 ++ %d봈 되감기 ++ ++ "홈ėœŧ로 ė´ë™" ++ "ėœ„ëĄœ ė´ë™" ++ "ėļ”ę°€ ė˜ĩė…˜" ++ "ė™„ëŖŒ" ++ "렄랴 ëŗ´ę¸°" ++ "ė•ą ė„ íƒ" ++ "ė‚ŦėšŠ 뤑맀" ++ "ė‚ŦėšŠ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ėŠ¤íŽ˜ė´ėŠ¤ë°”" ++ "Sym+" ++ "Menu+" ++ "ę˛€ėƒ‰..." ++ "ę˛€ėƒ‰ė–´ ė‚­ė œ" ++ "ę˛€ėƒ‰ė–´" ++ "ę˛€ėƒ‰" ++ "ę˛€ėƒ‰ė–´ ëŗ´ë‚´ę¸°" ++ "ėŒė„ą ę˛€ėƒ‰" ++ "ęŗĩ뜠 ëŒ€ėƒ:" ++ "%sęŗŧ(뙀) ęŗĩ뜠" ++ "렑揰" ++ ė•ŒëĻŧ ++ "í†ĩ화" ++ "ë™ė˜ėƒ" ++ "ęą°ė ˆ" ++ "ė „í™” 끊기" ++ "ėˆ˜ė‹  ė „í™”" ++ "ė§„í–‰ ė¤‘ė¸ í†ĩ화" ++ "ėˆ˜ė‹  ė „í™” 검ė‚Ŧ 뤑" ++ ėŊ¤ëŗ´ ėƒėž ++ ė§€ę¸ˆ ėžŦėƒ 뤑 ++ ė´ ė•ąė„ ė‚ŦėšŠí•˜ë ¤ëŠ´ ëĄœęˇ¸ė¸í•˜ė„¸ėš”. ++ ėž˜ëĒģ된 ėž…ë Ĩ ë°ė´í„°ėž…ë‹ˆë‹¤. ++ 너ëŦ´ ë§Žė€ ę¸°ę¸°ė—ė„œ ë™ė‹œė— ėŠ¤íŠ¸ëĻŦë°í•˜ęŗ  ėžˆėŠĩ니다. ++ ėš”ė˛­í•œ ėŊ˜í…ė¸ ę°€ ė´ë¯¸ ėžŦėƒ ė¤‘ėž…ë‹ˆë‹¤. ++ ë¯¸ë””ė–´ ė•ąė—ė„œ 뗰枰 í•´ė œë˜ė—ˆėŠĩ니다. ++ 현ėžŦ ėžŦėƒëĒŠëĄė´ ëš„ė–´ ėžˆėŠĩ니다. ++ ëŦ¸ė œę°€ ë°œėƒí–ˆėŠĩ니다. ë‚˜ė¤‘ė— ë‹¤ė‹œ ė‹œë„í•´ ėŖŧė„¸ėš”. ++ ė™„ëŖŒí•  눘 ė—†ėŠĩ니다. ë‹¤ė‹œ ė‹œë„í•´ ėŖŧė„¸ėš”. ++ ė§€ę¸ˆė€ ėš”ė˛­í•œ ėž‘ė—…ė„ 할 눘 ė—†ėŠĩ니다. ++ ėž…ë Ĩ/ėļœë Ĩ 똤ëĨ˜ėž…니다. ++ ė´ ė§€ė—­ė—ė„œ ėžŦėƒí•  눘 ė—†ëŠ” ėŊ˜í…ė¸ ėž…니다. ++ ėš”ė˛­í•œ ėž‘ė—…ė´ ė´ ė•ąė—ė„œ ė§€ė›ë˜ė§€ ė•ŠėŠĩ니다. ++ ė°¨ë‹¨ëœ ėŊ˜í…ė¸ ėž…니다. ++ ė•Ąė„¸ėŠ¤ę°€ ęą°ëļ€ë˜ė—ˆėŠĩ니다 ++ 프ëĻŦë¯¸ė—„ ė•Ąė„¸ėŠ¤ ęļŒí•œė´ í•„ėš”í•Šë‹ˆë‹¤. ++ ė„¤ė •ė´ í•„ėš”í•Šë‹ˆë‹¤. ++ íŠ¸ëž™ė„ 더 ė´ėƒ 건너뛸 눘 ė—†ėŠĩ니다. ++ ėžë§‰ ė‚ŦėšŠ 네렕 ++ ėžë§‰ ė‚ŦėšŠ 뤑맀 ++ 뚨ëĻŦ 감기 ++ 렄랴 화면ėœŧ로 ė „í™˜ ++ 렄랴 화면 ėĸ…ëŖŒ ++ í”Œë ˆė´ė–´ ėģ¨íŠ¸ëĄ¤ 눍揰揰 ++ ë‹¤ėŒ ++ ėļ”ę°€ 네렕 눍揰揰 ++ ėļ”ę°€ 네렕 í‘œė‹œ ++ ėŧė‹œė¤‘ė§€ ++ ėžŦėƒ ++ ė†ë„ ++ ė´ė „ ++ 현ėžŦ ëĒ¨ë“œ: ëĒ¨ë‘ 반ëŗĩ. 반ëĒŠ ëĒ¨ë“œ ė „í™˜. ++ 현ėžŦ ëĒ¨ë“œ: 반ëŗĩ ė•ˆí•¨. 반ëĒŠ ëĒ¨ë“œ ė „í™˜. ++ 현ėžŦ ëĒ¨ë“œ: 한 氜 반ëŗĩ. 반ëĒŠ ëĒ¨ë“œ ė „í™˜. ++ 되감기 ++ ėžŦėƒ ė§„í–‰ëĨ  ++ 네렕 ++ í”Œë ˆė´ė–´ ėģ¨íŠ¸ëĄ¤ í‘œė‹œ ++ ė…”í”Œ ëĒ¨ë“œ ė‚ŦėšŠ 네렕 ++ ė…”í”Œ ëĒ¨ë“œ ė‚ŦėšŠ 뤑맀 ++ 뤑맀 ++ ę°€ėƒ í˜„ė‹¤ ëĒ¨ë“œ ++ ë‹¤ėš´ëĄœë“œ ė™„ëŖŒ ++ ë‹¤ėš´ëĄœë“œ ++ ë‹¤ėš´ëĄœë“œ 뤑 ++ ë‹¤ėš´ëĄœë“œ ė‹¤íŒ¨ ++ ë‹¤ėš´ëĄœë“œ ++ ë‹¤ėš´ëĄœë“œ ėŧė‹œė¤‘ė§€ë¨ ++ ë‹¤ėš´ëĄœë“œëĨŧ ėœ„í•´ ë„¤íŠ¸ė›ŒíŦ 뗰枰 대기 뤑 ++ ë‹¤ėš´ëĄœë“œëĨŧ ėœ„í•´ Wi-Fi 뗰枰 대기 뤑 ++ ë‹¤ėš´ëĄœë“œ 항ëĒŠ ė‚­ė œ 뤑 ++ %1$s, %2$s ++ %1$.2fMbps ++ ëĒ¨ë…¸ ++ %1$d×%2$d ++ ëŒ€ė˛´ ++ ėžë§‰ ++ ë…ŧ평 ++ ėļ”ę°€ ++ ėžë™ ++ ė—†ėŒ ++ ė˜¤ë””ė˜¤ ++ ėŠ¤í…Œë ˆė˜¤ ++ ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œ ++ 5.1 ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œ ++ 7.1 ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œ ++ ė•Œ 눘 ė—†ėŒ ++ ė•Œ 눘 ė—†ėŒ(%1$s) ++ 렜ëĒŠ ++ ė´ë¯¸ė§€ ++ 버íŠŧ, ė´ë¯¸ė§€ ++ 링íŦ ++ ėŧė‹œė¤‘ė§€ ++ ėžŦėƒ ++ 뒤로 íƒėƒ‰ ++ ė•žėœŧ로 íƒėƒ‰ ++ ë‹¤ėŒ 항ëĒŠ ė°žę¸° ++ ė´ė „ 항ëĒŠ ė°žę¸° ++ 메뉴 ++ 메뉴 í‘œė‹œė¤„ ++ 메뉴 항ëĒŠ ++ ė§„í–‰ëĨ  í‘œė‹œė¤„ ++ ëŧë””ė˜¤ ęˇ¸ëŖš ++ 탭 ++ 늤íŦ륤 바 ++ "ę˛€ėƒ‰" ++ íšŒė „ 버íŠŧ ++ 래ëĻŦ 뤑 ++ 눍枍말 ++ 확대됨 ++ í˜ŧ합 ++ í•´ė œ ++ 네렕 ++ ė„ íƒë˜ė§€ ė•ŠėŒ ++ "999+" ++ ėš”ė•Ŋ ++ 탭 ëĻŦėŠ¤íŠ¸ ++ íƒ€ė´ë¨¸ ++ 도ęĩŦ í‘œė‹œė¤„ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..5ffa964 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,137 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ ĐžŅ€Ņ‚ĐžŅ‡Đž ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ ++ "Đ‘Đ°ŅˆĐēŅ‹ ĐąĐĩŅ‚ĐēĐĩ Ņ‡Đ°ĐąŅ‹Ņ‚Ņ‚ĐžĐž" ++ "ĐœŅƒŅ€ŅƒĐŊĐē҃ ŅĐēŅ€Đ°ĐŊĐŗĐ° ĶŠŅ‚Ō¯Ō¯" ++ "Đ”Đ°ĐŗŅ‹ ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€" ++ "Đ‘Ō¯Ņ‚Ņ‚Ō¯" ++ "Đ‘Đ°Đ°Ņ€Ņ‹ĐŊ ĐēĶŠŅ€Ō¯Ō¯" ++ "КоĐģĐ´ĐžĐŊĐŧĐž Ņ‚Đ°ĐŊдОО" ++ "Ķ¨Đ§ŌŽĐš" ++ "ĐšŌŽĐ™ŌŽĐš" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ĐąĐžŅˆŅ‚ŅƒĐē" ++ "Sym+" ++ "Menu+" ++ "Đ˜ĐˇĐ´ĶŠĶŠâ€Ļ" ++ "ĐĄŅƒŅ€Đ°ĐŧĐ´Ņ‹ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯" ++ "ИСдĐĩĐģĐŗĐĩĐŊ ŅŅƒŅ€Đ°Đŧ" ++ "Đ˜ĐˇĐ´ĶŠĶŠ" ++ "ĐĄŅƒŅ€Đ°Đŧ Ņ‚Đ°ĐŋŅˆŅ‹Ņ€ŅƒŅƒ" ++ "ĐĐšŅ‚Ņ‹Đŋ Đ¸ĐˇĐ´ĶŠĶŠ" ++ "ĐĸĶŠĐŧĶŠĐŊĐēŌ¯ ĐŧĐĩĐŊĐĩĐŊ ĐąĶŠĐģԝ҈ԝԝ" ++ "%s Đ°Ņ€ĐēŅ‹Đģ҃҃ ĐąĶŠĐģԝ҈ԝԝ" ++ "Đ–Ņ‹ĐšŅ‹ŅˆŅ‚Ņ‹Ņ€ŅƒŅƒ" ++ "ЖооĐŋ ĐąĐĩŅ€Ō¯Ō¯" ++ "ВидĐĩĐž" ++ "ЧĐĩŅ‚ĐēĐĩ ĐēĐ°ĐŗŅƒŅƒ" ++ "ЧаĐģ҃҃ĐŊ҃ ĐąŌ¯Ņ‚Ō¯Ņ€Ō¯Ō¯" ++ "ĐšĐ¸Ņ€Ō¯Ō¯Ņ‡Ō¯ Ņ‡Đ°Đģ҃҃" ++ "ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ‡Đ°Đģ҃҃" ++ "ĐšĐ¸Ņ€Ō¯Ō¯Ņ‡Ō¯ Ņ‡Đ°Đģ҃҃ĐŊ҃ Đ¸Ņ€ĐŗĶŠĶŠ" ++ АКĐēаĐģŅ‹ŅˆŅ‚Ņ‹Ņ€Ņ‹ĐģĐŗĐ°ĐŊ Ņ‚Đ¸ĐˇĐŧĐĩ ++ ОйĐŊĐžĐŋ ĐļĐ°Ņ‚Đ°Ņ‚ ++ Đ‘ŅƒĐģ ĐēĐžĐģĐ´ĐžĐŊĐŧĐžĐŊ҃ ĐŋаКдаĐģаĐŊ҃҃ ԝ҇ԝĐŊ аĐēĐēĐ°ŅƒĐŊŅ‚ŅƒŌŖŅƒĐˇĐŗĐ° ĐēĐ¸Ņ€Đ¸ŌŖĐ¸Đˇ ++ ĐšĐ¸Ņ€ĐŗĐ¸ĐˇŌ¯Ō¯ ĐŧааĐģŅ‹ĐŧĐ°Ņ‚Ņ‹ Ņ‚ŅƒŅƒŅ€Đ° ŅĐŧĐĩҁ ++ Ķ¨Ņ‚ĶŠ ĐēĶŠĐŋ Ņ‚Ō¯ĐˇĐŧĶŠĐē ŅƒĐŗŅƒĐģŅƒŅƒĐ´Đ° ++ АĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ОКĐŊĐžŅ‚ŅƒĐģŅƒŅƒĐ´Đ° ++ ĐœŅƒĐģŅŒŅ‚Đ¸ĐŧĐĩдиа ĐēĐžĐģĐ´ĐžĐŊĐŧĐžŅŅƒĐŊаĐŊ аĐļŅ‹Ņ€Đ°Ņ‚Ņ‹ĐģĐ´Ņ‹ ++ КĐĩСĐĩĐēŅ‚Đĩ ŅŅ‡ ĐŊĐĩҀҁĐĩ ĐļĐžĐē ++ Đ‘Đ¸Ņ€ ĐļĐĩŅ€Đ´ĐĩĐŊ ĐēĐ°Ņ‚Đ° ĐēĐĩŅ‚Ņ‚Đ¸. Đ‘Đ¸Ņ€ аСдаĐŊ ĐēиКиĐŊ ĐēĐ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ō¯ŌŖŌ¯Đˇ. ++ ĐŅĐŗŅ‹ĐŊа ҇ҋĐēĐēаĐŊ ĐļĐžĐē. ĐšĐ°ĐšŅ€Đ° Đ°Ņ€Đ°ĐēĐĩŅ‚ ĐēŅ‹ĐģŅ‹ŌŖŅ‹Đˇ. ++ АĐŊŅ‹ Đ°ĐˇŅ‹Ņ€ Đ°Ņ‚ĐēĐ°Ņ€ŅƒŅƒ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ ŅĐŧĐĩҁ ++ ĐšĐ¸Ņ€ĐŗĐ¸ĐˇŌ¯Ō¯/Ņ‡Ņ‹ĐŗĐ°Ņ€ŅƒŅƒ ĐēĐ°Ņ‚Đ°ŅŅ‹ ++ АĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ŅĐ¸Đˇ ĐļĐ°ŅˆĐ°ĐŗĐ°ĐŊ аКĐŧаĐēŅ‚Đ° ĐļĐĩŅ‚ĐēиĐģиĐēŅĐ¸Đˇ ++ Đ‘ŅƒĐģ ĐēĐžĐģĐ´ĐžĐŊĐŧĐž аĐŊŅ‹ Đ°Ņ‚ĐēĐ°Ņ€Đ° аĐģĐąĐ°ĐšŅ‚ ++ АĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ĐąĶŠĐŗĶŠŅ‚Ņ‚ĶŠĐģĐŗĶŠĐŊ ++ ĐšĐ¸Ņ€Ō¯Ō¯ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ҇ԝĐģŌ¯ĐŗŌ¯ ҇ĐĩŅ‚ĐēĐĩ ĐēĐ°ĐŗŅ‹ĐģĐ´Ņ‹ ++ ĐŅ€Ņ‚Ņ‹Đē҇ҋĐģŅ‹ĐēŅ‚ŅƒŅƒ ĐēĐ¸Ņ€Ō¯Ō¯ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ҇ԝĐģŌ¯ĐŗŌ¯ Ņ‚Đ°ĐģаĐŋ ĐēŅ‹ĐģŅ‹ĐŊĐ°Ņ‚ ++ ĐĸŅƒŅƒŅ€Đ°ĐģОО Ņ‚Đ°ĐģаĐŋ ĐēŅ‹ĐģŅ‹ĐŊĐ°Ņ‚ ++ Đ­Đŧи ҂ҀĐĩĐēŅ‚ĐĩŅ€Đ´Đ¸ ĶŠŅ‚ĐēĶŠŅ€Ō¯Đŋ ĐļийĐĩŅ€Ō¯Ō¯ĐŗĶŠ йОĐģĐąĐžĐšŅ‚ ++ ĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€Đ´Ņ‹ Đ¸ŅˆŅ‚Đĩ҂ԝԝ ++ ĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€Đ´Ņ‹ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯ ++ АĐģĐ´Ņ‹ĐŗĐ° ҂ԝҀԝԝ ++ ĐĸĐžĐģ҃Đē ŅĐēŅ€Đ°ĐŊĐŗĐ° ĐēĐ¸Ņ€Ō¯Ō¯ ++ ĐĸĐžĐģ҃Đē ŅĐēŅ€Đ°ĐŊ Ņ€ĐĩĐļиĐŧиĐŊĐĩĐŊ Ņ‡Ņ‹ĐŗŅƒŅƒ ++ ОйĐŊĐžŅ‚ĐēŅƒŅ‡Ņ‚Ņƒ ĐąĐ°ŅˆĐēĐ°Ņ€ŅƒŅƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩŅ€Đ¸ĐŊ ĐļĐ°ŅˆŅ‹Ņ€ŅƒŅƒ ++ КийиĐŊĐēи ++ ĐšĐžŅˆŅƒĐŧŅ‡Đ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Đ¸ ĐļĐ°ŅˆŅ‹Ņ€ŅƒŅƒ ++ ĐšĐžŅˆŅƒĐŧŅ‡Đ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Đ¸ ĐēĶŠŅ€ŅĶŠŅ‚Ō¯Ō¯ ++ ĐĸŅ‹ĐŊĐ´Ņ‹Ņ€ŅƒŅƒ ++ ОйĐŊĐžŅ‚ŅƒŅƒ ++ ĐĢĐģдаĐŧĐ´Ņ‹Đē ++ ĐœŅƒŅ€ŅƒĐŊĐē҃ ++ ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: Đ‘Đ°Đ°Ņ€Ņ‹ĐŊ ĐēĐ°ĐšŅ‚Đ°ĐģОО. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯. ++ ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: ĐšĐ°ĐšŅ‚Đ°ĐģаĐŊĐąĐ°ŅŅ‹ĐŊ. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯. ++ ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: Đ‘Đ¸Ņ€ ĐŧĐĩдиаĐŊŅ‹ ĐēĐ°ĐšŅ‚Đ°ĐģОО. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯. ++ ĐŅ€Ņ‚Đēа ҂ԝҀԝԝ ++ ОйĐŊĐžŅ‚ŅƒŅƒ ĐēĶŠŅ€ŅĶŠŅ‚Đēԝ҇ԝ ++ ĐŸĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€ ++ ОйĐŊĐžŅ‚ĐēŅƒŅ‡Ņ‚Ņƒ ĐąĐ°ŅˆĐēĐ°Ņ€ŅƒŅƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩŅ€Đ¸ĐŊ ĐēĶŠŅ€ŅĶŠŅ‚Ō¯Ō¯ ++ ĐŅ€Đ°ĐģĐ°ŅˆŅ‚Ņ‹Ņ€ŅƒŅƒ Ņ€ĐĩĐļиĐŧиĐŊ ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯ ++ ĐŅ€Đ°ĐģĐ°ŅˆŅ‚Ņ‹Ņ€ŅƒŅƒ Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯ ++ ĐĸĐžĐēŅ‚ĐžŅ‚ŅƒŅƒ ++ VR Ņ€ĐĩĐļиĐŧи ++ Đ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģ҃҃ Đ°ŅĐēŅ‚Đ°Đ´Ņ‹ ++ Đ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģ҃҃ ++ Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊŅƒŅƒĐ´Đ° ++ Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊйаК ĐēаĐģĐ´Ņ‹ ++ Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊĐŗĐ°ĐŊĐ´Đ°Ņ€ ++ Đ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģ҃҃ ҂ҋĐŊĐ´Ņ‹Ņ€Ņ‹ĐģĐ´Ņ‹ ++ ĐĸĐ°Ņ€ĐŧаĐēĐēа Ņ‚ŅƒŅ‚Đ°ŅˆŅƒŅƒ Đēԝ҂ԝĐģŌ¯Ō¯Đ´ĶŠ ++ WiFi\'ĐŗĐ° Ņ‚ŅƒŅ‚Đ°ŅˆŅƒŅƒ Đēԝ҂ԝĐģŌ¯Ō¯Đ´ĶŠ ++ Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊĐŗĐ°ĐŊĐ´Đ°Ņ€ ĶŠŅ‡Ō¯Ņ€Ō¯ĐģŌ¯Ō¯Đ´ĶŠ ++ %1$s, %2$s ++ %1$.2f Мб/ҁĐĩĐē. ++ МоĐŊĐž ++ %1$d × %2$d ++ АĐģŅŒŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛Đ´Ō¯Ō¯ ҂ҀĐĩĐē ++ ĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€ ++ ПиĐēĐ¸Ņ€ ++ ĐšĐžŅˆŅƒĐŧŅ‡Đ° ҂ҀĐĩĐē ++ ĐĐ˛Ņ‚Đž ++ ЖоĐē ++ ĐŅƒĐ´Đ¸Đž ++ ĐĄŅ‚ĐĩŅ€ĐĩĐž ++ ĐšĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Ō¯ĐŊ ++ 5.1 ĐēĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Đ´ĐžĐąŅƒŅˆ ++ 7.1 ĐēĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Đ´ĐžĐąŅƒŅˆ ++ БĐĩĐģĐŗĐ¸ŅĐ¸Đˇ ++ БĐĩĐģĐŗĐ¸ŅĐ¸Đˇ (%1$s) ++ ĐĄŌ¯Ņ€ĶŠŅ‚ ++ Đ‘Đ°ŅĐēҋ҇, ŅŌ¯Ņ€ĶŠŅ‚ ++ ШиĐģŅ‚ĐĩĐŧĐĩ ++ ĐĸŅ‹ĐŊĐ´Ņ‹Ņ€ŅƒŅƒ ++ ОйĐŊĐžŅ‚ŅƒŅƒ ++ ĐŅ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ АĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ КийиĐŊĐēи ĐŊĐĩҀҁĐĩĐŗĐĩ ĶŠŅ‚Ō¯Ō¯ ++ ĐœŅƒŅ€ŅƒĐŊĐē҃ ĐŊĐĩҀҁĐĩĐŗĐĩ ĶŠŅ‚Ō¯Ō¯ ++ МĐĩĐŊŅŽ ++ "Đ˜ĐˇĐ´ĶŠĶŠ" ++ ĶŠŅ‡Ō¯Đē ++ ĐēŌ¯ĐšŌ¯Đē ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..a12899f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,6 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..cc236eb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..7dad77f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 0px ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..04adc0a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,295 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 24dp ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..edb25cd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,51 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..dbae6fb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,9 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..5c267b5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,153 @@ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ BÃŦnh thưáģng ++ 1,25x ++ 1,5x ++ 2x ++ ++ ++ Tua nhanh %d giÃĸy ++ Tua nhanh %d giÃĸy ++ ++ ++ Tua láēĄi %d giÃĸy ++ Tua láēĄi %d giÃĸy ++ ++ "Cháģ‰ Ä‘Æ°áģng váģ nhà" ++ "Di chuyáģƒn lÃĒn" ++ "TÚy cháģn khÃĄc" ++ "Xong" ++ "Xem táēĨt cáēŖ" ++ "Cháģn máģ™t áģŠng dáģĨng" ++ "TáēŽT" ++ "BáēŦT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "TÃŦm kiáēŋmâ€Ļ" ++ "XÃŗa truy váēĨn" ++ "Truy váēĨn tÃŦm kiáēŋm" ++ "TÃŦm kiáēŋm" ++ "Gáģ­i truy váēĨn" ++ "TÃŦm kiáēŋm báēąng giáģng nÃŗi" ++ "Chia sáēģ váģ›i" ++ "Chia sáēģ váģ›i %s" ++ "Thu gáģn" ++ Thông bÃĄo ++ "TráēŖ láģi" ++ "Video" ++ "TáģĢ cháģ‘i" ++ "Káēŋt thÃēc" ++ "Cuáģ™c gáģi đáēŋn" ++ "Cuáģ™c gáģi đang tháģąc hiáģ‡n" ++ "Đang sàng láģc cuáģ™c gáģi đáēŋn" ++ Ô láģąa cháģn ++ Đang phÃĄt ++ HÃŖy đăng nháē­p đáģƒ dÚng áģŠng dáģĨng này ++ Dáģ¯ liáģ‡u đáē§u vào không chính xÃĄc ++ Đang nghe trÃĒn quÃĄ nhiáģu thiáēŋt báģ‹ ++ Đang phÃĄt náģ™i dung Ä‘Ãŗ ++ ÄÃŖ ngáē¯t káēŋt náģ‘i kháģi áģŠng dáģĨng nghe nhÃŦn ++ Không cÃŗ náģ™i dung nào khÃĄc trong danh sÃĄch cháģ ++ ÄÃŖ xáēŖy ra láģ—i. HÃŖy thÆ°Ė‰ laĖŖi sau. ++ Không tháģƒ hoàn táēĨt hành đáģ™ng. HÃŖy tháģ­ láēĄi. ++ Không tháģąc hiáģ‡n đưáģŖc yÃĒu cáē§u Ä‘Ãŗ ngay bÃĸy giáģ ++ Láģ—i đáē§u vào/đáē§u ra ++ Không xem đưáģŖc náģ™i dung Ä‘Ãŗ táēĄi đÃĸy ++ áģ¨ng dáģĨng này không tháģąc hiáģ‡n đưáģŖc yÃĒu cáē§u Ä‘Ãŗ ++ Náģ™i dung Ä‘Ãŗ Ä‘ÃŖ báģ‹ cháēˇn ++ YÃĒu cáē§u truy cáē­p báģ‹ táģĢ cháģ‘i ++ Cáē§n cÃŗ tài khoáēŖn Premium ++ YÃĒu cáē§u thiáēŋt láē­p ++ Không tháģƒ báģ qua báēŖn nháēĄc nào náģ¯a ++ Báē­t pháģĨ đáģ ++ Táē¯t pháģĨ đáģ ++ Tua đi ++ Chuyáģƒn sang cháēŋ đáģ™ toàn màn hÃŦnh ++ ThoÃĄt kháģi cháēŋ đáģ™ toàn màn hÃŦnh ++ áē¨n cÃĄc nÃēt điáģu khiáģƒn trÃŦnh phÃĄt ++ Tiáēŋp theo ++ áē¨n cÃĄc tÚy cháģn cài đáēˇt báģ• sung ++ Hiáģ‡n cÃĄc tÚy cháģn cài đáēˇt báģ• sung ++ TáēĄm dáģĢng ++ PhÃĄt ++ Táģ‘c đáģ™ ++ Trưáģ›c ++ Cháēŋ đáģ™ hiáģ‡n táēĄi: Láēˇp láēĄi táēĨt cáēŖ náģ™i dung. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi. ++ Cháēŋ đáģ™ hiáģ‡n táēĄi: Không láēˇp láēĄi. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi. ++ Cháēŋ đáģ™ hiáģ‡n táēĄi: Láēˇp láēĄi máģ™t náģ™i dung. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi. ++ Tua láēĄi ++ Tiáēŋn trÃŦnh phÃĄt ++ Cài đáēˇt ++ Hiáģƒn tháģ‹ cÃĄc nÃēt điáģu khiáģƒn trÃŦnh phÃĄt ++ Báē­t cháēŋ đáģ™ tráģ™n bài ++ Táē¯t cháēŋ đáģ™ tráģ™n bài ++ DáģĢng ++ Cháēŋ đáģ™ tháģąc táēŋ áēŖo ++ ÄÃŖ hoàn táēĨt táēŖi xuáģ‘ng ++ TáēŖi xuáģ‘ng ++ Đang táēŖi xuáģ‘ng ++ Không táēŖi xuáģ‘ng đưáģŖc ++ Tài nguyÃĒn Ä‘ÃŖ táēŖi xuáģ‘ng ++ ÄÃŖ táēĄm dáģĢng táēŖi xuáģ‘ng ++ Đang cháģ cÃŗ máēĄng đáģƒ táēŖi xuáģ‘ng ++ Đang cháģ cÃŗ Wi-Fi đáģƒ táēŖi xuáģ‘ng ++ Đang xÃŗa cÃĄc máģĨc Ä‘ÃŖ táēŖi xuáģ‘ng ++ %1$s, %2$s ++ %1$.2f Mb/giÃĸy ++ ÄÆĄn Ãĸm ++ %1$d × %2$d ++ Thay tháēŋ ++ PháģĨ đáģ ++ BÃŦnh luáē­n ++ Báģ• sung ++ Táģą Ä‘áģ™ng ++ Không ++ Âm thanh ++ Âm thanh náģ•i ++ Âm thanh vÃ˛m ++ Âm thanh vÃ˛m 5.1 ++ Âm thanh vÃ˛m 7.1 ++ Không xaˁc điĖŖnh ++ Không xÃĄc đáģ‹nh (%1$s) ++ TiÃĒu đáģ ++ HÃŦnh áēŖnh ++ NÃēt, HÃŦnh áēŖnh ++ LiÃĒn káēŋt ++ TáēĄm dáģĢng ++ PhÃĄt ++ Tua láēĄi ++ Tua đi ++ Tua đáēŋn máģĨc tiáēŋp theo ++ Tua váģ máģĨc trưáģ›c ++ Thanh menu ++ MáģĨc trong menu ++ Thanh tiáēŋn đáģ™ ++ NhÃŗm nÃēt radio ++ Thanh cuáģ™n ++ "TÃŦm kiáēŋm" ++ NÃēt quay ++ báē­n ++ Ä‘ÃŖ thu gáģn ++ Ä‘ÃŖ máģŸ ráģ™ng ++ káēŋt háģŖp ++ đang táē¯t ++ đang báē­t ++ không đưáģŖc cháģn ++ "999+" ++ TÃŗm táē¯t ++ Danh sÃĄch tab ++ Báģ™ háēšn giáģ ++ Thanh công cáģĨ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..bfdc43c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25 倍 ++ 0.5 倍 ++ 0.75 倍 ++ æ­Ŗå¸¸ ++ 1.25 倍 ++ 1.5 倍 ++ 2 倍 ++ ++ ++ åŋĢčŋ› %d į§’ ++ åŋĢčŋ› %d į§’ ++ ++ ++ åŋĢ退 %d į§’ ++ åŋĢ退 %d į§’ ++ ++ "čŊŦ到éĻ–éĄĩ" ++ "čŊŦåˆ°ä¸Šä¸€åą‚įē§" ++ "æ›´å¤šé€‰éĄš" ++ "厌成" ++ "æŸĨįœ‹å…¨éƒ¨" ++ "选拊åē”ᔍ" ++ "å…ŗé—­" ++ "åŧ€å¯" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "įŠēæ ŧ键" ++ "Sym+" ++ "Menu+" ++ "搜į´ĸâ€Ļ" ++ "清除æŸĨč¯ĸ" ++ "搜į´ĸæŸĨč¯ĸ" ++ "搜į´ĸ" ++ "提ä礿ŸĨč¯ĸ" ++ "č¯­éŸŗæœį´ĸ" ++ "分äēĢå¯ščąĄ" ++ "与%s分äēĢ" ++ "æ”ļčĩˇ" ++ 提醒 ++ "æŽĨåŦ" ++ "视éĸ‘é€šč¯" ++ "拒æŽĨ" ++ "挂断" ++ "æĨį”ĩ" ++ "æ­Ŗåœ¨é€šč¯" ++ "æ­Ŗåœ¨čŋ‡æģ¤æĨį”ĩ" ++ įģ„åˆæĄ† ++ æ­Ŗåœ¨æ’­æ”ž ++ į™ģåŊ•后才čƒŊäŊŋį”¨æ­¤åē”ᔍ ++ 输å…Ĩæ•°æŽæœ‰č¯¯ ++ 同æ—ļäŊŋᔍå¤Ēå¤ščŽžå¤‡č†åŦ ++ 厞įģåœ¨æ’­æ”žčŋ™éĄšå†…厚 ++ åˇ˛ä¸ŽåĒ’äŊ“åē”į”¨æ–­åŧ€čŋžæŽĨ ++ é˜Ÿåˆ—ä¸­æ˛Ąæœ‰äģģäŊ•å…ļäģ–内厚 ++ å‡ēäē†į‚šé—Žéĸ˜ã€‚č¯ˇį¨åŽé‡č¯•ã€‚ ++ æ— æŗ•åŽŒæˆæ“äŊœã€‚č¯ˇé‡č¯•ã€‚ ++ į›Žå‰æ— æŗ•åŽŒæˆč¯Ĩ操äŊœ ++ 输å…Ĩ/输å‡ēæœ‰č¯¯ ++ 在此地åŒēæ— æŗ•čŽˇå–čŋ™éĄšå†…厚 ++ æ­¤åē”į”¨æ— æŗ•æ‰§čĄŒč¯Ĩ操äŊœ ++ č¯Ĩå†…åŽšåˇ˛čĸĢåąč”Ŋ ++ čŽŋ问čĸĢæ‹’įģ ++ 需čρäŊŋᔍäģ˜č´šč´ĻåˇčŽŋ问 ++ 需čĻčŽžįŊŽ ++ æ— æŗ•å†čˇŗčŋ‡æ›´å¤šæ›˛į›Ž ++ å¯į”¨å­—åš• ++ åœį”¨å­—åš• ++ åŋĢčŋ› ++ čŋ›å…Ĩå…¨åąæ¨Ąåŧ ++ 退å‡ēå…¨åąæ¨Ąåŧ ++ éšč—æ’­æ”žå™¨æŽ§äģļ ++ 下一éĻ– ++ 隐藏å…ļäģ–莞įŊŽ ++ 昞į¤ēå…ļäģ–莞įŊŽ ++ 暂停 ++ 播攞 ++ 速åēĻ ++ 上一éĻ– ++ åŊ“å‰æ¨Ąåŧīŧšé‡å¤æ’­æ”žæ‰€æœ‰éĄšį›Žã€‚切æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚ ++ åŊ“å‰æ¨Ąåŧīŧšä¸é‡å¤ã€‚切æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚ ++ åŊ“å‰æ¨Ąåŧīŧšé‡å¤æ’­æ”žåŊ“å‰éĄšį›Žã€‚åˆ‡æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚ ++ åŋĢ退 ++ 播攞čŋ›åēĻ ++ 莞įŊŽ ++ 昞į¤ē播攞器控äģļ ++ å¯į”¨éšæœēæ’­æ”žæ¨Ąåŧ ++ åœį”¨éšæœēæ’­æ”žæ¨Ąåŧ ++ 停æ­ĸ ++ VR æ¨Ąåŧ ++ 下čŊŊ厌毕 ++ 下čŊŊ ++ æ­Ŗåœ¨ä¸‹čŊŊ ++ 下čŊŊå¤ąč´Ĩ ++ 下čŊŊ内厚 ++ 下čŊŊåˇ˛æš‚åœ ++ æ­Ŗåœ¨į­‰åž…čŋžæŽĨ到įŊ‘įģœäģĨčŋ›čĄŒä¸‹čŊŊ ++ æ­Ŗåœ¨į­‰åž…čŋžæŽĨ到 WLAN įŊ‘įģœäģĨčŋ›čĄŒä¸‹čŊŊ ++ æ­Ŗåœ¨į§ģ除下čŊŊ内厚 ++ %1$sīŧŒ%2$s ++ %1$.2f Mbps ++ å•åŖ°é“ ++ %1$d × %2$d ++ æ›ŋᔍčŊ¨ ++ å­—åš• ++ 旁į™Ŋ ++ čĄĨ充čŊ¨ ++ č‡Ē动 ++ 无 ++ 韺éĸ‘ ++ įĢ‹äŊ“åŖ° ++ įŽ¯įģ•åŖ° ++ 5.1 įŽ¯įģ•åŖ° ++ 7.1 įŽ¯įģ•åŖ° ++ æœĒįŸĨ ++ æœĒįŸĨ (%1$s) ++ 标éĸ˜ ++ å›žį‰‡ ++ 按钎īŧŒå›žį‰‡ ++ 链æŽĨ ++ 暂停 ++ 播攞 ++ åŋĢ退 ++ åŋĢčŋ› ++ 莺čŊŦåˆ°ä¸‹ä¸€éĄš ++ 莺čŊŦåˆ°ä¸Šä¸€éĄš ++ čœå• ++ čœå•æ  ++ čœå•éĄšį›Ž ++ čŋ›åēĻæĄ ++ 单选įģ„ ++ é€‰éĄšåĄ ++ æģšåŠ¨æĄ ++ "搜į´ĸ" ++ 旋čŊŦ按钎 ++ åŋ™įĸŒä¸­ ++ 厞æ”ļčĩˇ ++ åˇ˛åą•åŧ€ ++ æˇˇåˆ ++ å…ŗé—­ ++ åŧ€å¯ ++ æœĒ选中 ++ "999+" ++ 摘čρ ++ é€‰éĄšåĄåˆ—čĄ¨ ++ å€’čŽĄæ—ļ ++ åˇĨå…ˇæ  ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..e985d40 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ æ­Ŗå¸¸ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ åŋĢčŊ‰ %d į§’ ++ åŋĢčŊ‰ %d į§’ ++ ++ ++ 倒å¸ļ %d į§’ ++ 倒å¸ļ %d į§’ ++ ++ "į€čĻŊä¸ģ頁" ++ "å‘ä¸Šį€čĻŊ" ++ "更多選項" ++ "厌成" ++ "æŸĨįœ‹å…¨éƒ¨" ++ "é¸æ“‡æ‡‰į”¨į¨‹åŧ" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "åˆĒ除" ++ "Enter éĩ" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "įŠēį™Ŋéĩ" ++ "Sym +" ++ "Menu +" ++ "搜尋â€Ļ" ++ "清除æŸĨčŠĸ" ++ "搜尋æŸĨčŠĸ" ++ "搜尋" ++ "提ä礿ŸĨčŠĸ" ++ "čĒžéŸŗæœå°‹" ++ "分äēĢå°čąĄ" ++ "äŊŋį”¨ã€Œ%s」分äēĢ" ++ "æ”ļ合" ++ 提醒 ++ "æŽĨčŊ" ++ "čĻ–åƒ" ++ "拒æŽĨ" ++ "æŽ›æ–ˇ" ++ "來é›ģ" ++ "通話中" ++ "æ­Ŗåœ¨éŽæŋžäž†é›ģ" ++ 下拉åŧæ–šåĄŠ ++ æ­Ŗåœ¨æ’­æ”ž ++ į™ģå…Ĩ叺æˆļ才čƒŊäŊŋį”¨æ­¤æ‡‰į”¨į¨‹åŧ ++ čŧ¸å…Ĩčŗ‡æ–™ä¸æ­Ŗįĸē ++ 同時äŊŋᔍå¤Ēå¤ščŖįŊŽæ”ļčŊ內厚 ++ įŗģįĩąåˇ˛é–‹å§‹æ’­æ”žčŠ˛å…§åŽš ++ åˇ˛čˆ‡åĒ’éĢ”æ‡‰į”¨į¨‹åŧä¸­æ–ˇé€Ŗįˇš ++ åēåˆ—ä¸Šæ˛’æœ‰å…ļäģ–é …į›Ž ++ į™ŧį”ŸéŒ¯čǤīŧŒčĢ‹į¨åžŒå†čŠĻ。 ++ į„Ąæŗ•åŽŒæˆæ­¤æ“äŊœīŧŒčĢ‹å†čŠĻ一æŦĄã€‚ ++ į›Žå‰į„Ąæŗ•åŸˇčĄŒæ­¤æ“äŊœ ++ čŧ¸å…Ĩ/čŧ¸å‡ē錯čǤ ++ æ‰€åœ¨åœ°å€ä¸æäž›čŠ˛å…§åŽš ++ æ‡‰į”¨į¨‹åŧä¸æ”¯æ´æ­¤æ“äŊœ ++ å…§åŽšåˇ˛čĸĢ封鎖 ++ 拒įĩ•存取 ++ åŋ…é ˆäģ˜č˛ģ才čƒŊ存取 ++ 需čĻåŸˇčĄŒč¨­åŽš ++ į„Ąæŗ•å†į•ĨéŽæ›˛į›Ž ++ å•Ÿį”¨å­—åš• ++ åœį”¨å­—åš• ++ 向前åŋĢčŊ‰ ++ 進å…Ĩ全čžĸåš• ++ 關閉全čžĸåš• ++ éšąč—æ’­æ”žå™¨æŽ§åˆļ項 ++ įšŧįēŒ ++ 隱藏å…ļäģ–設åޚ ++ éĄ¯į¤ēå…ļäģ–設åޚ ++ æšĢ停 ++ 播攞 ++ 速åēĻ ++ čŋ”回 ++ 厜åŽļå˜…æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žæ‰€æœ‰é …į›Žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ 厜åŽļå˜…æ¨Ąåŧīŧšå””é‡č¤‡æ’­æ”žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ 厜åŽļå˜…æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žä¸€å€‹é …į›Žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ 倒čŊ‰ ++ æ’­æ”žé€˛åēĻ ++ č¨­åŽš ++ éĄ¯į¤ē播攞器控åˆļ項 ++ å•Ÿį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧ ++ åœį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧ ++ 停æ­ĸ ++ 虛æ“Ŧįžå¯Ļæ¨Ąåŧ ++ 下čŧ‰åތį•ĸ ++ 下čŧ‰ ++ æ­Ŗåœ¨ä¸‹čŧ‰ ++ 下čŧ‰å¤ąæ•— ++ 下čŧ‰å…§åŽš ++ 厞æšĢ停下čŧ‰ ++ æ­Ŗåœ¨į­‰åž…įļ˛įĩĄé€ŖįˇšäģĨ下čŧ‰æĒ”æĄˆ ++ æ­Ŗåœ¨į­‰åž… Wi-Fi é€ŖįˇšäģĨ下čŧ‰æĒ”æĄˆ ++ æ­Ŗåœ¨į§ģ除下čŧ‰å…§åŽš ++ %1$s、%2$s ++ %1$.2f Mbps ++ å–Žč˛é“ ++ %1$d × %2$d ++ å…ļäģ– ++ å­—åš• ++ 評čĢ– ++ 附加 ++ č‡Ē動 ++ į„Ą ++ 韺荊 ++ įĢ‹é̔聞 ++ į’°čŋ´įĢ‹é̔聞 ++ 5.1 į’°čŋ´įĢ‹é̔聞 ++ 7.1 į’°čŋ´įĢ‹é̔聞 ++ 不明 ++ 不明 (%1$s) ++ æ¨™éĄŒ ++ 圖像 ++ 圖像īŧŒæŒ‰éˆ• ++ 逪įĩ ++ æšĢ停 ++ 播攞 ++ 垌į§ģ ++ åŋĢčŊ‰ ++ 莺åŽģ下一項 ++ 莺åŽģ上一項 ++ 選喎 ++ 選喎列 ++ é¸å–Žé …į›Ž ++ 進åēĻ列 ++ é¸é …æŒ‰éˆ•įž¤įĩ„ ++ 分頁 ++ æ˛čģ¸ ++ "搜尋" ++ 垎čĒŋ按鈕 ++ åŋ™įĸŒä¸­ ++ 厞æ”ļ合 ++ åˇ˛åą•é–‹ ++ æˇˇåˆ ++ 關閉 ++ 開啟 ++ åˇ˛å–æļˆé¸å– ++ "999+" ++ 摘čρ ++ 分頁清喎 ++ č¨ˆæ™‚å™¨ ++ åˇĨå…ˇåˆ— ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..183b101 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,155 @@ ++ ++ ++ ++ 0.25 倍 ++ 0.5 倍 ++ 0.75 倍 ++ æ­Ŗå¸¸ ++ 1.25 倍 ++ 1.5 倍 ++ 2 倍 ++ ++ ++ åŋĢčŊ‰ %d į§’ ++ åŋĢčŊ‰ %d į§’ ++ ++ ++ 倒čŊ‰ %d į§’ ++ 倒čŊ‰ %d į§’ ++ ++ "į€čĻŊéϖ頁" ++ "å‘ä¸Šį€čĻŊ" ++ "更多選項" ++ "厌成" ++ "æŸĨįœ‹å…¨éƒ¨" ++ "é¸æ“‡æ‡‰į”¨į¨‹åŧ" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete éĩ" ++ "Enter éĩ" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "įŠēæ ŧéĩ" ++ "Sym +" ++ "Menu +" ++ "搜尋â€Ļ" ++ "清除æŸĨčŠĸ" ++ "搜尋æŸĨčŠĸ" ++ "搜尋" ++ "提ä礿ŸĨčŠĸ" ++ "čĒžéŸŗæœå°‹" ++ "分äēĢå°čąĄ" ++ "čˆ‡ã€Œ%s」分äēĢ" ++ "æ”ļ合" ++ 提醒 ++ "æŽĨčŊ" ++ "čĻ–č¨Š" ++ "拒æŽĨ" ++ "æŽ›æ–ˇ" ++ "來é›ģ" ++ "通話中" ++ "æ­Ŗåœ¨éŽæŋžäž†é›ģ" ++ 下拉åŧæ–šåĄŠ ++ įžæ­Ŗæ’­æ”ž ++ åŋ…é ˆį™ģå…Ĩ才čƒŊäŊŋį”¨é€™å€‹æ‡‰į”¨į¨‹åŧ ++ čŧ¸å…Ĩįš„čŗ‡æ–™ä¸æ­Ŗįĸē ++ 同時äŊŋᔍå¤Ēå¤ščŖįŊŽæ’­æ”žéŸŗč¨Š ++ į›Žå‰æ­Ŗåœ¨æ’­æ”žčŠ˛å…§åŽš ++ åĒ’éĢ”æ‡‰į”¨į¨‹åŧé€Ŗįˇšä¸­æ–ˇ ++ åž…æ’­æ¸…å–Žä¸­æ˛’æœ‰å…ļäģ–é …į›Ž ++ į™ŧį”ŸéŒ¯čǤīŧŒčĢ‹į¨åžŒå†čŠĻ。 ++ į„Ąæŗ•åŽŒæˆé€™é …æ“äŊœīŧŒčĢ‹å†čŠĻ一æŦĄã€‚ ++ į›Žå‰į„Ąæŗ•åŸˇčĄŒé€™é …æ“äŊœ ++ čŧ¸å…Ĩ/čŧ¸å‡ē錯čǤ ++ æ‰€åœ¨åœ°å€į„Ąæŗ•å­˜å–čŠ˛å…§åŽš ++ é€™å€‹æ‡‰į”¨į¨‹åŧä¸æ”¯æ´é€™é …操äŊœ ++ å…§åŽšåˇ˛é­å°éŽ– ++ 存取遭拒 ++ åŋ…é ˆäģ˜č˛ģ才čƒŊ存取 ++ åŋ…é ˆåŽŒæˆč¨­åŽš ++ į„Ąæŗ•å†į•ĨéŽæ›˛į›Ž ++ å•Ÿį”¨å­—åš• (Subtitle) ++ åœį”¨å­—åš• (Subtitle) ++ åŋĢčŊ‰ ++ 進å…Ĩ全čžĸåš•æ¨Ąåŧ ++ įĩæŸå…¨čžĸåš•æ¨Ąåŧ ++ éšąč—æ’­æ”žå™¨æŽ§åˆļ選項 ++ įšŧįēŒ ++ 隱藏å…ļäģ–設åޚ ++ éĄ¯į¤ēå…ļäģ–設åޚ ++ æšĢ停 ++ 播攞 ++ 速åēĻ ++ čŋ”回 ++ į›Žå‰æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žæ‰€æœ‰é …į›Žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ į›Žå‰æ¨Ąåŧīŧšä¸é‡č¤‡æ’­æ”žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ į›Žå‰æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žå–Žä¸€é …į›Žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚ ++ 倒čŊ‰ ++ æ’­æ”žé€˛åēĻ ++ č¨­åŽš ++ éĄ¯į¤ē播攞器控åˆļ選項 ++ å•Ÿį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧ ++ åœį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧ ++ 停æ­ĸ ++ 虛æ“Ŧå¯Ļåĸƒæ¨Ąåŧ ++ 下čŧ‰åŽŒæˆ ++ 下čŧ‰ ++ 下čŧ‰ä¸­ ++ į„Ąæŗ•ä¸‹čŧ‰ ++ 下čŧ‰ ++ 厞æšĢ停下čŧ‰ ++ įŗģįĩ࿜ƒį­‰åˆ°é€Ŗä¸Šįļ˛čˇ¯åžŒå†é–‹å§‹ä¸‹čŧ‰ ++ įŗģįĩ࿜ƒį­‰åˆ°é€Ŗä¸Š Wi-Fi 垌再開始下čŧ‰ ++ æ­Ŗåœ¨į§ģ除下čŧ‰å…§åŽš ++ %1$s、%2$s ++ %1$.2f Mbps ++ å–Žč˛é“ ++ %1$d × %2$d ++ æ›ŋᔍčģŒ ++ CC ++ 旁į™Ŋ ++ čŖœå……čģŒ ++ č‡Ē動 ++ į„Ą ++ 韺荊 ++ įĢ‹é̔聞 ++ į’°įšžéŸŗæ•ˆ ++ 5.1 į’°įšžéŸŗæ•ˆ ++ 7.1 į’°įšžéŸŗæ•ˆ ++ 不明 ++ 不明 (%1$s) ++ æ¨™éĄŒ ++ 圖像 ++ 圖像īŧŒæŒ‰éˆ• ++ 逪įĩ ++ æšĢ停 ++ 播攞 ++ 倒čŊ‰ ++ åŋĢčŊ‰ ++ 莺čŊ‰åˆ°ä¸‹ä¸€å€‹é …į›Ž ++ 莺čŊ‰åˆ°ä¸Šä¸€å€‹é …į›Ž ++ 功čƒŊ襨 ++ 功čƒŊčĄ¨åˆ— ++ 功čƒŊčĄ¨é …į›Ž ++ 進åēĻ列 ++ é¸é …æŒ‰éˆ•įž¤įĩ„ ++ é įą¤ ++ æ˛čģ¸ ++ "搜尋" ++ 垎čĒŋ按鈕 ++ åŋ™įĸŒä¸­ ++ 厞æ”ļ合 ++ åˇ˛åą•é–‹ ++ æˇˇåˆ ++ 關閉 ++ 開啟 ++ åˇ˛å–æļˆé¸å– ++ "999+" ++ 摘čρ ++ é įą¤æ¸…å–Ž ++ č¨ˆæ™‚å™¨ ++ åˇĨå…ˇåˆ— ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..00ab590 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,130 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Okujwayelekile ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ Dlulisela phambili ngamasekhondi angu-%d ++ Dlulisela phambili ngamasekhondi angu-%d ++ ++ ++ Hlehlisa ngamasekhondi angu-%d ++ Hlehlisa ngamasekhondi angu-%d ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Seshaâ€Ļ" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ "Phendula" ++ "Ividiyo" ++ "Yenqaba" ++ "Vala Ucingo" ++ "Ikholi engenayo" ++ "Ikholi eqhubekayo" ++ "Ukuveza ikholi engenayo" ++ Okudlala manje ++ Ngena ngemvume ukuze usebenzise le app ++ Idatha yokufakwayo engalungile ++ Ilalele emadivayisini amaningi kakhulu ++ Isivele idlala lokho okuqukethwe ++ Kunqanyuliwe ku-app yemidiya ++ Akukho okunye okufakwe olayinini ++ Kukhona okungalungile. Zama emuva kwesikhathi. ++ Ayikwazanga ukuqeda. Zama futhi. ++ Ayikwazi ukwenza lokho khona manje ++ Iphutha lokufakwayo/lomphumela ++ Ayikwazi ukuletha lokho okuqukethwe lapha ++ Le app ayikwazi ukwenza lokho ++ Lokho okuqukethwe kuvinjiwe ++ Ukufinyelelwa kunqatshiwe ++ Ukufinyelela kwepremium kuyadingeka ++ Kudingeka ukusetha ++ Ayikwazi ukweqa amanye amathrekhi amaningi ++ Nika amandla imibhalo engezansi ++ Khubaza imibhalo engezansi ++ Dlulisela phambili ++ Faka isikrini esigcwele ++ Phuma kusikrini esigcwele ++ Fihla izilawuli zesidlali ++ Okulandelayo ++ Fihla izilungiselelo ezingeziwe ++ Bonisa izilungiselelo ezingeziwe ++ Phumula ++ Dlala ++ Isivinini ++ Okwangaphambilini ++ Imodi yamanje: Phinda konke. Guqula imodi yokuphinda. ++ Imodeli yamanje: Ungaphindi lutho. Guqula imodi yokuphinda. ++ Imodi yamanje: Phinda kanye. Guqula imodi yokuphinda. ++ Buyisela emuva ++ Inqubekela phambili yokudlala ++ Amasethingi ++ Bonisa izilawuli zesidlali ++ Nika amandla imodi yokushova ++ Khubaza imodi yokushova ++ Misa ++ Inqubo ye-VR ++ Ukulanda kuqedile ++ Landa ++ Iyalanda ++ Ukulanda kuhlulekile ++ Ukulandwa ++ Okulandwayo kumiswe isikhashana ++ Ukulanda kulinde inethiwekhi ++ Ukulanda kulinde i-WiFi ++ Kususwa okulandiwe ++ %1$s, %2$s ++ %1$.2f Mbps ++ Okukodwa ++ %1$d × %2$d ++ Okunye ++ CC ++ Abahlaziyi ++ Okungeziwe ++ Okuzenzakalelayo ++ Lutho ++ Umsindo ++ I-Stereo ++ Umsindo ozungelezile ++ Umsindo ozungelezile ongu-5.1 ++ Umsindo ozungelezile ongu-7.1 ++ Akwaziwa ++ Akwaziwa (%1$s) ++ Phumula ++ Dlala ++ Funa okwangemuva ++ Funa uye phambili ++ Funa into elandelayo ++ Funa into yangaphambilini ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..9c33e5f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml +@@ -0,0 +1,4287 @@ ++ ++ ++ ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #1d873b ++ #d93025 ++ #ffffffff ++ #eecc0000 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ #98000000 ++ #B3000000 ++ #b0000000 ++ #FFF4F3F0 ++ #80808080 ++ #ffffff ++ #B3ffffff ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #ffffffff ++ #ff9e9e9e ++ #ff424242 ++ #00000000 ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #FF0000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #FFBEBEBE ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ #FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 20dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 4dp ++ 0.30 ++ 0.26 ++ 32dp ++ 64dp ++ 12dp ++ 4dp ++ 14sp ++ 5dp ++ 2dp ++ 18dp ++ 52dp ++ 9dp ++ 52dp ++ 71dp ++ 150dp ++ 52dp ++ 24dp ++ 14sp ++ 8dp ++ 12sp ++ 24dp ++ 48dp ++ 2dp ++ 12dp ++ 12dp ++ 48dp ++ 60dp ++ 10dp ++ 10dp ++ 0dp ++ 4dp ++ 2dp ++ 14dp ++ 10dp ++ 48dp ++ 52dp ++ 48dp ++ 8dp ++ 0dp ++ 50dp ++ 4dp ++ 30dp ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 20dp ++ 800dp ++ 120dp ++ 12dp ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 4dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 4dp ++ 14sp ++ 50dp ++ 26dp ++ 4dp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ @drawable/exo_icon_fastforward ++ @drawable/exo_icon_fullscreen_enter ++ @drawable/exo_icon_fullscreen_exit ++ @drawable/exo_icon_next ++ @drawable/exo_icon_pause ++ @drawable/exo_icon_play ++ @drawable/exo_icon_previous ++ @drawable/exo_icon_repeat_all ++ @drawable/exo_icon_repeat_off ++ @drawable/exo_icon_repeat_one ++ @drawable/exo_icon_rewind ++ @drawable/exo_icon_shuffle_off ++ @drawable/exo_icon_shuffle_on ++ @drawable/exo_icon_vr ++ @drawable/exo_icon_fastforward ++ @drawable/exo_icon_next ++ @drawable/exo_icon_pause ++ @drawable/exo_icon_play ++ @drawable/exo_icon_previous ++ @drawable/exo_icon_rewind ++ @drawable/exo_icon_circular_play ++ @drawable/exo_icon_stop ++ @drawable/exo_ic_audiotrack ++ @drawable/exo_ic_check ++ @drawable/exo_ic_forward ++ @drawable/exo_ic_fullscreen_enter ++ @drawable/exo_ic_fullscreen_exit ++ @drawable/exo_ic_skip_next ++ @drawable/exo_ic_chevron_left ++ @drawable/exo_ic_chevron_right ++ @drawable/exo_ic_pause_circle_filled ++ @drawable/exo_ic_play_circle_filled ++ @drawable/exo_ic_skip_previous ++ @drawable/exo_icon_repeat_all ++ @drawable/exo_icon_repeat_off ++ @drawable/exo_icon_repeat_one ++ @drawable/exo_ic_rewind ++ @drawable/exo_ic_settings ++ @drawable/exo_icon_shuffle_off ++ @drawable/exo_icon_shuffle_on ++ @drawable/exo_icon_fastforward ++ @drawable/exo_icon_rewind ++ @drawable/exo_ic_speed ++ @drawable/exo_ic_subtitle_off ++ @drawable/exo_ic_subtitle_on ++ @drawable/exo_icon_vr ++ @drawable/media3_icon_circular_play ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 127 ++ 150 ++ 33 ++ 100 ++ 8081 ++ 999 ++ ++ Fast forward %d second ++ Fast forward %d seconds ++ ++ ++ Rewind %d second ++ Rewind %d seconds ++ ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Searchâ€Ļ ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Alert ++ androidx.startup ++ Answer ++ Video ++ Decline ++ Hang Up ++ Incoming call ++ Ongoing call ++ Screening an incoming call ++ Change Bundle Location ++ Apply Changes ++ Cancel ++ 127.0.0.1:8081 ++ Provide a custom bundler address and port: ++ You can connect either via USB (localhost - default) or Wifi. If you connect via USB and running with a physical device, make sure you:\n 1. Connect your device via USB\n 2. Set the bundle location to `localhost:8081`\n 3. Run this command in your terminal:\n      `%1$s` ++ Copy\n ++ Connecting to debugger... ++ Failed to connect to debugger! ++ Open DevTools ++ Connect to the bundler to debug JavaScript ++ React Native Dev Menu (%1$s) ++ Running %1$s ++ Dismiss\n(ESC) ++ Capture Heap ++ Enable Fast Refresh ++ Disabling Fast Refresh because it requires a development bundle. ++ Switching to development bundle in order to enable Fast Refresh. ++ Disable Fast Refresh ++ Toggle Element Inspector ++ Loading from %1$sâ€Ļ ++ Failed to open DevTools. Please check that the dev server is running and reload the app. ++ Show Perf Monitor ++ Hide Perf Monitor ++ Reload ++ Reload\n(R,\u00A0R) ++ Failed to load bundle. Try restarting the bundler or reconnecting your device. ++ Report ++ Toggle Sampling Profiler ++ Settings ++ Debug Settings ++ Combo Box ++ Now playing ++ Protected content not supported on API levels below 18 ++ An unknown DRM error occurred ++ This device does not support the required DRM scheme ++ Unable to instantiate decoder %1$s ++ Sign in to use this app ++ Incorrect input data ++ Listening on too many devices ++ Already playing that content ++ Disconnected from media app ++ Nothing else is queued up ++ Something’s wrong. Try later. ++ Couldn’t finish. Try again. ++ Can’t do that right now ++ Input/output error ++ Can’t get that content here ++ This app can’t do that ++ That content is blocked ++ Access denied ++ Premium access required ++ Setup required ++ Can’t skip any more tracks ++ This device does not provide a decoder for %1$s ++ This device does not provide a secure decoder for %1$s ++ Unable to query device decoders ++ Enable subtitles ++ Disable subtitles ++ %1$.2fx ++ Fast forward ++ Enter fullscreen ++ Exit fullscreen ++ Hide player controls ++ Next ++ Hide additional settings ++ Show additional settings ++ Pause ++ Play ++ Speed ++ Previous ++ Current mode: Repeat all. Toggle repeat mode. ++ Current mode: Repeat none. Toggle repeat mode. ++ Current mode: Repeat one. Toggle repeat mode. ++ Rewind ++ Playback progress ++ Settings ++ Show player controls ++ Enable shuffle mode ++ Disable shuffle mode ++ Stop ++ 00:00:00 ++ VR mode ++ Download completed ++ Download ++ Downloading ++ Download failed ++ Downloads ++ Downloads paused ++ Downloads waiting for network ++ Downloads waiting for WiFi ++ Removing downloads ++ %1$s, %2$s ++ %1$.2f Mbps ++ Mono ++ %1$d × %2$d ++ Alternate ++ CC ++ Commentary ++ Supplementary ++ Auto ++ None ++ Audio ++ Stereo ++ Surround sound ++ 5.1 surround sound ++ 7.1 surround sound ++ Unknown ++ Unknown (%1$s) ++ Heading ++ Image ++ Button, Image ++ Link ++ Pause ++ Play ++ Seek back ++ Seek forward ++ Seek to next item ++ Seek to previous item ++ Preparing playback ++ Media playback ++ Menu ++ Menu Bar ++ Menu Item ++ Playback Speed ++ Progress Bar ++ Radio Group ++ localhost ++ Tab ++ Scroll Bar ++ Search ++ Select Playback Speed ++ Settings ++ Spin Button ++ busy ++ collapsed ++ expanded ++ mixed ++ off ++ on ++ unselected ++ 999+ ++ Summary ++ Tab List ++ Timer ++ Tool Bar ++ Unrecognized media format ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merger.xml +new file mode 100644 +index 0000000..5a37783 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/mergeReleaseResources/merger.xml +@@ -0,0 +1,6150 @@ ++ ++androidx.startup@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"Răspunde""Video""Respinge""Închide""Apel primit""Apel ÃŽn desfășurare""Se filtrează un apel primit""999+""ā°Ēā°ŋā°•ā°Ēāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ""ā°ĩāą€ā°Ąā°ŋā°¯āą‹ ā°•ā°žā°˛āą""ā°•ā°Ÿāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ""ā°Žāąā°—ā°ŋā°‚ā°šā°‚ā°Ąā°ŋ""ā°‡ā°¨āąâ€Œā°•ā°Žā°ŋā°‚ā°—āą ā°•ā°žā°˛āą""ā°•ā°žā°˛āą ā°•āąŠā°¨ā°¸ā°žā°—āąā°¤āą‹ā°‚ā°Ļā°ŋ""ā°‡ā°¨āąâ€Œā°•ā°Žā°ŋā°‚ā°—āą ā°•ā°žā°˛āąâ€Œā°¨āą ā°¸āąā°•āąā°°āą€ā°¨āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ""999+""ĐžŅ‚Đ˛ĐĩŅ‚Đ¸Ņ‚ŅŒ""ВидĐĩĐž""ĐžŅ‚ĐēĐģĐžĐŊĐ¸Ņ‚ŅŒ""ЗавĐĩŅ€ŅˆĐ¸Ņ‚ŅŒ""Đ’Ņ…ĐžĐ´ŅŅ‰Đ¸Đš Đ˛Ņ‹ĐˇĐžĐ˛""ĐĸĐĩĐēŅƒŅ‰Đ¸Đš Đ˛Ņ‹ĐˇĐžĐ˛""ФиĐģŅŒŅ‚Ņ€Đ°Ņ†Đ¸Ņ Đ˛Ņ…ĐžĐ´ŅŅ‰ĐĩĐŗĐž Đ˛Ņ‹ĐˇĐžĐ˛Đ°"">999""Sagutin""Video""Tanggihan""Ibaba""Papasok na tawag""Kasalukuyang tawag""Nagsi-screen ng papasok na tawag""999+""æŽĨčŊ""čĻ–č¨Š""拒æŽĨ""æŽ›æ–ˇ""來é›ģ""通話中""æ­Ŗåœ¨éŽæŋžäž†é›ģ""999+""Rispondi""Video""Rifiuta""Riaggancia""Chiamata in arrivo""Chiamata in corso""Applicazione filtro a chiamata in arrivo""999+""Respon""Vídeo""Rebutja""Penja""Trucada entrant""Trucada en curs""S\'està filtrant una trucada entrant""999+""Svara""Myndsímtal""Hafna""Leggja ÃĄ""Símtal berst""Símtal í gangi""Síar símtal sem berst""999+""Přijmout""Video""Odmítnout""Zavěsit""Příchozí hovor""Probíhající hovor""PrověřovÃĄní příchozího hovoru""999+""æŽĨåŦ""视éĸ‘é€šč¯""拒æŽĨ""挂断""æĨį”ĩ""æ­Ŗåœ¨é€šč¯""æ­Ŗåœ¨čŋ‡æģ¤æĨį”ĩ""999+""Jawab""Video""Tolak""Tutup""Panggilan masuk""Panggilan sedang berlangsung""Menyaring panggilan masuk""999+""åŋœį­”""ビデã‚Ē""拒åĻ""通話įĩ‚äē†""į€äŋĄ""通話中""į€äŋĄã‚’゚クãƒĒãƒŧãƒ‹ãƒŗã‚°ä¸­""999+""Î‘Ī€ÎŦÎŊĪ„ÎˇĪƒÎˇ""ΒίÎŊĪ„ÎĩÎŋ""Î‘Ī€ĪŒĪĪÎšĪˆÎˇ""ΤÎĩ΁ÎŧÎąĪ„ÎšĪƒÎŧĪŒĪ‚""Î•ÎšĪƒÎĩĪĪ‡ĪŒÎŧÎĩÎŊΡ ÎēÎģÎŽĪƒÎˇ""ΚÎģÎŽĪƒÎˇ ΃Îĩ ÎĩΞέÎģΚΞΡ""ΔιαÎģÎŋÎŗÎŽ ÎĩÎšĪƒÎĩĪĪ‡ĪŒÎŧÎĩÎŊÎˇĪ‚ ÎēÎģÎŽĪƒÎˇĪ‚""999+""Atbildēt""Video""NoraidÄĢt""Pārtraukt""IenākoÅĄais zvans""PaÅĄreizējais zvans""IenākoÅĄÄ zvana filtrÄ“ÅĄana""999+""Besvar""Video""Afvis""LÃĻg pÃĨ""IndgÃĨende opkald""IgangvÃĻrende opkald""Et indgÃĨende opkald screenes""999+""⤉⤤āĨā¤¤ā¤° ā¤ĻāĨā¤¯ā¤ž""ā¤ĩāĨā¤šā¤ŋā¤Ąā¤ŋ⤓""ā¤¨ā¤•ā¤žā¤° ā¤ĻāĨā¤¯ā¤ž""⤕āĨ‰ā¤˛ ā¤Ŧ⤂ā¤Ļ ā¤•ā¤°ā¤ž""ā¤‡ā¤¨ā¤•ā¤Žā¤ŋ⤂⤗ ⤕āĨ‰ā¤˛""⤏āĨā¤°āĨ‚ ⤅⤏⤞āĨ‡ā¤˛ā¤ž ⤕āĨ‰ā¤˛""ā¤‡ā¤¨ā¤•ā¤Žā¤ŋ⤂⤗ ⤕āĨ‰ā¤˛ ⤏āĨā¤•āĨā¤°āĨ€ā¤¨ ⤕⤰⤤ ā¤†ā¤šāĨ‡""āĨ¯āĨ¯āĨ¯+""Đ–Đ°ŅƒĐ°Đŋ""БĐĩĐšĐŊĐĩ""ŌšĐ°ĐąŅ‹ĐģдаĐŧĐ°Ņƒ""ĐĸŌąŅ‚Ō›Đ°ĐŊŅ‹ Ō›ĐžŅŽ""ĐšŅ–Ņ€Ņ–Ņ Ō›ĐžŌŖŅ‹Ņ€Đ°Ņƒ""ŌšĐžŌŖŅ‹Ņ€Đ°Ņƒ""КĐĩĐģĐŗĐĩĐŊ Ō›ĐžŌŖŅ‹Ņ€Đ°ŅƒĐ´Ņ‹ ŅŌ¯ĐˇŅƒ""999+""ЖооĐŋ ĐąĐĩŅ€Ō¯Ō¯""ВидĐĩĐž""ЧĐĩŅ‚ĐēĐĩ ĐēĐ°ĐŗŅƒŅƒ""ЧаĐģ҃҃ĐŊ҃ ĐąŌ¯Ņ‚Ō¯Ņ€Ō¯Ō¯""ĐšĐ¸Ņ€Ō¯Ō¯Ņ‡Ō¯ Ņ‡Đ°Đģ҃҃""ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ‡Đ°Đģ҃҃""ĐšĐ¸Ņ€Ō¯Ō¯Ņ‡Ō¯ Ņ‡Đ°Đģ҃҃ĐŊ҃ Đ¸Ņ€ĐŗĶŠĶŠ""999+""āǜāĒĩāĒžāĒŦ""āĒĩāĢ€āĒĄāĒŋāǝāĢ‹""āǍāĒ•āĒžāǰāĢ‹""āǏāĒŽāĒžāĒĒāĢāǤ āĒ•āǰāĢ‹""āLJāǍāĒ•āĒŽāĒŋāĒ‚āĒ— āĒ•ā̉āǞ""āǚāĒžāǞā́ āĒ•ā̉āǞ""āLJāǍāĒ•āĒŽāĒŋāĒ‚āĒ— āĒ•ā̉āǞāǍā́āĒ‚ āǏāĢāĒ•āĢāǰāĢ€āǍāĒŋāĒ‚āĒ— āĒĨāĒžāǝ āĒ›ā̇""999+""Answer""Video""Decline""Hang Up""Incoming call""Ongoing call""Screening an incoming call""999+""ĐĨĐ°Ņ€Đ¸ŅƒĐģĐ°Ņ…""ВидĐĩĐž""ĐĸĐ°Ņ‚ĐŗĐ°ĐģĐˇĐ°Ņ…""ĐĸĐ°ŅĐģĐ°Ņ…""Đ˜Ņ€ŅŅĐŊ Đ´ŅƒŅƒĐ´ĐģĐ°ĐŗĐ°""Đ”ŅƒŅƒĐ´ĐģĐ°ĐŗĐ° Ņ…Đ¸ĐšĐŗĐ´ŅĐļ йаКĐŊа""Đ˜Ņ€ŅŅĐŊ Đ´ŅƒŅƒĐ´ĐģĐ°ĐŗŅ‹Đŗ Ņ…Đ°Ņ€ŅƒŅƒĐģĐļ йаКĐŊа""999+""Answer""Video""Decline""Hang up""Incoming call""On-going call""Screening an incoming call""999+""Jawab""Video""Tolak""Tamatkan Panggilan""Panggilan masuk""Panggilan sedang berlangsung""Menyaring panggilan masuk""999+""æŽĨčŊ""čĻ–åƒ""拒æŽĨ""æŽ›æ–ˇ""來é›ģ""通話中""æ­Ŗåœ¨éŽæŋžäž†é›ģ""999+""ឆ្លើយ""វីដេážĸážŧ""បដិសេធ""ដážļក់​ចážģះ""កážļរ​ហៅ​ចážŧល""កážļរ​ហៅដែលកំពážģងដំណើរកážļរ""កំពážģងពិនិត្យកážļរ​ហៅ​ចážŧល""999+""Atender""Vídeo""Recusar""Desligar""Chamada recebida""Chamada em andamento""Filtrando uma ligaÃ§ÃŖo recebida""999+""ÕŠÕĄÕŋÕĄÕŊÕ­ÕĄÕļÕĨÕŦ""ՏÕĨÕŊÕĄÕĻÕĄÕļÕŖ""ՄÕĨրÕĒÕĨÕŦ""ÔąÕžÕĄÖ€ÕŋÕĨÕŦ""ՄուÕŋÖ„ÕĄÕĩÕĢÕļ ÕĻÕĄÕļÕŖ""Ô¸ÕļÕŠÕĄÖÕĢÕ¯ ÕĻÕĄÕļÕŖ""ՄուÕŋÖ„ÕĄÕĩÕĢÕļ ÕĻÕĄÕļÕŖÕĢ ÕĻÕŋում""999+""መልáˆĩ""á‰Ēዲዮ""አá‰ĩቀበል""áˆĩልኩን ዝጋ""ገá‰ĸ áŒĨáˆĒ""áŠĨየተáŠĢሄደ á‹Ģለ áŒĨáˆĒ""ገá‰ĸ áŒĨáˆĒ áˆ›áŒŖáˆĢá‰ĩ""999+""АдĐēĐ°ĐˇĐ°Ņ†ŅŒ""Đ’Ņ–Đ´ŅĐ°""ĐĐ´Ņ…Ņ–ĐģŅ–Ņ†ŅŒ""Đ—Đ°Đ˛ŅŅ€ŅˆŅ‹Ņ†ŅŒ""ĐŖĐ˛Đ°Ņ…ĐžĐ´ĐŊŅ‹ Đ˛Ņ‹ĐēĐģŅ–Đē""Đ‘ŅĐŗŅƒŅ‡Ņ‹ Đ˛Ņ‹ĐēĐģŅ–Đē""Đ¤Ņ–ĐģŅŒŅ‚Ņ€Đ°Đ˛Đ°ĐŊĐŊĐĩ ŅžĐ˛Đ°Ņ…ĐžĐ´ĐŊĐ°ĐŗĐ° Đ˛Ņ‹ĐēĐģŅ–Đē҃""999+"#1f000000#8a000000#1d873b#d93025#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp4dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999AnswerVideoDeclineHang UpIncoming callOngoing callScreening an incoming call999+#ff424242#ffffffff#b3ffffff127 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ Descărcarea a fost finalizatăDescarcăSe descarcăDescărcarea nu a reușitDescărcăriDescărcările au fost ÃŽntrerupteDescărcările așteaptă rețeauaDescărcările așteaptă rețeaua Wi-FiSe elimină descărcărileā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāą ā°Ēāą‚ā°°āąā°¤ā°¯ā°ŋā°‚ā°Ļā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāą ā°šāą‡ā°¯ā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāą ā°šāą‡ā°¸āąā°¤āą‹ā°‚ā°Ļā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāą ā°ĩā°ŋā°Ģā°˛ā°Žāąˆā°‚ā°Ļā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāąâ€Œā°˛āąā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāąâ€Œā°˛āą ā°Ēā°žā°œāą ā°šāą‡ā°¯ā°Ŧā°Ąāąā°Ąā°žā°¯ā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāąā°¸āą ā°¨āą†ā°Ÿāąâ€Œā°ĩā°°āąā°•āą ā°•āą‹ā°¸ā°‚ ā°šāą‚ā°¸āąā°¤āąā°¨āąā°¨ā°žā°¯ā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāąâ€Œā°˛āą WiFi ā°•āą‹ā°¸ā°‚ ā°šāą‚ā°¸āąā°¤āąā°¨āąā°¨ā°žā°¯ā°ŋā°ĄāąŒā°¨āąâ€Œā°˛āą‹ā°Ąāąâ€Œā°˛ā°¨āą ā°¤āą€ā°¸ā°ŋā°ĩāą‡ā°¸āąā°¤āą‹ā°‚ā°Ļā°ŋĐĄĐēĐ°Ņ‡Đ¸Đ˛Đ°ĐŊиĐĩ СавĐĩŅ€ŅˆĐĩĐŊОХĐēĐ°Ņ‡Đ°Ņ‚ŅŒĐĄĐēĐ°Ņ‡Đ¸Đ˛Đ°ĐŊиĐĩâ€ĻĐžŅˆĐ¸ĐąĐēа ҁĐēĐ°Ņ‡Đ¸Đ˛Đ°ĐŊĐ¸ŅĐĄĐēĐ°Ņ‡Đ¸Đ˛Đ°ĐŊĐ¸ŅĐĄĐēĐ°Ņ‡Đ¸Đ˛Đ°ĐŊиĐĩ ĐŋŅ€Đ¸ĐžŅŅ‚Đ°ĐŊОвĐģĐĩĐŊоОĐļидаĐŊиĐĩ ĐŋОдĐēĐģŅŽŅ‡ĐĩĐŊĐ¸Ņ Đē ҁĐĩŅ‚Đ¸ĐžĐļидаĐŊиĐĩ ĐŋОдĐēĐģŅŽŅ‡ĐĩĐŊĐ¸Ņ Đē Wi-FiĐŖĐ´Đ°ĐģĐĩĐŊиĐĩ ҁĐēĐ°Ņ‡Đ°ĐŊĐŊҋ҅ Ņ„Đ°ĐšĐģОвâ€ĻTapos na ang pag-downloadI-downloadNagda-downloadHindi na-downloadMga DownloadNa-pause ang mga pag-downloadNaghihintay ng network ang pag-downloadNaghihintay ng WiFi ang mga pag-downloadInaalis ang mga na-download下čŧ‰åŽŒæˆä¸‹čŧ‰ä¸‹čŧ‰ä¸­į„Ąæŗ•下čŧ‰ä¸‹čŧ‰åˇ˛æšĢ停下čŧ‰įŗģįĩ࿜ƒį­‰åˆ°é€Ŗä¸Šįļ˛čˇ¯åžŒå†é–‹å§‹ä¸‹čŧ‰įŗģįĩ࿜ƒį­‰åˆ°é€Ŗä¸Š Wi-Fi 垌再開始下čŧ‰æ­Ŗåœ¨į§ģ除下čŧ‰å…§åŽšDownload completatoScaricaDownload in corsoâ€ĻDownload non riuscitoDownloadDownload in pausaDownload in attesa di reteDownload in attesa di Wi-FiRimozione dei downloadâ€ĻS\'ha completat la baixadaBaixaS\'està baixantNo s\'ha pogut baixarBaixadesLes baixades estan en pausaLes baixades estan esperant una xarxaLes baixades estan esperant una Wi‑FiS\'estan suprimint les baixadesNiðurhali lokiðSÃĻkjaSÃĻkirNiðurhal mistÃŗkstNiðurhalNiðurhÃļl í biðNiðurhÃļl bíða eftir netkerfiNiðurhÃļl bíða eftir WiFiFjarlÃĻgir niðurhalStahovÃĄní bylo dokončenoStÃĄhnoutStahovÃĄníStaÅžení se nezdařiloStahovÃĄníStahovÃĄní pozastavenoStahovÃĄní čekÃĄ na síÅĨStahovÃĄní čekÃĄ na WiFiOdstraňovÃĄní staÅženÊho obsahu下čŊŊ厌毕下čŊŊæ­Ŗåœ¨ä¸‹čŊŊ下čŊŊå¤ąč´Ĩ下čŊŊ内厚下čŊŊåˇ˛æš‚åœæ­Ŗåœ¨į­‰åž…čŋžæŽĨ到įŊ‘įģœäģĨčŋ›čĄŒä¸‹čŊŊæ­Ŗåœ¨į­‰åž…čŋžæŽĨ到 WLAN įŊ‘įģœäģĨčŋ›čĄŒä¸‹čŊŊæ­Ŗåœ¨į§ģ除下čŊŊ内厚Download selesaiDownloadMendownloadDownload gagalDownloadDownload dijedaDownload menunggu konektivitas jaringanDownload menunggu konektivitas Wi-FiMenghapus downloadダã‚Ļãƒŗãƒ­ãƒŧドが厌äē†ã—ぞしたダã‚Ļãƒŗãƒ­ãƒŧドダã‚Ļãƒŗãƒ­ãƒŧドしãĻいぞすダã‚Ļãƒŗãƒ­ãƒŧドãĢå¤ąæ•—ã—ãžã—ãŸãƒ€ã‚Ļãƒŗãƒ­ãƒŧドダã‚Ļãƒŗãƒ­ãƒŧド一時停æ­ĸダã‚Ļãƒŗãƒ­ãƒŧド停æ­ĸ: ネットワãƒŧクæŽĨįļšä¸­ãƒ€ã‚Ļãƒŗãƒ­ãƒŧド停æ­ĸ: Wi-Fi æŽĨįļšä¸­ãƒ€ã‚Ļãƒŗãƒ­ãƒŧドを削除しãĻいぞすΗ ÎģÎŽĪˆÎˇ ÎŋÎģÎŋÎēÎģÎˇĪĪŽÎ¸ÎˇÎēÎĩÎ›ÎŽĪˆÎˇÎ›ÎŽĪˆÎˇÎ— ÎģÎŽĪˆÎˇ ÎąĪ€Î­Ī„Ī…Ī‡ÎĩÎ›ÎŽĪˆÎĩÎšĪ‚ÎŸÎš ÎģÎŽĪˆÎĩÎšĪ‚ Ī„Î­Î¸ÎˇÎēÎąÎŊ ΃Îĩ Ī€ÎąĪĪƒÎˇ.Οι ÎģÎŽĪˆÎĩÎšĪ‚ ÎĩίÎŊιΚ ΃Îĩ ÎąÎŊÎąÎŧÎŋÎŊÎŽ ÎŗÎšÎą δίÎē΄΅Îŋ.Οι ÎģÎŽĪˆÎĩÎšĪ‚ ÎĩίÎŊιΚ ΃Îĩ ÎąÎŊÎąÎŧÎŋÎŊÎŽ ÎŗÎšÎą Wi-Fi.ÎšÎąĪ„ÎŦĪÎŗÎˇĪƒÎˇ ÎģÎŽĪˆÎĩΉÎŊLejupielāde ir pabeigtaLejupielādētNotiek lejupielādeLejupielāde neizdevāsLejupielādesLejupielādes ir pārtrauktas.Lejupielādes gaida savienojumu ar tÄĢklu.Lejupielādes gaida savienojumu ar Wi-Fi.Notiek lejupielāŞu noņemÅĄanaDownloaden er udførtDownloadDownloaderDownload mislykkedesDownloadsDownloads er sat pÃĨ pauseDownloads venter pÃĨ netvÃĻrksforbindelseDownloads venter pÃĨ Wi-Fi-netvÃĻrkFjerner downloadsā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ĒāĨ‚⤰āĨā¤Ŗ ā¤ā¤žā¤˛āĨ‡ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤•ā¤°ā¤žā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤šāĨ‹ā¤¤ ā¤†ā¤šāĨ‡ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤅⤝ā¤ļ⤏āĨā¤ĩāĨ€ ā¤ā¤žā¤˛āĨ‡ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ąā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤Ĩā¤žā¤‚ā¤Ŧā¤ĩ⤞āĨ‡ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤍āĨ‡ā¤Ÿā¤ĩ⤰āĨā¤•ā¤šāĨ€ ā¤ĒāĨā¤°ā¤¤āĨ€ā¤•āĨā¤ˇā¤ž ⤕⤰⤤ ā¤†ā¤šāĨ‡ā¤¤ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ĩā¤žā¤¯ā¤Ģā¤žā¤¯ ⤚āĨ€ ā¤ĒāĨā¤°ā¤¤āĨ€ā¤•āĨā¤ˇā¤ž ⤕⤰⤤ ā¤†ā¤šāĨ‡ā¤¤ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤•ā¤žā¤ĸāĨ‚⤍ ā¤Ÿā¤žā¤•ā¤¤ ā¤†ā¤šāĨ‡Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊĐ´Ņ‹Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅƒĐ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊĐąĐ°Đ´Ņ‹Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŌ“Đ°ĐŊĐ´Đ°Ņ€Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ ĐŋŅ€ĐžŅ†Đĩҁ҂ĐĩҀҖ ŅƒĐ°Ō›Ņ‹Ņ‚ŅˆĐ° Ņ‚ĐžŌ›Ņ‚Đ°Đ´Ņ‹.Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ Ō¯ŅˆŅ–ĐŊ ĐļĐĩĐģŅ–ĐŗĐĩ Ō›ĐžŅŅ‹Đģ҃ ĐēĐĩŅ€ĐĩĐē.Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģ҃ Ō¯ŅˆŅ–ĐŊ Wi-Fi-Ō“Đ° Ō›ĐžŅŅ‹Đģ҃ ĐēĐĩŅ€ĐĩĐē.Đ–Ō¯ĐēŅ‚ĐĩĐŋ аĐģŅ‹ĐŊŌ“Đ°ĐŊĐ´Đ°Ņ€ ĶŠŅˆŅ–Ņ€Ņ–ĐģŅƒĐ´ĐĩĐ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģ҃҃ Đ°ŅĐēŅ‚Đ°Đ´Ņ‹Đ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģŅƒŅƒĐ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊŅƒŅƒĐ´Đ°Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊйаК ĐēаĐģĐ´Ņ‹Đ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊĐŗĐ°ĐŊĐ´Đ°Ņ€Đ–Ō¯ĐēŅ‚ĶŠĐŋ аĐģ҃҃ ҂ҋĐŊĐ´Ņ‹Ņ€Ņ‹ĐģĐ´Ņ‹ĐĸĐ°Ņ€ĐŧаĐēĐēа Ņ‚ŅƒŅ‚Đ°ŅˆŅƒŅƒ Đēԝ҂ԝĐģŌ¯Ō¯Đ´ĶŠWiFi\'ĐŗĐ° Ņ‚ŅƒŅ‚Đ°ŅˆŅƒŅƒ Đēԝ҂ԝĐģŌ¯Ō¯Đ´ĶŠĐ–Ō¯ĐēŅ‚ĶŠĐģŌ¯Đŋ аĐģŅ‹ĐŊĐŗĐ°ĐŊĐ´Đ°Ņ€ ĶŠŅ‡Ō¯Ņ€Ō¯ĐģŌ¯Ō¯Đ´ĶŠāĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĒāĢ‚āǰāĢāĒŖ āĒĨāǝā́āĒ‚āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āǰāĢ‹āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āǰāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒāĒĄāĒžāljāǍāǞāĢ‹āĒĄ āǍāĒŋāǎāĢāĒĢāĒŗ āĒĨāǝā́āĒ‚āĒĄāĒžāljāǍāǞāĢ‹āĒĄāĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĢ‹āĒ­āĒžāĒĩāĢāǝāĒž āĒ›ā̇āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĒĩāĒž āǍā̇āǟāĒĩāǰāĢāĒ•āǍāĢ€ āǰāĒžāĒš āǜāĢ‹āĒĩāĒžāLj āǰāĒšāĢ€ āĒ›ā̇āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒĨāĒĩāĒž āĒĩāĒžāLJ-āĒĢāĒžāLJāǍāĢ€ āǰāĒžāĒš āǜāĢ‹āĒĩāĒžāLj āǰāĒšāĢ€ āĒ›ā̇āĒĄāĒžāljāǍāǞāĢ‹āĒĄ āĒ•āĒžāĒĸāĢ€ āǍāĒžāĒ–āĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒĐĸĐ°Ņ‚Đ°Đļ Đ´ŅƒŅƒŅŅĐ°ĐŊĐĸĐ°Ņ‚Đ°Ņ…ĐĸĐ°Ņ‚Đ°Đļ йаКĐŊаĐĸĐ°Ņ‚Đ°Đļ Ņ‡Đ°Đ´ŅĐ°ĐŊĐŗŌ¯ĐšĐĸĐ°Ņ‚aĐģŅ‚ĐĸĐ°Ņ‚Đ°ĐģŅ‚ŅƒŅƒĐ´Ņ‹Đŗ ҂ԝҀ ĐˇĐžĐŗŅĐžĐžŅĐžĐŊĐĸĐ°Ņ‚Đ°ĐģŅ‚ŅƒŅƒĐ´ ҁԝĐģĐļŅŅĐŗ Ņ…Ō¯ĐģŅŅĐļ йаКĐŊаĐĸĐ°Ņ‚Đ°ĐģŅ‚ŅƒŅƒĐ´ Wi-Fi-Đŗ Ņ…Ō¯ĐģŅŅĐļ йаКĐŊаĐĸĐ°Ņ‚Đ°Đļ Đ°Đ˛ŅĐ°ĐŊ Ņ„Đ°ĐšĐģŅ‹Đŗ Ņ…Đ°ŅĐ°Đļ йаКĐŊаDownload completedDownloadDownloadingDownload failedDownloadsDownloads pausedDownloads waiting for networkDownloads waiting for Wi-FiRemoving downloadsMuat turun selesaiMuat turunMemuat turunMuat turun gagalMuat turunMuat turun dijedaMuat turun menunggu rangkaianMuat turun menunggu Wi-FiMengalih keluar muat turun下čŧ‰åތį•ĸ下čŧ‰æ­Ŗåœ¨ä¸‹čŧ‰ä¸‹čŧ‰å¤ąæ•—下čŧ‰å…§åŽšåˇ˛æšĢ停下čŧ‰æ­Ŗåœ¨į­‰åž…įļ˛įĩĄé€ŖįˇšäģĨ下čŧ‰æĒ”æĄˆæ­Ŗåœ¨į­‰åž… Wi-Fi é€ŖįˇšäģĨ下čŧ‰æĒ”æĄˆæ­Ŗåœ¨į§ģ除下čŧ‰å…§åŽšáž”ážļន​បញ្ចប់​កážļរទážļញយកទážļញយកកំពážģង​ទážļញ​យកមិន​ážĸážļច​ទážļញយក​បážļន​ទេទážļញយកកážļរទážļញយក​ត្រážŧវបážļនផ្ážĸážļកកážļរទážļញយក​កំពážģងរង់ចážļំ​កážļរតភ្ជážļប់បណ្ដážļញកážļរទážļញយក​កំពážģងរង់ចážļំ​កážļរតភ្ជážļប់ Wi-Fiកំពážģង​លážģប​កážļរទážļញយកՆÕĨրÕĸÕĨÕŧÕļումÕļ ÕĄÕžÕĄÖ€ÕŋÕžÕĨցՆÕĨրÕĸÕĨÕŧÕļÕĨÕŦՆÕĨրÕĸÕĨÕŧÕļÕ¸Ö‚Õ´Õ‰Õ°ÕĄÕģÕ¸Õ˛ÕžÕĨց ÕļÕĨրÕĸÕĨÕŧÕļÕĨÕŦՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨրՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨրը Õ¤ÕĄÕ¤ÕĄÖ€ÕĨÖÕžÕĄÕŽ ÕĨÕļÕ‘ÕĄÕļցÕĢ Õ¸Ö€Õ¸ÕļումWi-Fi ÖÕĄÕļցÕĢ Õ¸Ö€Õ¸ÕļումՆÕĨրÕĸÕĨÕŧÕļումÕļÕĨրը Õ°ÕĨÕŧÕĄÖÕžÕ¸Ö‚Õ´ ÕĨÕļማውረá‹ĩ ተጠናቋልአውርá‹ĩበማውረá‹ĩ ላይማውረá‹ĩ áŠ áˆá‰°áˆŗáŠĢምየወረዱውርá‹ļá‰Ŋ á‰Ŗáˆ‰á‰ á‰ĩ á‰†áˆ˜á‹‹áˆáŠ á‹á‰ŗáˆ¨ መረá‰Ļá‰Ŋን á‰ áˆ˜áŒ á‰Ŗá‰ á‰… ላይ á‹Ģሉ ውርá‹ļá‰ŊWiFiን á‰ áˆ˜áŒ á‰Ŗá‰ á‰… ላይ á‹Ģሉ ውርá‹ļá‰Ŋውርá‹ļá‰Ŋን በማáˆĩወገá‹ĩ ላይСĐŋаĐŧĐŋĐžŅžĐēа СавĐĩŅ€ŅˆĐ°ĐŊаХĐŋаĐŧĐŋĐ°Đ˛Đ°Ņ†ŅŒĐĄĐŋаĐŧĐŋĐžŅžĐ˛Đ°ĐĩŅ†Ņ†Đ°Đ—ĐąĐžĐš ҁĐŋаĐŧĐŋĐžŅžĐēŅ–ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ–ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– ĐŋҀҋĐŋŅ‹ĐŊĐĩĐŊŅ‹ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– Ņ‡Đ°ĐēĐ°ŅŽŅ†ŅŒ ĐŋадĐēĐģŅŽŅ‡ŅĐŊĐŊŅ да ҁĐĩŅ‚ĐēŅ–ĐĄĐŋаĐŧĐŋĐžŅžĐēŅ– Ņ‡Đ°ĐēĐ°ŅŽŅ†ŅŒ ĐŋадĐēĐģŅŽŅ‡ŅĐŊĐŊŅ да Wi-FiĐ’Ņ‹Đ´Đ°ĐģĐĩĐŊĐŊĐĩ ҁĐŋаĐŧĐŋОваĐēDownload completedDownloadDownloadingDownload failedDownloadsDownloads pausedDownloads waiting for networkDownloads waiting for WiFiRemoving downloadsYuklab olindiYuklab olishYuklab olinmoqdaYuklab olinmadiYuklanmalarYuklanmalar pauzadaYuklanmalar internetga ulanishni kutmoqdaYuklanmalar Wi-Fi aloqasini kutmoqdaYuklanmalar olib tashlanmoqdaTÊlÊchargement terminÊTÊlÊchargerTÊlÊchargement en coursâ€ĻÉchec du tÊlÊchargementTÊlÊchargementsTÊlÊchargements interrompusTÊlÊchargements en attente du rÊseauTÊlÊchargements en attente du Wi-FiSuppression des tÊlÊchargements en coursâ€ĻZakończono pobieraniePobierzPobieramNie udało się pobraćPobieranieWstrzymano pobieraniePobierane pliki oczekują na siećPobierane pliki oczekują na Wi-FiUsuwam pobraneÄÃŖ hoàn táēĨt táēŖi xuáģ‘ngTáēŖi xuáģ‘ngĐang táēŖi xuáģ‘ngKhông táēŖi xuáģ‘ng đưáģŖcTài nguyÃĒn Ä‘ÃŖ táēŖi xuáģ‘ngÄÃŖ táēĄm dáģĢng táēŖi xuáģ‘ngĐang cháģ cÃŗ máēĄng đáģƒ táēŖi xuáģ‘ngĐang cháģ cÃŗ Wi-Fi đáģƒ táēŖi xuáģ‘ngĐang xÃŗa cÃĄc máģĨc Ä‘ÃŖ táēŖi xuáģ‘ngShkarkimi pÃĢrfundoiShkarkoPo shkarkohetShkarkimi dÃĢshtoiShkarkimetShkarkimet u vendosÃĢn nÃĢ pauzÃĢShkarkimet nÃĢ pritje tÃĢ rrjetitShkarkimet nÃĢ pritje tÃĢ WiFiShkarkimet po hiqenNedladdningen är klarLadda nedLaddar nedNedladdningen misslyckadesNedladdningarNedladdningar har pausatsNedladdningar väntar pÃĨ nätverketNedladdningar väntar pÃĨ wifiNedladdningar tas bortPrenos je končanPrenosPrenaÅĄanjePrenos ni uspelPrenosiPrenosi so začasno zaustavljeni.Prenosi čakajo na povezavo z omreÅžjem.Prenosi čakajo na povezavo Wi-Fi.Odstranjevanje prenosovSÅĨahovanie bolo dokončenÊStiahnuÅĨSÅĨahuje saNepodarilo sa stiahnuÅĨStiahnutÊSÅĨahovanie je pozastavenÊSÅĨahovanie čakÃĄ na sieÅĨSÅĨahovanie čakÃĄ na Wi‑FiOdstraňuje sa stiahnutÃŊ obsahÚˆØ§Ø¤Ų† Ų„ŲˆÚˆ Ų…ÚŠŲ…Ų„ ÛŲˆ Ú¯ÛŒØ§ÚˆØ§Ø¤Ų† Ų„ŲˆÚˆ ÚŠØąÛŒÚēÚˆØ§Ø¤Ų† Ų„ŲˆÚˆ ÛŲˆ ØąÛØ§ ÛÛ’ÚˆØ§Ø¤Ų† Ų„ŲˆÚˆ Ų†Ø§ÚŠØ§Ų… ÛŲˆ Ú¯ÛŒØ§ÚˆØ§Ø¤Ų† Ų„ŲˆÚˆØ˛ÚˆØ§Ø¤Ų† Ų„ŲˆÚˆØ˛ Ų…ŲˆŲ‚ŲˆŲ ÛŲˆ Ú¯ØĻÛ’ÚˆØ§Ø¤Ų† Ų„ŲˆÚˆØ˛ Ų†ÛŒŲš ŲˆØąÚŠ ÚŠÛ’ Ų…Ų†ØĒØ¸Øą ہیÚēÚˆØ§Ø¤Ų† Ų„ŲˆÚˆØ˛ WiFi ÚŠÛ’ Ų…Ų†ØĒØ¸Øą ہیÚēÚˆØ§Ø¤Ų† Ų„ŲˆÚˆØ˛ ÚŠŲˆ ÛŲšØ§ÛŒØ§ ØŦا ØąÛØ§ ہےImepakuliwaPakuaInapakuaImeshindwa kupakuaVipakuliwaImesimamisha shughuli ya kupakuaUpakuaji unasubiri mtandaoUpakuaji unasubiri Wi-FiInaondoa vipakuliwaTransferÃĒncia concluídaTransferirA transferirâ€ĻFalha na transferÃĒnciaTransferÃĒnciasTransferÃĒncias colocadas em pausaTransferÃĒncias a aguardar uma redeTransferÃĒncias a aguardar Wi-FiA remover as transferÃĒnciasâ€Ļİndirme işlemi tamamlandĹİndirİndiriliyorİndirilemediİndirilenlerİndirmeler duraklatÄąldĹİndirmeler için ağ bekleniyorİndirmeler için kablosuz ağ bekleniyorİndirilenler kaldÄąrÄąlÄąyorāŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•āŽĒā¯āŽĒāŽŸā¯āŽŸāŽ¤ā¯āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•ā¯āŽŽā¯ āŽĒāŽŸā¯āŽŸāŽŠā¯āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•ā¯āŽ•āŽŋāŽąāŽ¤ā¯āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ• āŽŽā¯āŽŸāŽŋāŽ¯āŽĩāŽŋāŽ˛ā¯āŽ˛ā¯ˆāŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•āŽ™ā¯āŽ•āŽŗā¯āŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•āŽ™ā¯āŽ•āŽŗā¯ āŽ‡āŽŸā¯ˆāŽ¨āŽŋāŽąā¯āŽ¤ā¯āŽ¤āŽĒā¯āŽĒāŽŸā¯āŽŸāŽŠāŽ¨ā¯†āŽŸā¯āŽĩā¯ŠāŽ°ā¯āŽ•ā¯āŽ•āŽŋāŽąā¯āŽ•āŽžāŽ•āŽ•ā¯ āŽ•āŽžāŽ¤ā¯āŽ¤āŽŋāŽ°ā¯āŽ•ā¯āŽ•āŽŋāŽŠā¯āŽąāŽŠWi-FiāŽ•āŽžāŽ•āŽ•ā¯ āŽ•āŽžāŽ¤ā¯āŽ¤āŽŋāŽ°ā¯āŽ•ā¯āŽ•āŽŋāŽŠā¯āŽąāŽŠāŽĒāŽ¤āŽŋāŽĩāŽŋāŽąāŽ•ā¯āŽ•āŽ™ā¯āŽ•āŽŗā¯ āŽ…āŽ•āŽąā¯āŽąāŽĒā¯āŽĒāŽŸā¯āŽ•āŽŋāŽŠā¯āŽąāŽŠā¸ā¸˛ā¸Ŗā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩā¸”āš€ā¸Ēā¸Ŗāš‡ā¸ˆā¸Ēā¸Ąā¸šā¸šā¸Ŗā¸“āšŒā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩ⏔⏁⏺ā¸Ĩā¸ąā¸‡ā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩā¸”ā¸ā¸˛ā¸Ŗā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩ⏔ā¸Ĩāš‰ā¸Ąāš€ā¸Ģā¸Ĩā¸§ā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩā¸”ā¸ā¸˛ā¸Ŗā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩ⏔ā¸Ģā¸ĸā¸¸ā¸”ā¸Šā¸ąāšˆā¸§ā¸„ā¸Ŗā¸˛ā¸§ā¸ā¸ŗā¸Ĩā¸ąā¸‡ā¸Ŗā¸­āš€ā¸„ā¸Ŗā¸ˇā¸­ā¸‚āšˆā¸˛ā¸ĸāš€ā¸žā¸ˇāšˆā¸­ā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩ⏔⏁⏺ā¸Ĩā¸ąā¸‡ā¸Ŗā¸­ Wi-Fi āš€ā¸žā¸ˇāšˆā¸­ā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩ⏔⏁⏺ā¸Ĩā¸ąā¸‡ā¸™ā¸ŗā¸Ŗā¸˛ā¸ĸ⏁⏞⏪⏗ā¸ĩāšˆā¸”ā¸˛ā¸§ā¸™āšŒāš‚ā¸Ģā¸Ĩā¸”ā¸­ā¸­ā¸Ø¨Ø§ØąÚ¯ÛŒØąÛŒ ÚŠØ§Ų…Ų„ Ø´Ø¯Ø¨Ø§ØąÚ¯ÛŒØąÛŒØ¯ØąØ­Ø§Ų„ Ø¨Ø§ØąÚ¯ÛŒØąÛŒØ¨Ø§ØąÚ¯ÛŒØąÛŒ Ų†Ø´Ø¯Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ų…ŲˆŲ‚ØĒØ§Ų‹ Ų…ØĒŲˆŲ‚Ų Ø´Ø¯Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ø¯ØąØ§Ų†ØĒØ¸Ø§Øą Ø´Ø¨ÚŠŲ‡ Ø§ØŗØĒØ¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§ Ø¯Øą Ø§Ų†ØĒØ¸Ø§Øą Wi-Fi Ø§ØŗØĒØ­Ø°Ų Ø¨Ø§ØąÚ¯ÛŒØąÛŒâ€ŒŲ‡Ø§Atsisiuntimo procesas baigtasAtsisiÅŗstiAtsisiunčiamaNepavyko atsisiÅŗstiAtsisiuntimaiAtsisiuntimai pristabdytiNorint tęsti atsis., laukiama tinkloNorint tęsti atsis., laukiama „Wi-Fi“PaÅĄalinami atsisiuntimaiOsatu da deskargaDeskargakDeskargatzenEzin izan da deskargatuDeskargakDeskargak pausatuta daudeDeskargak sare mugikorrera konektatzeko zain daudeDeskargak wifira konektatzeko zain daudeDeskargak kentzenāē”āē˛āē§āģ‚āēĢāēĨāē”āēĒāēŗāģ€āēĨāēąāē”āģāēĨāģ‰āē§āē”āē˛āē§āģ‚āēĢāēĨāē”āēāēŗāēĨāēąāē‡āē”āē˛āē§āģ‚āēĢāēĨāē”āē”āē˛āē§āģ‚āēĢāēŧāē”āēšāģāģˆāēĒāēŗāģ€āēĨāēąāē”āē”āē˛āē§āģ‚āēĢāēĨāē”āēĸāē¸āē”āē”āē˛āē§āģ‚āēĢāēŧāē”āēŠāēģāģˆāē§āē„āē˛āē§āģāēĨāģ‰āē§āēāē˛āē™āē”āē˛āē§āģ‚āēĢāēŧāē”āēāēŗāēĨāēąāē‡āēĨāģāē–āģ‰āē˛āģ€āē„āēˇāē­āē‚āģˆāē˛āēāēĸāēšāģˆāēāē˛āē™āē”āē˛āē§āģ‚āēĢāēŧāē”āēāēŗāēĨāēąāē‡āēĨāģāē–āģ‰āē˛ WiFi āēĸāēšāģˆāēāēŗāēĨāēąāē‡āēĨāēļāēšāēāē˛āē™āē”āē˛āē§āģ‚āēĢāēĨāē”āē­āē­āē×”הורדה הושלמההורדהההורדה מ×Ēב×Ļ×ĸ×Ēההורדה לא הושלמההורדו×Ēההורדו×Ē ×”×•×Š×”×•×”×”×•×¨×“×•×Ē ×‘×”×ž×Ēנה לרש×Ēההורדו×Ē ×‘×”×ž×Ēנה ל-Wi-Fiמסיר הורדו×ĒDownload completedDownloadDownloadingDownload failedDownloadsDownloads pausedDownloads waiting for networkDownloads waiting for Wi-FiRemoving downloadsLataus valmisLataaLadataanLataus epäonnistuiLatauksetLataukset keskeytettyLataukse odottavat verkkoyhteyttäLataukset odottavat Wi-Fi-yhteyttäPoistetaan latauksiaDownload completedDownloadDownloadingDownload failedDownloadsDownloads pausedDownloads waiting for networkDownloads waiting for Wi-FiRemoving downloadsTÊlÊchargement terminÊTÊlÊchargerTÊlÊchargementâ€ĻÉchec du tÊlÊchargementTÊlÊchargementsTÊlÊchargements mis en pauseTÊlÊchargements en attente de rÊseauTÊlÊchargements en attente de Wi-FiSuppression des tÊlÊchargementsâ€ĻDescarga de archivos completadoDescargarDescargandoNo se ha podido descargarDescargasDescargas pausadasDescargas en espera de redDescargas en espera de Wi-FiQuitando descargasAllalaadimine lÃĩpetatiAllalaadimineAllalaadimineAllalaadimine ebaÃĩnnestusAllalaadimisedAllalaadimised peatatiAllalaadimised on vÃĩrgu ootelAllalaadimised on WiFi-vÃĩrgu ootelAllalaadimiste eemaldaminePreuzimanje je dovrÅĄenoPreuzmiPreuzimanjePreuzimanje nije uspjeloPreuzimanjaPreuzimanja su pauziranaPreuzimanja čekaju mreÅžuPreuzimanja čekaju Wi-FiUklanjanje preuzimanjaA letÃļltÊs befejeződÃļttLetÃļltÊsLetÃļltÊs folyamatbanNem sikerÃŧlt a letÃļltÊsLetÃļltÊsekLetÃļltÊsek szÃŧneteltetveA letÃļltÊsek hÃĄlÃŗzatra vÃĄrakoznakA letÃļltÊsek Wi-Fi-re vÃĄrakoznakLetÃļltÊsek tÃļrlÊse folyamatbanDownloaden voltooidDownloadenDownloadenDownloaden misluktDownloadsDownloads gepauzeerdDownloads wachten op netwerkDownloads wachten op wifiDownloads verwijderenĐ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩŅ‚Đž ĐˇĐ°Đ˛ŅŠŅ€ŅˆĐ¸Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩĐ˜ĐˇŅ‚ĐĩĐŗĐģŅ ҁĐĩĐ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐĩŅ‚Đž ĐŊĐĩ ĐąĐĩ ҃ҁĐŋĐĩ҈ĐŊĐžĐ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅĐ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° ŅĐ° ĐŊа ĐŋĐ°ŅƒĐˇĐ°Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° Ņ‡Đ°ĐēĐ°Ņ‚ Đ˛Ņ€ŅŠĐˇĐēа ҁ иĐŊŅ‚ĐĩŅ€ĐŊĐĩŅ‚Đ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° Ņ‡Đ°ĐēĐ°Ņ‚ Đ˛Ņ€ŅŠĐˇĐēа ҁ Wi-FiĐ˜ĐˇŅ‚ĐĩĐŗĐģŅĐŊĐ¸ŅŅ‚Đ° ҁĐĩ ĐŋŅ€ĐĩĐŧĐ°Ņ…Đ˛Đ°Ņ‚āĻĄāĻžāωāύāϞ⧋āĻĄ āĻšā§Ÿā§‡ āϗ⧇āϛ⧇āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰ⧁āύāĻĄāĻžāωāύāϞ⧋āĻĄ āĻšāĻšā§āϛ⧇āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰāĻž āϝāĻžā§ŸāύāĻŋāĻĄāĻžāωāύāϞ⧋āĻĄāĻĄāĻžāωāύāϞ⧋āĻĄ āĻĒāϜ āĻ•āϰāĻž āφāϛ⧇āĻĄāĻžāωāύāϞ⧋āĻĄ āϚāĻžāϞ⧁ āĻ•āϰāĻžāϰ āϜāĻ¨ā§āϝ āύ⧇āϟāĻ“ā§ŸāĻžāĻ°ā§āϕ⧇āϰ āϏāĻžāĻĨ⧇ āĻ•āĻžāύ⧇āĻ•ā§āϟ āĻšāĻ“ā§ŸāĻžāϰ āĻ…āĻĒ⧇āĻ•ā§āώāĻž āĻ•āϰāĻž āĻšāĻšā§āϛ⧇āĻĄāĻžāωāύāϞ⧋āĻĄ āϚāĻžāϞ⧁ āĻ•āϰāĻžāϰ āϜāĻ¨ā§āϝ āĻ“ā§ŸāĻžāχ-āĻĢāĻžāĻ‡ā§Ÿā§‡āϰ āϏāĻžāĻĨ⧇ āĻ•āĻžāύ⧇āĻ•ā§āϟ āĻšāĻ“ā§ŸāĻžāϰ āĻ…āĻĒ⧇āĻ•ā§āώāĻž āĻ•āϰāĻž āĻšāĻšā§āϛ⧇āĻĄāĻžāωāύāϞ⧋āĻĄ āĻ•āϰāĻž āĻ•āĻ¨ā§āĻŸā§‡āĻ¨ā§āϟ āϏāϰāĻŋā§Ÿā§‡ āĻĻ⧇āĻ“ā§ŸāĻž āĻšāĻšā§āĻ›ā§‡ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤¸ā¤ŽāĨā¤Ē⤍āĨā¤¨ ⤭⤝āĨ‹ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰ā¤ŋ⤁ā¤ĻāĨˆ ā¤›ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰āĨā¤¨ ⤏⤕ā¤ŋā¤ā¤¨ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ąā¤šā¤°āĨ‚ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰āĨā¤¨āĨ‡ ā¤•ā¤žā¤°āĨā¤¯ ā¤Ē⤜ ⤗⤰ā¤ŋ⤝āĨ‹ā¤‡ā¤¨āĨā¤Ÿā¤°ā¤¨āĨ‡ā¤Ÿā¤Žā¤ž ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤­ā¤ā¤Ē⤛ā¤ŋ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰ā¤ŋ⤍āĨ‡ ⤛WiFi ā¤Žā¤ž ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤­ā¤ā¤Ē⤛ā¤ŋ ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤗⤰ā¤ŋ⤍āĨ‡ ā¤›ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ąā¤šā¤°āĨ‚ ā¤šā¤Ÿā¤žā¤‰ā¤ā¤ĻāĨˆAflaai is voltooiAflaaiLaai tans afKon nie aflaai nieAflaaieAflaaie is onderbreekAflaaie wag tans vir netwerkAflaaie wag tans vir wi-fiVerwyder tans aflaaieNedlastingen er fullførtLast nedLaster nedNedlastingen mislyktesNedlastingerNedlastinger er satt pÃĨ pauseNedlastinger venter pÃĨ nettverketNedlastinger venter pÃĨ Wi-FI-tilkoblingFjerner nedlastingerā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ĒāĨ‚ā¤°ā¤ž ā¤šāĨā¤†ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕⤰āĨ‡ā¤‚ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤šāĨ‹ ā¤°ā¤šā¤ž ā¤šāĨˆā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤¨ā¤šāĨ€ā¤‚ ā¤šāĨ‹ ā¤¸ā¤•ā¤žā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕āĨ€ ā¤—ā¤ˆ ā¤ŽāĨ€ā¤Ąā¤ŋā¤¯ā¤ž ā¤Ģā¤ŧā¤žā¤‡ā¤˛āĨ‡ā¤‚ā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤰āĨ‹ā¤•ā¤ž ā¤—ā¤¯ā¤ž ā¤šāĨˆā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ļāĨā¤°āĨ‚ ⤕⤰⤍āĨ‡ ⤕āĨ‡ ⤞ā¤ŋā¤, ā¤‡ā¤‚ā¤Ÿā¤°ā¤¨āĨ‡ā¤Ÿ ⤏āĨ‡ ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤šāĨ‹ā¤¨āĨ‡ ā¤•ā¤ž ā¤‡ā¤‚ā¤¤ā¤œā¤ŧā¤žā¤° ā¤šāĨˆā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ā¤ļāĨā¤°āĨ‚ ⤕⤰⤍āĨ‡ ⤕āĨ‡ ⤞ā¤ŋā¤, ā¤ĩā¤žā¤ˆ-ā¤Ģā¤ŧā¤žā¤ˆ ⤏āĨ‡ ⤕⤍āĨ‡ā¤•āĨā¤Ÿ ā¤šāĨ‹ā¤¨āĨ‡ ā¤•ā¤ž ā¤‡ā¤‚ā¤¤ā¤œā¤ŧā¤žā¤° ā¤šāĨˆā¤Ąā¤žā¤‰ā¤¨ā¤˛āĨ‹ā¤Ą ⤕āĨ€ ā¤—ā¤ˆ āĨžā¤žā¤‡ā¤˛āĨ‡ā¤‚ ā¤šā¤Ÿā¤žā¤ˆ ā¤œā¤ž ā¤°ā¤šāĨ€ ā¤šāĨˆā¤‚჊ამოáƒĸვირთვა áƒ“áƒáƒĄáƒ áƒŖáƒšáƒ“áƒáƒŠáƒáƒ›áƒáƒĸვირთვამიმდინარეობს ჩამოáƒĸვირთვაჩამოáƒĸვირთვა ვერ მოხერხდაჩამოáƒĸვირთვებიჩამოáƒĸვირთვები áƒ“áƒáƒžáƒáƒŖáƒ–áƒ”áƒ‘áƒŖáƒšáƒ˜áƒáƒŠáƒáƒ›áƒáƒĸვირთვები áƒĨსელს ელოდებაჩამოáƒĸვირთვები Wi-Fi-ქ ელოდებამიმდინარეობს ჩამოáƒĸვირთვების ამოშლაDownload abgeschlossenHerunterladenWird heruntergeladenDownload fehlgeschlagenDownloadsDownloads pausiertAuf Netzwerkverbindung wird gewartetAuf WLAN-Verbindung wird gewartetDownloads werden entferntEndirmə tamamlandÄąEndirinEndirilirEndirmə alÄąnmadÄąEndirmələrEndirmə durdurulubEndirmələr şəbəkəni gÃļzləyirEndirmələr WiFi şəbəkəsini gÃļzləyirEndirilənlər silinirë‹¤ėš´ëĄœë“œ ė™„ëŖŒë‹¤ėš´ëĄœë“œë‹¤ėš´ëĄœë“œ ė¤‘ë‹¤ėš´ëĄœë“œ ė‹¤íŒ¨ë‹¤ėš´ëĄœë“œë‹¤ėš´ëĄœë“œ ėŧė‹œė¤‘ė§€ë¨ë‹¤ėš´ëĄœë“œëĨŧ ėœ„í•´ ë„¤íŠ¸ė›ŒíŦ 뗰枰 대기 ė¤‘ë‹¤ėš´ëĄœë“œëĨŧ ėœ„í•´ Wi-Fi 뗰枰 대기 ė¤‘ë‹¤ėš´ëĄœë“œ 항ëĒŠ ė‚­ė œ ė¤‘ā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩ ā´Ēāĩ‚āĩŧā´¤āĩā´¤ā´ŋā´¯ā´žā´¯ā´ŋā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩ ⴚāĩ†ā´¯āĩā´¯āĩā´¨āĩā´¨āĩā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩ ā´Ēā´°ā´žā´œā´¯ā´Ēāĩā´Ēāĩ†ā´Ÿāĩā´Ÿāĩā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´•āĩžā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´•āĩž ā´¤ā´žāĩŊā´•āĩā´•ā´žā´˛ā´ŋā´•ā´Žā´žā´¯ā´ŋ ā´¨ā´ŋāĩŧā´¤āĩā´¤ā´ŋā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´•āĩž ā´¨āĩ†ā´ąāĩā´ąāĩâ€Œā´ĩāĩŧā´•āĩā´•ā´ŋā´¨āĩ ā´•ā´žā´¤āĩā´¤ā´ŋā´°ā´ŋā´•āĩā´•āĩā´¨āĩā´¨āĩā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´•āĩž ā´ĩāĩˆā´Ģāĩˆā´¯āĩā´•āĩā´•ā´žā´¯ā´ŋ ā´•ā´žā´¤āĩā´¤ā´ŋā´°ā´ŋā´•āĩā´•āĩā´¨āĩā´¨āĩā´Ąāĩ—āĩēā´˛āĩ‹ā´Ąāĩā´•āĩž ā´¨āĩ€ā´•āĩā´•ā´‚ ⴚāĩ†ā´¯āĩā´¯āĩā´¨āĩā´¨āĩĐŸŅ€ĐĩСĐĩĐŧĐ°ŅšĐĩŅ‚Đž ĐˇĐ°Đ˛Ņ€ŅˆĐ¸ĐŸŅ€ĐĩСĐĩĐŧиХĐĩ ĐŋŅ€ĐĩСĐĩĐŧаНĐĩ҃ҁĐŋĐĩ҈ĐŊĐž ĐŋŅ€ĐĩСĐĩĐŧĐ°ŅšĐĩĐŸŅ€ĐĩСĐĩĐŧĐ°ŅšĐ°ĐŸŅ€ĐĩСĐĩĐŧĐ°ŅšĐ°Ņ‚Đ° ҁĐĩ ĐŋĐ°ŅƒĐˇĐ¸Ņ€Đ°ĐŊиХĐĩ ҇ĐĩĐēа ĐŧŅ€ĐĩĐļа Са ĐŋŅ€ĐĩСĐĩĐŧĐ°ŅšĐ°Ņ‚Đ°ĐĄĐĩ ҇ĐĩĐēа WiFi Са ĐŋŅ€ĐĩСĐĩĐŧĐ°ŅšĐ°Ņ‚Đ°ĐĄĐĩ ĐžŅ‚ŅŅ‚Ņ€Đ°ĐŊŅƒĐ˛Đ°Đ°Ņ‚ ĐŋŅ€ĐĩСĐĩĐŧĐ°ŅšĐ°Ņ‚Đ°ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗ ā˛Ēāŗ‚ā˛°āŗā˛Ŗā˛—āŗŠā˛‚ā˛Ąā˛ŋā˛Ļāŗ†ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ†ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œ ā˛ĩā˛ŋā˛Ģā˛˛ā˛—āŗŠā˛‚ā˛Ąā˛ŋā˛Ļāŗ†ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛ĩā˛ŋā˛°ā˛žā˛Žā˛—āŗŠā˛ŗā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ†ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗ ā˛¨āŗ†ā˛Ÿāŗâ€Œā˛ĩā˛°āŗā˛•āŗâ€Œā˛—ā˛žā˛—ā˛ŋ ā˛•ā˛žā˛¯āŗā˛¤āŗā˛¤ā˛ŋā˛ĩāŗ†ā˛ĄāŗŒā˛¨āŗâ€Œā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗāŗ Wi-Fi ā˛—ā˛žā˛—ā˛ŋ ā˛•ā˛žā˛¯āŗā˛¤āŗā˛¤ā˛ŋā˛ĩāŗ†ā˛ĄāŗŒā˛¨āŗā˛˛āŗ‹ā˛Ąāŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺆➗⺆ā˛Ļāŗā˛šā˛žā˛•ā˛˛ā˛žā˛—āŗā˛¤āŗā˛¤ā˛ŋā˛Ļāŗ†Preuzimanje je zavrÅĄenoPreuzmiPreuzimanjePreuzimanje nije uspjeloPreuzimanjaPreuzimanja su pauziranaPreuzimanja čekaju povezivanje s mreÅžomPreuzimanja čekaju WiFiUklanjanje preuzimanjaဒေá€Ģငá€ēးလုဒá€ēလုပá€ēပá€ŧီးပá€Ģပá€ŧီဒေá€Ģငá€ēးလုဒá€ē လုပá€ēရနá€ēဒေá€Ģငá€ēးလုဒá€ēလုပá€ēနေသညá€ēဒေá€Ģငá€ēးလုဒá€ēလုပá€ē၍ မရပá€Ģဒေá€Ģငá€ēးလုဒá€ēမá€ģá€Ŧးဒေá€Ģငá€ēးလုဒá€ēမá€ģá€Ŧး ခဏရပá€ēထá€Ŧးသညá€ēဒေá€Ģငá€ēးလုဒá€ēမá€ģá€Ŧးက အငá€ēတá€Ŧနကá€ēရရနá€ē စေá€Ŧင့á€ēနေသညá€ēဒေá€Ģငá€ēးလုဒá€ēမá€ģá€Ŧးက WiFi ရရနá€ē စေá€Ŧင့á€ēနေသညá€ēဒေá€Ģငá€ēးလုဒá€ēမá€ģá€Ŧး ဖယá€ēရှá€Ŧးနေသညá€ēØ§ŲƒØĒŲ…Ų„ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ØĒŲ†Ø˛ŲŠŲ„ØŦØ§ØąŲ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„.ØĒØšØ°Ų‘Øą Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ØĒŲ…Ų‘ ØĨŲŠŲ‚Ø§Ų ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ Ų…Ø¤Ų‚ØĒŲ‹Ø§.ØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ؁؊ Ø§Ų†ØĒØ¸Ø§Øą Ø§Ų„Ø§ØĒØĩØ§Ų„ Ø¨Ø§Ų„Ø´Ø¨ŲƒØŠØšŲ…Ų„ŲŠØ§ØĒ Ø§Ų„ØĒŲ†Ø˛ŲŠŲ„ ؁؊ Ø§Ų†ØĒØ¸Ø§Øą اØĒØĩØ§Ų„ Wi-Fi.ØĒØŦØąŲŠ ØĨØ˛Ø§Ų„ØŠ Ø§Ų„Ų…Ø­ØĒŲˆŲ‰ Ø§Ų„Ø°ŲŠ ØĒŲ… ØĒŲ†Ø˛ŲŠŲ„Ų‡Se completÃŗ la descargaDescargarDescargandoNo se pudo descargarDescargasSe pausaron las descargasEsperando red para descargasEsperando Wi-Fi para descargasQuitando descargasCompletouse a descargaDescargarDescargandoProduciuse un erro na descargaDescargasAs descargas estÃĄn en pausaAs descargas estÃĄn agardando pola redeAs descargas estÃĄn agardando pola wifiQuitando descargasDownload concluídoFazer o downloadFazendo o downloadFalha no downloadDownloadsDownloads pausadosDownloads aguardando uma conexÃŖo de redeDownloads aguardando uma rede Wi-FiRemovendo downloadsЗаваĐŊŅ‚Đ°ĐļĐĩĐŊĐŊŅ СавĐĩŅ€ŅˆĐĩĐŊоЗаваĐŊŅ‚Đ°ĐļĐ¸Ņ‚Đ¸Đ—Đ°Đ˛Đ°ĐŊŅ‚Đ°ĐļŅƒŅ”Ņ‚ŅŒŅŅĐĐĩ вдаĐģĐžŅŅ СаваĐŊŅ‚Đ°ĐļĐ¸Ņ‚Đ¸Đ—Đ°Đ˛Đ°ĐŊŅ‚Đ°ĐļĐĩĐŊĐŊŅĐ—Đ°Đ˛Đ°ĐŊŅ‚Đ°ĐļĐĩĐŊĐŊŅ ĐŋŅ€Đ¸ĐˇŅƒĐŋиĐŊĐĩĐŊĐžĐžŅ‡Ņ–ĐēŅƒŅ”Ņ‚ŅŒŅŅ ĐŋŅ–Đ´ĐēĐģŅŽŅ‡ĐĩĐŊĐŊŅ Đ´Đž ĐŧĐĩŅ€ĐĩĐļŅ–ĐžŅ‡Ņ–ĐēŅƒŅ”Ņ‚ŅŒŅŅ ĐŋŅ–Đ´ĐēĐģŅŽŅ‡ĐĩĐŊĐŊŅ Đ´Đž Wi-FiЗаваĐŊŅ‚Đ°ĐļĐĩĐŊĐŊŅ видаĐģŅŅŽŅ‚ŅŒŅŅĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐĩ ҘĐĩ ĐˇĐ°Đ˛Ņ€ŅˆĐĩĐŊĐžĐŸŅ€ĐĩŅƒĐˇĐŧĐ¸ĐŸŅ€ĐĩŅƒĐˇĐ¸Đŧа ҁĐĩĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐĩ ĐŊĐ¸Ņ˜Đĩ ҃ҁĐŋĐĩĐģĐžĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐ°ĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐ° ҁ҃ ĐŋĐ°ŅƒĐˇĐ¸Ņ€Đ°ĐŊĐ°ĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐ° ҇ĐĩĐēĐ°Ņ˜Ņƒ ĐŊа ĐŧŅ€ĐĩĐļŅƒĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐ° ҇ĐĩĐēĐ°Ņ˜Ņƒ ĐŊа WiFiĐŸŅ€ĐĩŅƒĐˇĐ¸ĐŧĐ°ŅšĐ° ҁĐĩ ҃ĐēĐģĐ°ŅšĐ°Ņ˜Ņƒā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ā¨ŽāŠā¨•āŠ°ā¨Žā¨˛ ā¨šāŠ‹ā¨‡ā¨†ā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ā¨•ā¨°āŠ‹ā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ā¨•āŠ€ā¨¤ā¨ž ā¨œā¨ž ⍰ā¨ŋā¨šā¨ž ā¨šāŠˆā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ⍅⍏ā¨Ģ⍞ ⍰ā¨ŋā¨šā¨žā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ąā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ā¨°āŠā¨• ā¨—ā¨ ā¨šā¨¨ā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ąā¨žā¨‚ ⍞⍈ ā¨¨āŠˆāŠąā¨Ÿā¨ĩ⍰⍕ ā¨ĻāŠ€ ā¨‰ā¨ĄāŠ€ā¨• ā¨šāŠ‹ ā¨°ā¨šāŠ€ ā¨šāŠˆā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ąā¨žā¨‚ ⍞⍈ ā¨ĩā¨žā¨ˆ-ā¨Ģā¨žā¨ˆ ā¨ĻāŠ€ ā¨‰ā¨ĄāŠ€ā¨• ā¨šāŠ‹ ā¨°ā¨šāŠ€ ā¨šāŠˆā¨Ąā¨žā¨Šā¨¨ā¨˛āŠ‹ā¨Ą ā¨•āŠ€ā¨¤āŠ€ ā¨¸ā¨ŽāŠąā¨—ā¨°āŠ€ ā¨šā¨Ÿā¨žā¨ˆ ā¨œā¨ž ā¨°ā¨šāŠ€ ā¨šāŠˆāļļāˇāļœāˇāļąāˇ“āļ¸ āˇƒāļ¸āˇŠāļ´āˇ–āļģ⎊āļĢ āļšāļģāļą āļŊāļ¯āˇ“āļļāˇāļœāļąāˇŠāļąāļļāˇāļœāļąāˇ’āļ¸āˇ’āļąāˇŠāļļāˇāļœāˇāļąāˇ“āļ¸ āļ…āˇƒāļ¸āļ­āˇŠ ⎀⎒āļēāļļāˇāļœāˇāļąāˇ“āļ¸āˇŠāļļāˇāļœāˇāļąāˇ“āļ¸āˇŠ ⎀⎒āļģāˇāļ¸ āļšāļģ āļ‡āļ­āļĸāˇāļŊāļē ⎃āļŗāˇ„āˇ āļļāˇāļœāˇāļąāˇ“āļ¸āˇŠ āļģ⎐āļŗāˇ“ āˇƒāˇ’āļ§āˇ“WiFi ⎃āļŗāˇ„āˇ āļļāˇāļœāˇāļąāˇ“āļ¸āˇŠ āļģ⎐āļŗāˇ“ āˇƒāˇ’āļ§āˇ“āļļāˇāļœāˇāļąāˇ“āļ¸āˇŠ āļ‰āˇ€āļ­āˇŠ āļšāˇ’āļģ⎓āļ¸Preuzimanje je zavrÅĄenoPreuzmiPreuzima sePreuzimanje nije uspeloPreuzimanjaPreuzimanja su pauziranaPreuzimanja čekaju na mreÅžuPreuzimanja čekaju na WiFiPreuzimanja se uklanjajuUkulanda kuqedileLandaIyalandaUkulanda kuhlulekileUkulandwaOkulandwayo kumiswe isikhashanaUkulanda kulinde inethiwekhiUkulanda kulinde i-WiFiKususwa okulandiweSe redă acumConectează-te pentru a folosi aplicațiaDate de intrare incorecteSe ascultă pe prea multe dispozitiveConținutul se redă dejaDeconectat de la aplicația mediaNu mai există elemente ÃŽn coadăA apărut o problemă. Încearcă mai tÃĸrziu.Nu s-a putut finaliza. Încearcă din nou.Acțiunea nu poate fi realizată momentanEroare la intrare / ieșireConținutul nu poate fi descărcat aiciAplicația nu poate realiza această acțiuneConținutul este blocatAcces refuzatEste necesar accesul premiumEste necesară configurareaNu mai pot fi omise melodiiÎntrerupeRedăDerulează ÃŽnapoiDerulează ÃŽnainteTreci la elementul următorTreci la elementul anteriorā°Ēāąā°°ā°¸āąā°¤āąā°¤ā°‚ ā°Ēāąā°˛āą‡ ā°…ā°ĩāąā°¤āąā°¨āąā°¨ā°Ļā°ŋⰈ ā°¯ā°žā°Ēāąâ€Œā°¨āą ā°‰ā°Ēā°¯āą‹ā°—ā°ŋā°‚ā°šā°Ąā°žā°¨ā°ŋā°•ā°ŋ ā°¸āąˆā°¨āą ā°‡ā°¨āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°‡ā°¨āąâ€Œā°Ēāąā°Ÿāą ā°Ąāą‡ā°Ÿā°ž Ⰿⰰā°ŋā°—āąā°—ā°ž ā°˛āą‡ā°Ļāąā°Ēā°˛āą ā°Ēā°°ā°ŋā°•ā°°ā°žā°˛ā°˛āą‹ ā°ĩā°ŋā°‚ā°Ÿāąā°¨āąā°¨ā°žā°°āąā°‡ā°Ēāąā°ĒⰟā°ŋā°•āą‡ ā°† ā°•ā°‚ā°Ÿāą†ā°‚ā°Ÿāą ā°Ēāąā°˛āą‡ ā°…ā°ĩāąā°¤āą‹ā°‚ā°Ļā°ŋā°Žāą€ā°Ąā°ŋā°¯ā°ž ā°¯ā°žā°Ēāą ā°¨āąā°‚ā°Ąā°ŋ ā°Ąā°ŋā°¸āąâ€Œā°•ā°¨āą†ā°•āąā°Ÿāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°•āąā°¯āą‚ā°˛āą‹ ā°‡ā°‚ā°•āą‡ā°ĩāą€ ā°˛āą‡ā°ĩāąā°ā°Ļāą‹ ā°¤ā°Ēāąā°Ēāą Ⱌⰰā°ŋā°—ā°ŋā°‚ā°Ļā°ŋ. ā°¤ā°°āąā°ĩā°žā°¤ ā°Ÿāąā°°āąˆ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ.ā°Ēāą‚ā°°āąā°¤ā°ŋ ā°šāą‡ā°¯ā°Ąā°‚ ā°¸ā°žā°§āąā°¯ā°Ēā°Ąā°˛āą‡ā°Ļāą. ā°Žā°ŗāąā°˛āą€ ā°Ÿāąā°°āąˆ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ.ā°Ēāąā°°ā°¸āąā°¤āąā°¤ā°‚ ā°Ļā°žā°¨āąā°¨ā°ŋ ā°šāą‡ā°¯ā°Ąā°‚ ā°¸ā°žā°§āąā°¯ā°Ēā°Ąā°Ļāąā°‡ā°¨āąâ€Œā°Ēāąā°Ÿāą/ā°…ā°ĩāąā°Ÿāąâ€Œā°Ēāąā°Ÿāą ā°Žā°°āąā°°ā°°āąā°¸ā°‚ā°Ŧā°‚ā°§ā°ŋā°¤ ā°•ā°‚ā°Ÿāą†ā°‚ā°Ÿāąâ€Œā°¨āą ā°‡ā°•āąā°•ā°Ą ā°ĒāąŠā°‚ā°Ļā°Ąā°‚ ā°¸ā°žā°§āąā°¯ā°Ēā°Ąā°Ļāąā°ˆ ā°¯ā°žā°Ēāą ā°Ļā°žā°¨āąā°¨ā°ŋ ā°šāą‡ā°¯ā°˛āą‡ā°Ļāąā°¸ā°‚ā°Ŧā°‚ā°§ā°ŋā°¤ ā°•ā°‚ā°Ÿāą†ā°‚ā°Ÿāą ā°Ŧāąā°˛ā°žā°•āą ā°šāą‡ā°¯ā°Ŧā°Ąā°ŋā°‚ā°Ļā°ŋā°¯ā°žā°•āąā°¸āą†ā°¸āąâ€Œ ā°¤ā°ŋā°°ā°¸āąā°•ā°°ā°ŋā°‚ā°šā°Ŧā°Ąā°ŋā°‚ā°Ļā°ŋPremium ā°¯ā°žā°•āąā°¸āą†ā°¸āą ā°…ā°ĩā°¸ā°°ā°‚ā°¸āą†ā°Ÿā°Ēāą ā°…ā°ĩⰏⰰⰂⰇⰂⰕ ā° ā°Ÿāąā°°ā°žā°•āąâ€Œā°˛ā°¨āą‚ ā°¸āąā°•ā°ŋā°Ēāą ā°šāą‡ā°¯ā°Ąā°‚ ā°¸ā°žā°§āąā°¯ā°Ēā°Ąā°Ļāąā°Ēā°žā°œāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°Ēāąā°˛āą‡ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°ĩāą†ā°¨āąā°•ā°•āą ā°Ļā°žā°Ÿā°ĩāą‡ā°¯ā°‚ā°Ąā°ŋā°Žāąā°‚ā°Ļāąā°•āą ā°Ģā°žā°°āąā°ĩā°°āąā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°¤ā°°āąā°ĩā°žā°¤ā°ŋ ā°ā°Ÿāą†ā°Žāąâ€Œā°•āą ā°Ļā°žā°Ÿā°ĩāą‡ā°¯ā°‚ā°Ąā°ŋā°Žāąā°¨āąā°ĒⰟā°ŋ ā°ā°Ÿāą†ā°Žāąâ€Œā°•āą ā°Ļā°žā°Ÿā°ĩāą‡ā°¯ā°‚ā°Ąā°ŋĐ˜ĐŗŅ€Đ°ĐĩŅ‚ ҁĐĩĐšŅ‡Đ°ŅĐ§Ņ‚ĐžĐąŅ‹ Đ¸ŅĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ŅŒ ŅŅ‚Đž ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩ, Đ˛ĐžĐšĐ´Đ¸Ņ‚Đĩ в аĐēĐēĐ°ŅƒĐŊŅ‚.ВвĐĩĐ´ĐĩĐŊŅ‹ ĐŊĐĩвĐĩŅ€ĐŊŅ‹Đĩ даĐŊĐŊŅ‹Đĩ.ĐĄĐģĐ¸ŅˆĐēĐžĐŧ ĐŧĐŊĐžĐŗĐž ŅƒŅŅ‚Ņ€ĐžĐšŅŅ‚Đ˛, ĐŊа ĐēĐžŅ‚ĐžŅ€Ņ‹Ņ… Đ˛ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐžĐ´Đ¸Ņ‚ŅŅ Đ°ŅƒĐ´Đ¸Đž.Đ­Ņ‚ĐžŅ‚ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ҃ĐļĐĩ Đ˛ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐžĐ´Đ¸Ņ‚ŅŅ.НĐĩŅ‚ ĐŋОдĐēĐģŅŽŅ‡ĐĩĐŊĐ¸Ņ Đē ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊĐ¸ŅŽ Đ´ĐģŅ Đŧ҃ĐģŅŒŅ‚Đ¸ĐŧĐĩдиа.В ĐžŅ‡ĐĩŅ€Đĩди Đ˛ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐ´ĐĩĐŊĐ¸Ņ ĐŊĐĩŅ‚ Đ´Ņ€ŅƒĐŗĐ¸Ņ… Ņ„Đ°ĐšĐģОв.ĐŸŅ€ĐžĐ¸ĐˇĐžŅˆĐģа ĐžŅˆĐ¸ĐąĐēа. ĐŸĐžĐ˛Ņ‚ĐžŅ€Đ¸Ņ‚Đĩ ĐŋĐžĐŋҋ҂Đē҃ ĐŋОСĐļĐĩ.НĐĩ ŅƒĐ´Đ°ĐģĐžŅŅŒ Đ˛Ņ‹ĐŋĐžĐģĐŊĐ¸Ņ‚ŅŒ Đ´ĐĩĐšŅŅ‚Đ˛Đ¸Đĩ. ĐŸĐžĐ˛Ņ‚ĐžŅ€Đ¸Ņ‚Đĩ ĐŋĐžĐŋҋ҂Đē҃.ĐĄĐĩĐšŅ‡Đ°Ņ ŅŅ‚Đž Đ´ĐĩĐšŅŅ‚Đ˛Đ¸Đĩ ĐŊĐĩĐ´ĐžŅŅ‚ŅƒĐŋĐŊĐž.ĐŸŅ€Đ¸ ввОдĐĩ иĐģи Đ˛Ņ‹Đ˛ĐžĐ´Đĩ даĐŊĐŊҋ҅ ĐŋŅ€ĐžĐ¸ĐˇĐžŅˆĐģа ĐžŅˆĐ¸ĐąĐēа.КоĐŊŅ‚ĐĩĐŊŅ‚ ĐŊĐĩĐ´ĐžŅŅ‚ŅƒĐŋĐĩĐŊ в Đ˛Đ°ŅˆĐĩĐŧ Ņ€ĐĩĐŗĐ¸ĐžĐŊĐĩ.ДĐĩĐšŅŅ‚Đ˛Đ¸Đĩ ĐŊĐĩĐ´ĐžŅŅ‚ŅƒĐŋĐŊĐž в ŅŅ‚ĐžĐŧ ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊии.КоĐŊŅ‚ĐĩĐŊŅ‚ СайĐģĐžĐēĐ¸Ņ€ĐžĐ˛Đ°ĐŊ.Đ”ĐžŅŅ‚ŅƒĐŋ СаĐŋŅ€Đĩ҉ĐĩĐŊ.ĐĸŅ€ĐĩĐąŅƒĐĩŅ‚ŅŅ ĐŋŅ€ĐĩĐŧĐ¸ŅƒĐŧ-аĐēĐēĐ°ŅƒĐŊŅ‚.ĐĸŅ€ĐĩĐąŅƒĐĩŅ‚ŅŅ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēа.ĐŸŅ€ĐžĐŋ҃ҁĐēĐ°Ņ‚ŅŒ ҂ҀĐĩĐēи йОĐģҌ҈Đĩ ĐŊĐĩĐģŅŒĐˇŅ.ĐŸŅ€Đ¸ĐžŅŅ‚Đ°ĐŊĐžĐ˛Đ¸Ņ‚ŅŒĐ’ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩŅŅ‚Đ¸ĐŸĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊазадПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ вĐŋĐĩŅ€ĐĩдК ҁĐģĐĩĐ´ŅƒŅŽŅ‰ĐĩĐŧ҃ Ņ„Đ°ĐšĐģŅƒĐš ĐŋŅ€ĐĩĐ´Ņ‹Đ´ŅƒŅ‰ĐĩĐŧ҃ Ņ„Đ°ĐšĐģ҃Nagpi-play ngayonMag-sign in para gamitin ang app na itoMaling data ng inputNakikinig sa masyadong maraming devicePine-play na ang content na iyonNadiskonekta sa media appWala nang naka-queueMay problema. Subukan sa ibang pagkakataon.Hindi natapos. Subukan ulit.Hindi iyon magagawa ngayonError sa input/outputHindi makukuha ang content na iyon ditoHindi iyon magagawa ng app na itoNaka-block ang content na iyonTinanggihan ang pag-accessKailangan ng premium na accessKailangan ng pag-set upHindi na makakalaktaw pa ng trackI-pauseI-playMag-seek pabalikMag-seek pasulongMag-seek sa susunod na itemMag-seek sa nakaraang itemįžæ­Ŗæ’­æ”žåŋ…é ˆį™ģå…Ĩ才čƒŊäŊŋį”¨é€™å€‹æ‡‰į”¨į¨‹åŧčŧ¸å…Ĩįš„čŗ‡æ–™ä¸æ­Ŗįĸē同時äŊŋᔍå¤Ēå¤ščŖįŊŽæ’­æ”žéŸŗč¨Šį›Žå‰æ­Ŗåœ¨æ’­æ”žčŠ˛å…§åŽšåĒ’éĢ”æ‡‰į”¨į¨‹åŧé€Ŗįˇšä¸­æ–ˇåž…æ’­æ¸…å–Žä¸­æ˛’æœ‰å…ļäģ–é …į›Žį™ŧį”ŸéŒ¯čǤīŧŒčĢ‹į¨åžŒå†čŠĻã€‚į„Ąæŗ•åŽŒæˆé€™é …æ“äŊœīŧŒčĢ‹å†čŠĻ一æŦĄã€‚į›Žå‰į„Ąæŗ•åŸˇčĄŒé€™é …æ“äŊœčŧ¸å…Ĩ/čŧ¸å‡ē錯čĒ¤æ‰€åœ¨åœ°å€į„Ąæŗ•å­˜å–čŠ˛å…§åŽšé€™å€‹æ‡‰į”¨į¨‹åŧä¸æ”¯æ´é€™é …操äŊœå…§åŽšåˇ˛é­å°éŽ–å­˜å–é­æ‹’åŋ…é ˆäģ˜č˛ģ才čƒŊ存取åŋ…é ˆåŽŒæˆč¨­åŽšį„Ąæŗ•å†į•ĨéŽæ›˛į›ŽæšĢ停播攞倒čŊ‰åŋĢčŊ‰čˇŗčŊ‰åˆ°ä¸‹ä¸€å€‹é …į›ŽčˇŗčŊ‰åˆ°ä¸Šä¸€å€‹é …į›ŽOra in riproduzioneAccedi per usare questa appDati ingresso non correttiAscolto attivo su troppi dispositiviContenuti già in riproduzioneDisconnessione da app multimedialeNient\'altro in codaSi è verificato un problema. Prova piÚ tardi.Impossibile completare. Riprova.Al momento non è possibile svolgere l\'operazioneErrore ingresso/uscitaQui non è possibile scaricare questi contenutiQuesta app non supporta l\'azione richiestaContenuti bloccatiAccesso negatoÈ necessario l\'accesso PremiumÈ richiesta la configurazioneImpossibile saltare altre tracceMetti in pausaRiproduciVai indietroVai avantiVai all\'elemento successivoVai all\'elemento precedenteS\'està reproduintInicia la sessiÃŗ per utilitzar aquesta aplicaciÃŗLes dades d\'entrada sÃŗn incorrectesS\'està escoltant contingut en massa dispositiusAquest contingut ja s\'està reproduintS\'ha desconnectat de l\'aplicaciÃŗ multimèdiaNo hi ha res mÊs a la cuaS\'ha produït un error. Prova-ho mÊs tard.No s\'ha pogut acabar. Torna-ho a provar.Ara mateix aquesta acciÃŗ no es pot dur a termeError d\'entrada o de sortidaEl contingut no està disponible en aquesta regiÃŗL\'aplicaciÃŗ no pot dur a terme aquesta acciÃŗEl contingut està bloquejatAccÊs denegatEs requereix accÊs prèmiumConfiguraciÃŗ necessàriaNo es poden saltar mÊs cançonsPosa en pausaReprodueixRetrocedeixAvançaVes a l\'element segÃŧentVes a l\'element anteriorÍ spilunSkrÃĄÃ°u Þig inn til að nota forritiðRÃļng inntaksgÃļgnHlustað í of mÃļrgum tÃĻkjumÞetta efni er Þegar í spilunAftengdist efnisspilunarforritiEkkert annað í rÃļðinniEitthvað fÃŗr Ãērskeiðis. Reyndu aftur síðar.Ekki tÃŗkst að ljÃēka Þessu. Reyndu aftur.Ekki er hÃĻgt að framkvÃĻma Þetta eins og erVilla í inntaki/ÃēttakiEfnið er ekki tiltÃĻkt hÊrForritið getur ekki framkvÃĻmt ÞettaÞetta efni er ÃĄ bannlistaAðgangi hafnaðKrefst Premium-aðgangsUppsetningar er krafistEkki hÃĻgt að sleppa fleiri lÃļgumGera hlÊSpilaSpÃŗla til bakaSpÃŗla ÃĄframSpÃŗla að nÃĻsta atriðiSpÃŗla að fyrra atriðiPřehrÃĄvÃĄ sePokud chcete aplikaci pouŞít, přihlaste seNesprÃĄvnÃĄ vstupní dataPoslech je aktivovÃĄn v příliÅĄ mnoha zařízeníchTento obsah se uÅž přehrÃĄvÃĄOdpojeno od mediÃĄlní aplikaceVe frontě není nic dalÅĄÃ­hoNěkde se stala chyba. Zkuste to později.Nelze dokončit. Zkuste to znovu.Tuto akci teď nelze provÊstChyba vstupu/vÃŊstupuTento obsah tu nelze načístTuto akci aplikace nedokÃĄÅže provÊstObsah je blokovÃĄnPřístup byl odepřenJe vyÅžadovÃĄn prÊmiovÃŊ přístupJe vyÅžadovÃĄno nastaveníDalÅĄÃ­ skladby nelze přeskočitPozastavitPřehrÃĄtPosunout zpětPosunout vpředPosunout na dalÅĄÃ­ poloÅžkuPosunout na předchozí poloÅžkuæ­Ŗåœ¨æ’­æ”žį™ģåŊ•后才čƒŊäŊŋį”¨æ­¤åē”į”¨čž“å…Ĩæ•°æŽæœ‰č¯¯åŒæ—ļäŊŋᔍå¤Ēå¤ščŽžå¤‡č†åŦ厞įģåœ¨æ’­æ”žčŋ™éĄšå†…åŽšåˇ˛ä¸ŽåĒ’äŊ“åē”į”¨æ–­åŧ€čŋžæŽĨé˜Ÿåˆ—ä¸­æ˛Ąæœ‰äģģäŊ•å…ļäģ–内厚å‡ēäē†į‚šé—Žéĸ˜ã€‚č¯ˇį¨åŽé‡č¯•ã€‚æ— æŗ•åŽŒæˆæ“äŊœã€‚č¯ˇé‡č¯•ã€‚į›Žå‰æ— æŗ•åŽŒæˆč¯Ĩ操äŊœčž“å…Ĩ/输å‡ēæœ‰č¯¯åœ¨æ­¤åœ°åŒēæ— æŗ•čŽˇå–čŋ™éĄšå†…厚此åē”į”¨æ— æŗ•æ‰§čĄŒč¯Ĩ操äŊœč¯Ĩå†…åŽšåˇ˛čĸĢåąč”ŊčŽŋ问čĸĢæ‹’įģéœ€čρäŊŋᔍäģ˜č´šč´ĻåˇčŽŋ问需čĻčŽžįŊŽæ— æŗ•å†čˇŗčŋ‡æ›´å¤šæ›˛į›Žæš‚停播攞åŋĢ退åŋĢčŋ›čˇŗčŊŦåˆ°ä¸‹ä¸€éĄščˇŗčŊŦåˆ°ä¸Šä¸€éĄšSedang diputarLogin untuk menggunakan aplikasi iniData input salahTerlalu banyak perangkat digunakan untuk mendengarkanSedang memutar konten tersebutTerputus dari aplikasi mediaTidak ada antrean lagiTerjadi error. Coba nanti.Tidak dapat diselesaikan. Coba lagi.Tidak dapat melakukannya saat iniInput/output errorTidak dapat memuat konten tersebut di siniAplikasi ini tidak dapat melakukannyaKonten tersebut diblokirAkses ditolakMemerlukan akses premiumMemerlukan penyiapanTidak dapat melewati lagu lagiJedaPutarMundurMajuCari item berikutnyaCari item sebelumnyaå†į”Ÿä¸­ã“ãŽã‚ĸプãƒĒをäŊŋį”¨ã™ã‚‹ãĢã¯ãƒ­ã‚°ã‚¤ãƒŗã—ãĻくださいå…Ĩ力デãƒŧã‚ŋãŒé–“é•ãŖãĻã„ãžã™å†į”Ÿã—ãĻã„ã‚‹ãƒ‡ãƒã‚¤ã‚šãŒå¤šã™ãŽãžã™å†į”Ÿä¸­ãŽã‚ŗãƒŗãƒ†ãƒŗãƒ„ã§ã™ãƒĄãƒ‡ã‚Ŗã‚ĸã‚ĸプãƒĒから切断されぞしたキãƒĨãƒŧが一杯でčŋŊ加できぞせんエナãƒŧがį™ēį”Ÿã—ãžã—ãŸã€‚ã—ã°ã‚‰ãã—ãĻからおčŠĻしください。厌äē†ã§ããžã›ã‚“。もう一åēĻおčŠĻã—ãã ã•ã„ã€‚įžåœ¨ã€ããŽæ“äŊœã¯åŽŸčĄŒã§ããžã›ã‚“å…Ĩå‡ē力エナãƒŧã§ã™ã“ãŽåœ°åŸŸã§ã¯åˆŠį”¨ã§ããĒã„ã‚ŗãƒŗãƒ†ãƒŗãƒ„ã§ã™ã“ãŽã‚ĸプãƒĒではã‚ĩポãƒŧトされãĻã„ãžã›ã‚“ã“ãŽã‚ŗãƒŗãƒ†ãƒŗãƒ„ã¯ãƒ–ãƒ­ãƒƒã‚¯ã•ã‚ŒãĻいぞすã‚ĸクã‚ģ゚が拒åĻされぞしたプãƒŦミã‚ĸム ã‚ĸã‚Ģã‚ĻãƒŗãƒˆãŒåŋ…čĻã§ã™ã‚ģットã‚ĸップがåŋ…čĻã§ã™ã“ã‚ŒäģĨ上トナックを゚キップできぞせん一時停æ­ĸå†į”Ÿåˇģきæˆģし旊送りæŦĄãŽã‚ĸイテムãĢį§ģ動前ぎã‚ĸイテムãĢį§ģ動ΑÎēÎŋĪÎŗÎĩĪ„ÎąÎš Ī„ĪŽĪÎąÎŖĪ…ÎŊδÎĩθÎĩÎ¯Ī„Îĩ ÎŗÎšÎą ÎŊÎą Ī‡ĪÎˇĪƒÎšÎŧÎŋĪ€ÎŋÎšÎŽĪƒÎĩĪ„Îĩ ÎąĪ…Ī„ÎŽ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽÎ›ÎąÎŊÎ¸ÎąĪƒÎŧέÎŊÎą δÎĩδÎŋÎŧέÎŊÎą ÎĩÎšĪƒĪŒÎ´ÎŋĪ…Î“Î¯ÎŊÎĩĪ„ÎąÎš ÎąÎēĪĪŒÎąĪƒÎˇ ΃Îĩ Ī€ÎŦĪÎą Ī€ÎŋÎģÎģÎ­Ī‚ ĪƒĪ…ĪƒÎēÎĩĪ…Î­Ī‚Î“Î¯ÎŊÎĩĪ„ÎąÎš ΎδΡ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽ ÎąĪ…Ī„ÎŋĪ Ī„ÎŋĪ… Ī€ÎĩĪÎšÎĩ·ÎŋÎŧέÎŊÎŋĪ…Î‘Ī€ÎŋĪƒĪ…ÎŊδέθΡÎēÎĩ ÎąĪ€ĪŒ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ ÎŧÎ­ĪƒĪ‰ÎŊΔÎĩÎŊ Ī…Ī€ÎŦ΁·ÎĩΚ ÎēÎŦĪ„Îš ÎŦÎģÎģÎŋ ĪƒĪ„ÎˇÎŊ Îŋ΅΁ÎŦÎ ÎąĪÎŋĪ…ĪƒÎšÎŦĪƒĪ„ÎˇÎēÎĩ ÎēÎŦĪ€ÎŋΚÎŋ Ī€ĪĪŒÎ˛ÎģΡÎŧÎą. ΔÎŋÎēΚÎŧÎŦĪƒĪ„Îĩ ÎąĪÎŗĪŒĪ„ÎĩĪÎą.ΔÎĩÎŊ ÎŽĪ„ÎąÎŊ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎŋÎģÎŋÎēÎģÎŽĪĪ‰ĪƒÎˇ. ΔÎŋÎēΚÎŧÎŦĪƒĪ„Îĩ ΞιÎŊÎŦ.ΔÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎĩÎēĪ„Î­ÎģÎĩĪƒÎˇ Ī„ÎŋĪ… ÎąÎšĪ„ÎŽÎŧÎąĪ„ÎŋĪ‚ ÎąĪ…Ī„ÎŽ Ī„Îˇ ĪƒĪ„ÎšÎŗÎŧÎŽÎŖĪ†ÎŦÎģÎŧÎą ÎĩÎšĪƒĪŒÎ´ÎŋĪ…/ÎĩÎžĪŒÎ´ÎŋĪ…Î”ÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎģÎŽĪˆÎˇ ÎąĪ…Ī„ÎŋĪ Ī„ÎŋĪ… Ī€ÎĩĪÎšÎĩ·ÎŋÎŧέÎŊÎŋĪ… ÎĩÎ´ĪŽÎ”ÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ ÎĩÎēĪ„Î­ÎģÎĩĪƒÎˇ Ī„ÎŋĪ… ÎąÎšĪ„ÎŽÎŧÎąĪ„ÎŋĪ‚ ÎąĪ€ĪŒ ÎąĪ…Ī„ÎŽ Ī„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽÎ‘Ī…Ī„ĪŒ Ī„Îŋ Ī€ÎĩĪÎšÎĩĪ‡ĪŒÎŧÎĩÎŊÎŋ ÎĩίÎŊιΚ ÎąĪ€ÎŋÎēÎģÎĩÎšĪƒÎŧέÎŊÎŋΔÎĩÎŊ ÎĩĪ€ÎšĪ„ĪÎ­Ī€ÎĩĪ„ÎąÎš Ρ Ī€ĪĪŒĪƒÎ˛ÎąĪƒÎˇÎ‘Ī€ÎąÎšĪ„ÎĩÎ¯Ī„ÎąÎš premium Ī€ĪĪŒĪƒÎ˛ÎąĪƒÎˇÎ‘Ī€ÎąÎšĪ„ÎĩÎ¯Ī„ÎąÎš ĪĪÎ¸ÎŧÎšĪƒÎˇÎ”ÎĩÎŊ ÎĩίÎŊιΚ Î´Ī…ÎŊÎąĪ„ÎŽ Ρ Ī€ÎąĪÎŦβÎģÎĩĪˆÎˇ Ī€ÎĩĪÎšĪƒĪƒĪŒĪ„Îĩ΁ΉÎŊ ÎēÎŋÎŧÎŧÎąĪ„ÎšĪŽÎŊÎ ÎąĪĪƒÎˇÎ‘ÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽÎ‘ÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰Î‘ÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą ÎĩÎŧĪ€ĪĪŒĪ‚Î‘ÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ ÎĩĪ€ĪŒÎŧÎĩÎŊÎŋ ĪƒĪ„ÎŋÎšĪ‡ÎĩίÎŋΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ ΀΁ÎŋĪ‚ ΀΁ÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋ ĪƒĪ„ÎŋÎšĪ‡ÎĩίÎŋTagad atskaņoPierakstieties, lai izmantotu ÅĄo lietotni.Nepareizi ievades datiKlausÄĢÅĄanās notiek pārāk daudz ierÄĢcēs.Å is saturs jau tiek atskaņots.Pārtraukts savienojums ar multivides lietotniRindā vairs nav nekā cita.Radās problēma. MēĪiniet vēlāk.Nevarēja pabeigt. MēĪiniet vēlreiz.PaÅĄlaik nevar veikt ÅĄo darbÄĢbu.Ievades/izvades kÄŧÅĢdaNevar ÅĄeit parādÄĢt ÅĄo saturu.Å o darbÄĢbu nevar veikt ÅĄajā lietotnē.Å is saturs ir bloķēts.PiekÄŧuve liegtaNepiecieÅĄama maksas piekÄŧuve.NepiecieÅĄama iestatÄĢÅĄanaVairs nevar izlaist nevienu ierakstu.ApturētAtskaņotPāriet atpakaÄŧPāriet uz priekÅĄuPāriet uz nākamo vienumuPāriet uz iepriekÅĄÄ“jo vienumuAfspilles nuLog ind for at bruge denne appDataene for input er ikke korrekteDu lytter pÃĨ for mange enhederIndholdet afspilles alleredeForbindelsen til medieappen er afbrudtDer er ikke mere i køenDer er noget galt. Prøv igen senere.Handlingen kunne ikke gennemføres. Prøv igen.Det er ikke muligt lige nuFejl i input/outputIndholdet er ikke tilgÃĻngeligt herDet kan denne app ikke gøreIndholdet er blokeretAdgangen blev nÃĻgtetDette krÃĻver en Premium-kontoKonfiguration er pÃĨkrÃĻvetDu kan ikke springe flere numre overSÃĻt pÃĨ pauseAfspilHop tilbageHop fremHop til nÃĻste elementHop til forrige elementā¤†ā¤¤ā¤ž ā¤ĒāĨā¤˛āĨ‡ ⤕⤰⤤ ā¤†ā¤šāĨ‡ā¤šāĨ‡ ā¤…â€āĨ…ā¤Ē ā¤ĩā¤žā¤Ē⤰⤪āĨā¤¯ā¤žā¤¸ā¤žā¤ āĨ€ ā¤¸ā¤žā¤‡ā¤¨ ⤇⤍ ā¤•ā¤°ā¤žā¤‡ā¤¨ā¤ĒāĨā¤Ÿ ā¤ĄāĨ‡ā¤Ÿā¤ž ⤚āĨā¤•āĨ€ā¤šā¤ž ā¤†ā¤šāĨ‡ā¤–āĨ‚ā¤Ē ā¤œā¤žā¤¸āĨâ€ā¤¤ ā¤Ąā¤ŋā¤ĩāĨā¤šā¤žā¤‡ā¤¸ā¤ĩ⤰ ⤐⤕⤞āĨ‡ ā¤œā¤žā¤¤ ā¤†ā¤šāĨ‡ā¤¤āĨ‹ ⤆ā¤ļ⤝ ⤆⤧āĨ€ā¤Ēā¤žā¤¸āĨ‚⤍ ā¤ĒāĨā¤˛āĨ‡ ⤕⤰⤤ ā¤†ā¤šāĨ‡ā¤ŽāĨ€ā¤Ąā¤ŋā¤¯ā¤ž ā¤…â€āĨ…ā¤Ēā¤ĩ⤰āĨ‚⤍ ā¤Ąā¤ŋ⤏āĨā¤•⤍āĨ‡ā¤•āĨā¤Ÿ ⤕āĨ‡ā¤˛āĨ‡ ā¤†ā¤šāĨ‡ā¤‡ā¤¤ā¤° ā¤•ā¤žā¤šāĨ€ā¤šāĨ€ ⤕āĨā¤¯āĨ‚ ⤕āĨ‡ā¤˛āĨ‡ā¤˛āĨ‡ ā¤¨ā¤žā¤šāĨ€ā¤•ā¤žā¤šāĨ€ā¤¤ā¤°āĨ€ ⤚āĨā¤•⤞āĨ‡. ⤍⤂⤤⤰ ā¤ĒāĨā¤°ā¤¯ā¤¤āĨā¤¨ ā¤•ā¤°ā¤ž.ā¤ĒāĨ‚⤰āĨā¤Ŗ ā¤•ā¤°ā¤¤ā¤ž ⤆⤞āĨ‡ ā¤¨ā¤žā¤šāĨ€. ā¤ĒāĨā¤¨āĨā¤šā¤ž ā¤ĒāĨā¤°ā¤¯ā¤¤āĨā¤¨ ā¤•ā¤°ā¤ž.⤤āĨ‡ ā¤†ā¤¤ā¤ž ⤕⤰āĨ‚ ā¤ļ⤕⤤ ā¤¨ā¤žā¤šāĨ€ā¤‡ā¤¨ā¤ĒāĨā¤Ÿ/ā¤†ā¤‰ā¤Ÿā¤ĒāĨā¤Ÿ ā¤ā¤°ā¤°ā¤¤āĨ‹ ⤆ā¤ļ⤝ ⤝āĨ‡ā¤ĨāĨ‡ ā¤Žā¤ŋ⤺ā¤ĩāĨ‚ ā¤ļ⤕⤤ ā¤¨ā¤žā¤šāĨ€ā¤šāĨ‡ āĨ˛ā¤Ē ⤤āĨ‡ ⤕⤰āĨ‚ ā¤ļ⤕⤤ ā¤¨ā¤žā¤šāĨ€ā¤¤āĨ‹ ⤆ā¤ļ⤝ ā¤ŦāĨā¤˛āĨ‰ā¤• ⤕āĨ‡ā¤˛āĨ‡ā¤˛ā¤ž ā¤†ā¤šāĨ‡ā¤…‍āĨ…⤕āĨā¤¸āĨ‡ā¤¸ ā¤¨ā¤žā¤•ā¤žā¤°ā¤˛ā¤žā¤ĒāĨā¤°āĨ€ā¤Žā¤ŋā¤¯ā¤Ž āĨ˛ā¤•āĨā¤¸āĨ‡ā¤¸ ⤆ā¤ĩā¤ļāĨā¤¯ā¤• ā¤†ā¤šāĨ‡ā¤¸āĨ‡ā¤Ÿā¤…ā¤Ē ⤆ā¤ĩā¤ļāĨā¤¯ā¤• ā¤†ā¤šāĨ‡ā¤†ā¤Ŗā¤–āĨ€ ā¤—ā¤žā¤ŖāĨ€ ā¤ĩ⤗⤺āĨ‚ ā¤ļ⤕⤤ ā¤¨ā¤žā¤šāĨ€ā¤Ĩā¤žā¤‚ā¤Ŧā¤ĩā¤žā¤ĒāĨā¤˛āĨ‡ ā¤•ā¤°ā¤žā¤Žā¤žā¤—āĨ‡ ā¤œā¤žā¤ĒāĨā¤ĸāĨ‡ ā¤œā¤žā¤ĒāĨā¤ĸāĨ€ā¤˛ ā¤†ā¤¯ā¤Ÿā¤Žā¤ĩ⤰ ā¤œā¤žā¤Žā¤žā¤—āĨ€ā¤˛ ā¤†ā¤¯ā¤Ÿā¤Ž ā¤ĩ⤰ ā¤œā¤žŌšĐ°ĐˇŅ–Ņ€ ОКĐŊаĐŋ Ņ‚ŌąŅ€Đ‘ŌąĐģ Ō›ĐžĐģдаĐŊйаĐŊŅ‹ ĐŋаКдаĐģаĐŊ҃ Ō¯ŅˆŅ–ĐŊ аĐēĐēĐ°ŅƒĐŊŅ‚Ō›Đ° ĐēŅ–Ņ€Ņ–ŌŖŅ–Đˇ.ĐšŅ–Ņ€Ņ–Ņ Đ´ĐĩŅ€ĐĩĐē Đ´ŌąŅ€Ņ‹Ņ ĐĩĐŧĐĩҁ.ĐĸŅ‹Đŧ ĐēĶŠĐŋ Ō›ŌąŅ€Ņ‹ĐģŌ“Ņ‹Đ´Đ° Ņ‚Ņ‹ŌŖĐ´Đ°ĐģŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€.Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ОКĐŊĐ°Ņ‚Ņ‹ĐģŅ‹Đŋ ĐļĐ°Ņ‚Ņ‹Ņ€.ĐœŅƒĐģŅŒŅ‚Đ¸ĐŧĐĩдиа Ō›ĐžĐģдаĐŊĐąĐ°ŅŅ‹ĐŊаĐŊ аĐļŅ‹Ņ€Đ°Ņ‚Ņ‹ĐģĐ´Ņ‹.КĐĩСĐĩĐēĐēĐĩ ĐąĐ°ŅŌ›Đ° ĐĩŅˆŅ‚ĐĩŌŖĐĩ Ō›ĐžĐšŅ‹ĐģĐŧĐ°Ō“Đ°ĐŊ.Đ‘Ņ–Ņ€Đ´ĐĩŌŖĐĩ Đ´ŌąŅ€Ņ‹Ņ ĐĩĐŧĐĩҁ. КĐĩĐšŅ–ĐŊŅ–Ņ€ĐĩĐē Ō›Đ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ņ–ŌŖŅ–Đˇ.ĐŅŌ›Ņ‚Đ°ĐģĐŧĐ°Đ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ņ–ŌŖŅ–Đˇ.ĐœŌąĐŊŅ‹ Đ´Ķ™Đģ Ō›Đ°ĐˇŅ–Ņ€ ĐžŅ€Ņ‹ĐŊĐ´Đ°Ņƒ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ.ĐšŅ–Ņ€Ņ–Ņ/ŅˆŅ‹Ō“Ņ‹Ņ Đ´ĐĩŅ€ĐĩĐē Ō›Đ°Ņ‚ĐĩҁҖ ĐžŅ€Ņ‹ĐŊ аĐģĐ´Ņ‹.Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊ҂҂Җ ĐžŅŅ‹ ĐļĐĩŅ€Đ´Đĩ аĐģ҃ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ.Đ‘ŌąĐģ Ō›ĐžĐģдаĐŊйа ĐŧŌąĐŊŅ‹ ĐžŅ€Ņ‹ĐŊдаК аĐģĐŧĐ°ĐšĐ´Ņ‹.Đ‘ŌąĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ĐąĐģĐžĐēŅ‚Đ°ĐģŌ“Đ°ĐŊ.Đ ŌąŌ›ŅĐ°Ņ‚ ĐļĐžŌ›.ĐŸŅ€ĐĩĐŧĐ¸ŅƒĐŧ Ņ€ŌąŌ›ŅĐ°Ņ‚ Ō›Đ°ĐļĐĩŅ‚.Đ Đĩ҂҂Đĩ҃ Ō›Đ°ĐļĐĩŅ‚.Đ‘Đ°ŅŌ›Đ° Đ°ŅƒĐ´Đ¸ĐžŅ‚Ņ€ĐĩĐēŅ‚ĐĩŅ€Đ´Ņ– ĶŠŅ‚ĐēŅ–ĐˇŅ–Đŋ ĐļŅ–ĐąĐĩŅ€Ņƒ ĐŧŌ¯ĐŧĐēŅ–ĐŊ ĐĩĐŧĐĩҁ.ĐšŅ–Đ´Ņ–Ņ€Ņ‚ŅƒĐžĐšĐŊĐ°Ņ‚ŅƒĐŅ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€ŅƒĐĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€ŅƒĐšĐĩĐģĐĩҁҖ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ĐēĐĩ ĶŠŅ‚ŅƒĐĐģĐ´Ņ‹ŌŖŌ“Ņ‹ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ĐēĐĩ ĶŠŅ‚ŅƒĐžĐšĐŊĐžĐŋ ĐļĐ°Ņ‚Đ°Ņ‚Đ‘ŅƒĐģ ĐēĐžĐģĐ´ĐžĐŊĐŧĐžĐŊ҃ ĐŋаКдаĐģаĐŊ҃҃ ԝ҇ԝĐŊ аĐēĐēĐ°ŅƒĐŊŅ‚ŅƒŌŖŅƒĐˇĐŗĐ° ĐēĐ¸Ņ€Đ¸ŌŖĐ¸ĐˇĐšĐ¸Ņ€ĐŗĐ¸ĐˇŌ¯Ō¯ ĐŧааĐģŅ‹ĐŧĐ°Ņ‚Ņ‹ Ņ‚ŅƒŅƒŅ€Đ° ŅĐŧĐĩŅĶ¨Ņ‚ĶŠ ĐēĶŠĐŋ Ņ‚Ō¯ĐˇĐŧĶŠĐē ŅƒĐŗŅƒĐģŅƒŅƒĐ´Đ°ĐĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ОКĐŊĐžŅ‚ŅƒĐģŅƒŅƒĐ´Đ°ĐœŅƒĐģŅŒŅ‚Đ¸ĐŧĐĩдиа ĐēĐžĐģĐ´ĐžĐŊĐŧĐžŅŅƒĐŊаĐŊ аĐļŅ‹Ņ€Đ°Ņ‚Ņ‹ĐģĐ´Ņ‹ĐšĐĩСĐĩĐēŅ‚Đĩ ŅŅ‡ ĐŊĐĩҀҁĐĩ ĐļĐžĐēĐ‘Đ¸Ņ€ ĐļĐĩŅ€Đ´ĐĩĐŊ ĐēĐ°Ņ‚Đ° ĐēĐĩŅ‚Ņ‚Đ¸. Đ‘Đ¸Ņ€ аСдаĐŊ ĐēиКиĐŊ ĐēĐ°ĐšŅ‚Đ°ĐģаĐŋ ĐēĶŠŅ€Ō¯ŌŖŌ¯Đˇ.ĐŅĐŗŅ‹ĐŊа ҇ҋĐēĐēаĐŊ ĐļĐžĐē. ĐšĐ°ĐšŅ€Đ° Đ°Ņ€Đ°ĐēĐĩŅ‚ ĐēŅ‹ĐģŅ‹ŌŖŅ‹Đˇ.АĐŊŅ‹ Đ°ĐˇŅ‹Ņ€ Đ°Ņ‚ĐēĐ°Ņ€ŅƒŅƒ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ ŅĐŧĐĩŅĐšĐ¸Ņ€ĐŗĐ¸ĐˇŌ¯Ō¯/Ņ‡Ņ‹ĐŗĐ°Ņ€ŅƒŅƒ ĐēĐ°Ņ‚Đ°ŅŅ‹ĐĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ŅĐ¸Đˇ ĐļĐ°ŅˆĐ°ĐŗĐ°ĐŊ аКĐŧаĐēŅ‚Đ° ĐļĐĩŅ‚ĐēиĐģиĐēŅĐ¸ĐˇĐ‘ŅƒĐģ ĐēĐžĐģĐ´ĐžĐŊĐŧĐž аĐŊŅ‹ Đ°Ņ‚ĐēĐ°Ņ€Đ° аĐģĐąĐ°ĐšŅ‚ĐĐģ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ ĐąĶŠĐŗĶŠŅ‚Ņ‚ĶŠĐģĐŗĶŠĐŊĐšĐ¸Ņ€Ō¯Ō¯ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ҇ԝĐģŌ¯ĐŗŌ¯ ҇ĐĩŅ‚ĐēĐĩ ĐēĐ°ĐŗŅ‹ĐģĐ´Ņ‹ĐŅ€Ņ‚Ņ‹Đē҇ҋĐģŅ‹ĐēŅ‚ŅƒŅƒ ĐēĐ¸Ņ€Ō¯Ō¯ ĐŧŌ¯ĐŧĐēŌ¯ĐŊ҇ԝĐģŌ¯ĐŗŌ¯ Ņ‚Đ°ĐģаĐŋ ĐēŅ‹ĐģŅ‹ĐŊĐ°Ņ‚ĐĸŅƒŅƒŅ€Đ°ĐģОО Ņ‚Đ°ĐģаĐŋ ĐēŅ‹ĐģŅ‹ĐŊĐ°Ņ‚Đ­Đŧи ҂ҀĐĩĐēŅ‚ĐĩŅ€Đ´Đ¸ ĶŠŅ‚ĐēĶŠŅ€Ō¯Đŋ ĐļийĐĩŅ€Ō¯Ō¯ĐŗĶŠ йОĐģĐąĐžĐšŅ‚ĐĸŅ‹ĐŊĐ´Ņ‹Ņ€ŅƒŅƒĐžĐšĐŊĐžŅ‚ŅƒŅƒĐŅ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ĐĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ĐšĐ¸ĐšĐ¸ĐŊĐēи ĐŊĐĩҀҁĐĩĐŗĐĩ ĶŠŅ‚Ō¯Ō¯ĐœŅƒŅ€ŅƒĐŊĐē҃ ĐŊĐĩҀҁĐĩĐŗĐĩ ĶŠŅ‚Ō¯Ō¯āĒšāĒžāǞāĒŽāĒžāĒ‚ āǚāĒžāǞāĢ€ āǰāĒšāĢ€ āĒ›ā̇ādž āĒāĒĒāǍāĢ‹ āljāĒĒāǝāĢ‹āĒ— āĒ•āǰāĒĩāĒž āĒŽāĒžāǟā̇ āǏāĒžāLJāǍ āLJāǍ āĒ•āǰāĢ‹āĒ–āĢ‹āǟāĢ‹ āLJāǍāĒĒā́āǟ āĒĄā̇āǟāĒžāǘāĒŖāĒž āĒŦāǧāĒž āĒĄāĒŋāĒĩāĒžāLJāǏ āĒĒāǰ āǏāĒžāĒ‚āĒ­āĒŗāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒāǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒĒāĒšā̇āǞāĒžāĒ‚āĒĨāĢ€ āǚāǞāĒžāĒĩāĢ€ āǰāĒšāĢāǝāĒžāĒ‚ āĒ›āĢ€āĒāĒŽāĢ€āĒĄāĒŋāǝāĒž āĒāĒĒāĒĨāĢ€ āĒĄāĒŋāǏāĢāĒ•āǍā̇āĒ•āĢāǟā̇āĒĄ āĒ›ā̇āĒŦāĢ€āǜā́āĒ‚ āĒ•āĒ‚āLj āĒ•āǤāĒžāǰāĒŽāĒžāĒ‚ āǍāĒĨāĢ€āĒ•āĒ‚āLjāĒ• āĒ–āĢ‹āǟā́āĒ‚ āĒĨāǝā́āĒ‚. āĒĨāĢ‹āĒĄāĒž āǏāĒŽāǝ āĒĒāĒ›āĢ€ āĒĒāĢāǰāǝāĒžāǏ āĒ•āǰāĢ‹.āǏāĒŽāĒžāĒĒāĢāǤ āĒ•āǰāĢ€ āĒļāĒ•āĢāǝāĒžāĒ‚ āǍāĒĨāĢ€. āĒĢāǰāĢ€ āĒĒāĢāǰāǝāĒžāǏ āĒ•āǰāĢ‹.āǤā̇ āĒ…āǤāĢāǝāĒžāǰā̇ āĒ•āǰāĢ€ āĒļāĒ•āǤāĒž āǍāĒĨāĢ€āLJāǍāĒĒā́āǟ/ādžāljāǟāĒĒā́āǟāĒŽāĒžāĒ‚ āĒ­āĢ‚āǞāǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒ…āĒšāĢ€āĒ‚ āĒŽā̇āĒŗāĒĩāĢ€ āĒļāĒ•āĒžāǤā́āĒ‚ āǍāĒĨāĢ€ādž āĒāĒĒ āǤā̇ āĒ•āǰāĢ€ āĒļāĒ•āǤāĢ€ āǍāĒĨāĢ€āǤā̇ āĒ•āǍāĢāǟā̇āǍāĢāǟ āĒŦāĢāǞā̉āĒ• āĒ•āǰāĢāǝā́āĒ‚ āĒ›ā̇āĒāĒ•āĢāǏā̇āǏ āǍāĒ•āĒžāǰāĒĩāĒžāĒŽāĒžāĒ‚ ādžāĒĩāĢāǝāĢ‹āĒĒāĢāǰāĢ€āĒŽāĒŋāǝāĒŽ āĒāĒ•āĢāǏā̇āǏ āǜāǰāĢ‚āǰāĢ€ āĒ›ā̇āǏā̇āǟāĒ…āĒĒ āǜāǰāĢ‚āǰāĢ€ āĒ›ā̇āĒ•āĢ‹āLj āĒĩāǧā́ āǟāĢāǰāĢ…āĒ• āĒ›āĢ‹āĒĄāĢ€ āĒļāĒ•āĒžāǤāĒž āǍāĒĨāĢ€āĒĨāĢ‹āĒ­āĒžāĒĩāĢ‹āǚāǞāĒžāĒĩāĢ‹āĒĒāĒžāĒ›āĒŗ āǞāLj āǜāĒžāĒ“ādžāĒ—āĒŗ āǞāLj āǜāĒžāĒ“ādžāĒ—āǞāĢ€ ādžāLJāǟāĒŽ āĒļāĢ‹āǧāĢ‹āĒĒāĒžāĒ›āǞāĢ€ ādžāLJāǟāĒŽ āĒļāĢ‹āǧāĢ‹ĐžĐ´ĐžĐž Ņ‚ĐžĐŗĐģ҃҃ĐģĐļ йаКĐŊаЭĐŊŅ аĐŋĐŋŅ‹Đŗ Đ°ŅˆĐ¸ĐŗĐģĐ°Ņ…Ņ‹ĐŊ Ņ‚ŅƒĐģĐ´ ĐŊŅĐ˛Ņ‚ŅŅ€ĐŊŅ Ō¯Ō¯ĐžŅ€ĐžĐģ҂ҋĐŊ ĶŠĐŗĶŠĐŗĐ´ĶŠĐģ ĐąŅƒŅ€ŅƒŅƒ йаКĐŊаĐĨŅŅ‚ ĐžĐģĐžĐŊ Ņ‚ĶŠŅ…ĶŠĶŠŅ€ĶŠĐŧĐļ Đ´ŅŅŅ€ ŅĐžĐŊŅĐžĐļ йаКĐŊаЭĐŊŅ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚Ņ‹Đŗ аĐģҌ Ņ…ŅĐ´Đ¸ĐšĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐļ йаКĐŊаМĐĩдиа аĐŋĐŋĐ°Đ°Ņ ŅĐ°ĐģŅĐ°ĐŊĐ”Đ°Ņ€Đ°Đ°ĐģаĐģĐ´ ĶŠĶŠŅ€ ŅŽŅƒ ҇ аĐģĐŗĐ°Đ¯ĐŧĐ°Ņ€ ĐŊŅĐŗ аĐģдаа ĐŗĐ°Ņ€Đģаа. Đ”Đ°Ņ€Đ°Đ° ĐžŅ€ĐžĐģĐ´ĐžĐŊĐž ҃҃.Đ”ŅƒŅƒŅĐŗĐ°Đļ Ņ‡Đ°Đ´ŅĐ°ĐŊĐŗŌ¯Đš. Đ”Đ°Ņ…Đ¸ĐŊ ĐžŅ€ĐžĐģĐ´ĐžĐŊĐž ҃҃.Đ¯Đŗ ОдОО Ņ‚ŅƒŅ…Đ°ĐšĐŊ Ņ…Ō¯ŅŅĐģŅ‚Đ¸ĐšĐŗ ĐŗŌ¯ĐšŅ†ŅŅ‚ĐŗŅŅ… йОĐģĐžĐŧĐļĐŗŌ¯ĐšĐžŅ€ĐžĐģŅ‚/ĐŗĐ°Ņ€Đ°Đģ҂ҋĐŊ аĐģдааЭĐŊŅ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚Ņ‹Đŗ ŅĐŊĐ´ Đ°Đ˛Đ°Ņ… йОĐģĐžĐŧĐļĐŗŌ¯ĐšĐ­ĐŊŅ аĐŋĐŋ Ņ‚ŅƒŅ…Đ°ĐšĐŊ Ņ…Ō¯ŅŅĐģŅ‚Đ¸ĐšĐŗ ĐŗŌ¯ĐšŅ†ŅŅ‚ĐŗŅŅ… йОĐģĐžĐŧĐļĐŗŌ¯ĐšĐ­ĐŊŅ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚Ņ‹Đŗ ĐąĐģĐžĐēĐģĐžŅĐžĐŊ йаКĐŊаĐĨаĐŊдаĐģŅ‚Ņ‹Đŗ ĐˇĶŠĐ˛ŅˆĶŠĶŠŅ€ĶŠĶŠĐŗŌ¯ĐšPremium Ņ…Đ°ĐŊдаĐģŅ‚ ŅˆĐ°Đ°Ņ€Đ´ĐģĐ°ĐŗĐ°Ņ‚Đ°ĐšĐĸĐžŅ…Đ¸Ņ€ŅƒŅƒĐģĐ°Ņ… ŅˆĐ°Đ°Ņ€Đ´ĐģĐ°ĐŗĐ°Ņ‚Đ°ĐšĶ¨ĶŠŅ€ ŅĐŧĐ°Ņ€ ҇ ĐąĐ¸Ņ‡ĐģŅĐŗĐ¸ĐšĐŗ аĐģĐŗĐ°ŅĐ°Ņ… йОĐģĐžĐŧĐļĐŗŌ¯ĐšĐĸԝҀ ĐˇĐžĐŗŅĐžĐžŅ…ĐĸĐžĐŗĐģ҃҃ĐģĐ°Ņ…Đ‘ŅƒŅ†Đ°Đ°ĐŊ ĐŗŌ¯ĐšĐģĐŗŅŅ…ĐŖŅ€Đ°ĐŗŅˆĐģ҃҃ĐģĐ°Ņ…Đ”Đ°Ņ€Đ°Đ°ĐŗĐ¸ĐšĐŊ ĐˇŌ¯ĐšĐģ Ņ€Ō¯Ō¯ ĐŗŌ¯ĐšĐģĐŗŅŅ…Ķ¨ĐŧĐŊĶŠŅ… ĐˇŌ¯ĐšĐģ Ņ€Ō¯Ō¯ ĐŗŌ¯ĐšĐģĐŗŅŅ…Now playingSign in to use this appIncorrect input dataListening on too many devicesAlready playing that contentDisconnected from media appNothing else is queued upSomething\'s wrong. Try later.Couldn\'t finish. Try again.Can\'t do that at the momentInput/output errorCan\'t get that content hereThis app can\'t do thatThat content is blockedAccess deniedPremium access requiredSetup requiredCan\'t skip any more tracksPausePlayRewindFast forwardForward to next itemRewind to previous itemSedang dimainkanLog masuk untuk menggunakan apl iniData input tidak betulMendengar pada terlalu banyak perantiSudah pun memainkan kandungan ituTerputus sambungan daripada apl mediaTiada lagu lain dalam baris gilirAda yang tidak kena. Cuba sebentar lagi.Tidak dapat diselesaikan. Cuba lagi.Tidak dapat berbuat demikian sekarangRalat input/outputTidak boleh mendapatkan kandungan itu di siniApl ini tidak dapat berbuat demikianKandungan itu disekatAkses ditolakAkses premium diperlukanPersediaan diperlukanTidak boleh melangkau apa-apa lagu lagiJedaMainMandirMundarCari sehingga item seterusnyaCari sehingga item sebelumnyaæ­Ŗåœ¨æ’­æ”žį™ģå…Ĩ叺æˆļ才čƒŊäŊŋį”¨æ­¤æ‡‰į”¨į¨‹åŧčŧ¸å…Ĩčŗ‡æ–™ä¸æ­Ŗįĸē同時äŊŋᔍå¤Ēå¤ščŖįŊŽæ”ļčŊ內厚įŗģįĩąåˇ˛é–‹å§‹æ’­æ”žčŠ˛å…§åŽšåˇ˛čˆ‡åĒ’éĢ”æ‡‰į”¨į¨‹åŧä¸­æ–ˇé€Ŗįˇšåēåˆ—ä¸Šæ˛’æœ‰å…ļäģ–é …į›Žį™ŧį”ŸéŒ¯čǤīŧŒčĢ‹į¨åžŒå†čŠĻã€‚į„Ąæŗ•åŽŒæˆæ­¤æ“äŊœīŧŒčĢ‹å†čŠĻ一æŦĄã€‚į›Žå‰į„Ąæŗ•åŸˇčĄŒæ­¤æ“äŊœčŧ¸å…Ĩ/čŧ¸å‡ē錯čĒ¤æ‰€åœ¨åœ°å€ä¸æäž›čŠ˛å…§åŽšæ‡‰į”¨į¨‹åŧä¸æ”¯æ´æ­¤æ“äŊœå…§åŽšåˇ˛čĸĢ封鎖拒įĩ•存取åŋ…é ˆäģ˜č˛ģ才čƒŊ存取需čĻåŸˇčĄŒč¨­åŽšį„Ąæŗ•å†į•ĨéŽæ›˛į›ŽæšĢ停播攞垌į§ģåŋĢčŊ‰čˇŗåŽģ䏋䏀項莺åŽģ上一項កំពážģងចážļក់ចážŧលគណនី ដើម្បីប្រើកម្មវិធីនេះទិន្នន័យបញ្ចážŧលមិនត្រឹមត្រážŧវកំពážģងស្ដážļប់​នៅលើ​ឧបករណ៍​ច្រើនពេកកំពážģងចážļក់​ខ្លឹមសážļរនោះ​ស្រážļប់ហើយបážļនផ្ដážļច់ពីកម្មវិធី​មេឌៀមិនមážļនážĸ្វី​ផ្សេងទៀត​នៅក្នážģង​ជážŊរទេមážļនážĸ្វីមážŊយ​ខážģស​ប្រក្រតី។ សážŧមព្យážļយážļម​នៅពេលក្រោយ។មិនážĸážļច​បញ្ចប់បážļនទេ។ សážŧមព្យážļយážļមម្ដងទៀត។មិនážĸážļច​ធ្វើតážļមសំណើនោះ​ážĨឡážŧវនេះ​បážļនទេបញ្ហážļធážļតážģចážŧល/ធážļតážģចេញមិនážĸážļច​យក​ខ្លឹមសážļរនោះ​នៅទីនេះ​បážļនទេកម្មវិធីនេះ​មិនážĸážļចធ្វើ​តážļមសំណើនោះ​បážļនទេខ្លឹមសážļរនោះ​ត្រážŧវបážļនទប់ស្កážļត់បážļន​បដិសេធ​កážļរចážŧល​ប្រើប្រážļស់តម្រážŧវឱ្យមážļន​កážļរចážŧលប្រើ​លំដážļប់ខ្ពស់តម្រážŧវឱ្យ​រៀបចំមិនážĸážļច​រំលងចម្រៀង​បážļនទៀតទេផ្ážĸážļកចážļក់ថយក្រោយរំលង​​ទៅ​មážģខទៅកážļន់ធážļតážģបន្ទážļប់ទៅកážļន់ធážļតážģមážģនԱÕĩÕĒÕ´ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´ էՄուÕŋք ÕŖÕ¸Ö€ÕŽÕĨք՝ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕļ Ö…ÕŖÕŋÕĄÕŖÕ¸Ö€ÕŽÕĨÕŦու Õ°ÕĄÕ´ÕĄÖ€ÕÕ­ÕĄÕŦ մուÕŋÖ„ÕĄÕĩÕĢÕļ ÕŋÕžÕĩÕĄÕŦÕļÕĨÖ€Õ‰ÕĄÖƒÕĢց ÕˇÕĄÕŋ ÕŊÕĄÖ€Ö„ÕĨրում Õ§ ÕĸÕ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´Ô˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÖ€Õ¤ÕĨÕļ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕžÕ¸Ö‚Õ´ Õ§ÔąÕļÕģÕĄÕŋÕžÕĄÕŽ Õ§ մուÕŦÕŋÕĢÕ´ÕĨÕ¤ÕĢÕĄ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕĢցՀÕĨÖ€ÕŠÕĄÖÕĄÕļÕ¯Õ¨ Õ¤ÕĄÕŋÕĄÖ€Õ¯ Õ§ÕÕ­ÕĄÕŦ ÕĄÕŧÕĄÕģÕĄÖÕĄÕžÖ‰ Õ“Õ¸Ö€ÕąÕĨք ÕĄÕžÕĨÕŦÕĢ Õ¸Ö‚ÕˇÖ‰Õ‰Õ°ÕĄÕģÕ¸Õ˛ÕžÕĨց ÕĄÕžÕĄÖ€ÕŋÕĨÕŦ։ ՆորÕĢց ÖƒÕ¸Ö€ÕąÕĨք։ԱÕĩÕŊ ÕŖÕ¸Ö€ÕŽÕ¸Õ˛Õ¸Ö‚ÕŠÕĩուÕļÕ¨ ÕļÕĨÖ€Õ¯ÕĄÕĩումÕŊ Õ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ ÕšÕ§Õ†ÕĨÖ€ÕĄÕŽÕ´ÕĄÕļ/ÕĄÖ€ÕŋÕĄÕŽÕ´ÕĄÕļ ÕŊÕ­ÕĄÕŦÔ˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÕļÕ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ Õ§ ÕĄÕĩÕŊ ÕŋÕĄÖ€ÕĄÕŽÕĄÕˇÖ€ÕģÕĄÕļÕ¸Ö‚Õ´ÔŗÕ¸Ö€ÕŽÕ¸Õ˛Õ¸Ö‚ÕŠÕĩուÕļÕ¨ Õ°ÕĄÕŊÕĄÕļÕĨÕŦÕĢ ÕšÕ§ ÕĄÕĩÕŊ Õ°ÕĄÕžÕĨÕŦÕžÕĄÕŽÕ¸Ö‚Õ´Ô˛Õ¸ÕžÕĄÕļÕ¤ÕĄÕ¯Õ¸Ö‚ÕŠÕĩուÕļÕļ ÕĄÖ€ÕŖÕĨÕŦÕĄÖƒÕĄÕ¯ÕžÕĄÕŽ էՄուÕŋքը Õ´ÕĨրÕĒÕžÕĄÕŽ Õ§ÔąÕļÕ°Ö€ÕĄÕĒÕĨÕˇÕŋ Õ§ ÕēրÕĨÕ´ÕĢում Õ°ÕĄÕˇÕĢÕžÕŠÕĄÕ°ÕĄÕļÕģÕžÕ¸Ö‚Õ´ Õ§ Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÔąÕĩÕŦևÕŊ Õ°ÕļÕĄÖ€ÕĄÕžÕ¸Ö€ ÕšÕ§ Õ¯ÕĄÕŋÕĄÖ€Õ¸Ö‚Õ´ÕļÕĨր ÕĸÕĄÖ ÕŠÕ¸Õ˛ÕļÕĨÕŦÔ´ÕĄÕ¤ÕĄÖ€ÕĨցÕļÕĨÕŦÕ†ÕžÕĄÕŖÕĄÖ€Õ¯ÕĨÕŦՀÕĨÕŋ ÕŖÕļÕĄÕŦÔąÕŧÕĄÕģ ÕŖÕļÕĄÕŦÔąÕļցÕļÕĨÕŦ Õ°ÕĄÕģորդ ÕŋÕĄÖ€Ö€ÕĢÕļÔąÕļցÕļÕĨÕŦ ÕļÕĄÕ­Õ¸Ö€Õ¤ ÕŋÕĄÖ€Ö€ÕĢÕļአሁን áŠĨየተáŒĢወተ á‹Ģለይህን መተግበáˆĒá‹Ģ ለመጠቀም በመለá‹Ģ ይግቡá‰ĩክክል á‹Ģልሆነ ውሂá‰Ĩከልክ በላይ á‰Ĩዙ በሆኑ áˆ˜áˆŖáˆĒá‹Ģዎá‰Ŋ ላይ á‰ áˆ›á‹ŗáˆ˜áŒĨ ላይá‹Ģን ይዘá‰ĩ አáˆĩቀá‹ĩሞ በማáŒĢወá‰ĩ ላይከሚዲá‹Ģ መተግበáˆĒá‹Ģ ግንኙነá‰ĩ ተቋርጧልሌላ ምንም ነገር ሰልፍ አልá‹Ģዘምየሆነ áˆĩህተá‰ĩ ተከáˆĩቷልáĸ በኋላ ይሞክሩáĸመጨረáˆĩ አልተá‰ģለምáĸ áŠĨንደገና ይሞክሩáĸአሁን á‹Ģን ማá‹ĩረግ አይá‰ģልምግá‰Ĩዓá‰ĩ/ውጤá‰ĩ áˆĩህተá‰ĩይዘቱን áŠĨዚህ ማግኘá‰ĩ አልተá‰ģለምይህ መተግበáˆĒá‹Ģ á‹Ģንን ማá‹ĩረግ አይá‰Ŋልምይዘቱ á‰ŗáŒá‹ˇáˆáˆ˜á‹ŗáˆ¨áˆģ ተክልክሏልየPremium áˆ˜á‹ŗáˆ¨áˆģ á‹Ģáˆĩፈልጋልማዋቀር á‹ĢáˆĩፈልጋልተጨማáˆĒ á‰ĩáˆĢኮá‰Ŋን መዝለል አይá‰ģáˆáˆá‰Ŗáˆˆá‰ á‰ĩ አቁምአáŒĢውá‰ĩወደኋላ ፈልግወደፊá‰ĩ ፈልግወደ á‰€áŒŖá‹Š ንáŒĨል ፈልግወደ á‰€á‹ŗáˆšá‹ ንáŒĨል áˆáˆáŒĐ—Đ°Ņ€Đ°Đˇ Ņ–ĐŗŅ€Đ°ĐĩКаб Đ˛Ņ‹ĐēĐ°Ņ€Ņ‹ŅŅ‚ĐžŅžĐ˛Đ°Ņ†ŅŒ ĐŗŅŅ‚Ņƒ ĐŋŅ€Đ°ĐŗŅ€Đ°Đŧ҃, ŅƒĐ˛Đ°ĐšĐ´ĐˇŅ–Ņ†ĐĩĐŖĐ˛ĐĩдСĐĩĐŊŅ‹ ĐŊŅĐŋŅ€Đ°Đ˛Ņ–ĐģҌĐŊŅ‹Ņ даĐŊŅ‹ŅĐŸŅ€Đ°ŅĐģŅƒŅ…ĐžŅžĐ˛Đ°ĐŊĐŊĐĩ Đ°Đ´ĐąŅ‹Đ˛Đ°ĐĩŅ†Ņ†Đ° ĐŊа СаĐŊĐ°Đ´Ņ‚Đ° Đ˛ŅĐģŅ–ĐēаК ĐēĐžĐģҌĐēĐ°ŅŅ†Ņ– ĐŋҀҋĐģĐ°Đ´Đ“ŅŅ‚Đ° СĐŧĐĩŅŅ†Ņ–Đ˛Đ° ŅžĐļĐž ĐŋŅ€Đ°ĐšĐŗŅ€Đ°ĐĩŅ†Ņ†Đ°Đ’Ņ‹ адĐēĐģŅŽŅ‡Ņ‹ĐģŅ–ŅŅ ад Đŧ҃ĐģŅŒŅ‚Ņ‹ĐŧĐĩĐ´Ņ‹ĐšĐŊаК ĐŋŅ€Đ°ĐŗŅ€Đ°ĐŧŅ‹ĐŖ Ņ‡Đ°Ņ€ĐˇĐĩ ĐŋŅƒŅŅ‚Đ°ĐŖĐˇĐŊŅ–ĐēĐģа ĐŋаĐŧŅ‹ĐģĐēа. ĐŸĐ°ŅžŅ‚Đ°Ņ€Ņ‹Ņ†Đĩ ҁĐŋŅ€ĐžĐąŅƒ ĐŋаСĐŊĐĩĐš.НĐĩ ŅžĐ´Đ°ĐģĐžŅŅ ĐˇĐ°Đ˛ŅŅ€ŅˆŅ‹Ņ†ŅŒ дСĐĩŅĐŊĐŊĐĩ. ĐŸĐ°ŅžŅ‚Đ°Ņ€Ņ‹Ņ†Đĩ ҁĐŋŅ€ĐžĐąŅƒ.НĐĩ ŅžĐ´Đ°ĐĩŅ†Ņ†Đ° Đ˛Ņ‹ĐēаĐŊĐ°Ņ†ŅŒ ĐŗŅŅ‚Ņ‹ СаĐŋŅ‹Ņ‚ĐŸĐ°ĐŧŅ‹ĐģĐēа ŅžĐ˛ĐžĐ´Ņƒ айО Đ˛Ņ‹Đ˛Đ°Đ´ŅƒĐĐĩ ŅžĐ´Đ°ĐģĐžŅŅ ĐˇĐ°ĐŗŅ€ŅƒĐˇŅ–Ņ†ŅŒ СĐŧĐĩŅŅ†Ņ–Đ˛Đ° Ņž ĐŗŅŅ‚Ņ‹Đŧ Ņ€ŅĐŗŅ–Ņ‘ĐŊĐĩДзĐĩŅĐŊĐŊĐĩ ĐŊĐĩĐ´Đ°ŅŅ‚ŅƒĐŋĐŊаĐĩ Ņž ĐŗŅŅ‚Đ°Đš ĐŋŅ€Đ°ĐŗŅ€Đ°ĐŧĐĩĐ“ŅŅ‚Đ° СĐŧĐĩŅŅ†Ņ–Đ˛Đ° СайĐģаĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊĐ°ĐŖ Đ´ĐžŅŅ‚ŅƒĐŋĐĩ адĐŧĐžŅžĐģĐĩĐŊĐ°Đ”Đ°ŅŅ‚ŅƒĐŋĐŊа Đ´ĐģŅ ĐŋĐģĐ°Ņ‚ĐŊҋ҅ ҃ĐģŅ–ĐēĐžĐ˛Ņ‹Ņ… СаĐŋŅ–ŅĐ°ŅžĐŸĐ°Ņ‚Ņ€Đ°ĐąŅƒĐĩŅ†Ņ†Đ° ĐŊаĐģадĐļваĐŊĐŊĐĩĐŸŅ€Đ°Đŋ҃ҁĐēĐ°Ņ†ŅŒ Ņ‚Ņ€ŅĐēŅ– йОĐģҌ҈ ĐŊĐĩĐģŅŒĐŗĐ°ĐŸŅ€Ņ‹ĐŋŅ‹ĐŊŅ–Ņ†ŅŒĐŸŅ€Đ°ĐšĐŗŅ€Đ°Ņ†ŅŒĐŸĐĩŅ€Đ°ĐšŅŅ†Ņ– ĐŊазадПĐĩŅ€Đ°ĐšŅŅ†Ņ– ŅžĐŋĐĩŅ€Đ°Đ´ĐŸĐĩŅ€Đ°ĐšŅŅ†Ņ– да ĐŊĐ°ŅŅ‚ŅƒĐŋĐŊĐ°ĐŗĐ° ŅĐģĐĩĐŧĐĩĐŊŅ‚Đ°ĐŸĐĩŅ€Đ°ĐšŅŅ†Ņ– да ĐŋаĐŋŅŅ€ŅĐ´ĐŊŅĐŗĐ° ŅĐģĐĩĐŧĐĩĐŊŅ‚Đ°#ff424242#ffffffff#b3ffffff@drawable/media3_icon_circular_play127Now playingSign in to use this appIncorrect input dataListening on too many devicesAlready playing that contentDisconnected from media appNothing else is queued upSomething’s wrong. Try later.Couldn’t finish. Try again.Can’t do that right nowInput/output errorCan’t get that content hereThis app can’t do thatThat content is blockedAccess deniedPremium access requiredSetup requiredCan’t skip any more tracksPausePlaySeek backSeek forwardSeek to next itemSeek to previous item ++ 0,25x ++ 0,5x ++ 0,75x ++ Normală ++ 1,25x ++ 1,5x ++ 2x ++ ++ Derulează rapid ÃŽnainte cu %d secundă ++ Derulează rapid ÃŽnainte cu %d secunde ++ Derulează rapid ÃŽnainte cu %d de secunde ++ ++ Derulează ÃŽnapoi cu %d secundă ++ Derulează ÃŽnapoi cu %d secunde ++ Derulează ÃŽnapoi cu %d de secunde ++ Activează subtitrărileDezactivează subtitrărileDerulează rapid ÃŽnainteAccesează ÃŽn ecran completIeși din ecranul completAscunde comenzile playeruluiÎnainteAscunde setările suplimentareAfișează setările suplimentareÎntrerupeRedăVitezăÎnapoiMod curent: se repetă tot. Comută modul repetare.Mod actual: nu se repetă. Comută modul repetare.Mod actual: se repetă una. Comută modul repetare.Derulează ÃŽnapoiProgresul redăriiSetăriAfișează comenzile playeruluiActivează modul sortare aleatorieDezactivează modul sortare aleatorieOpreșteMod RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativSubtitrăriComentariiSuplimentarAutomatFărăAudioStereoSunet surroundSunet surround 5.1Sunet surround 7.1NecunoscutNecunoscută (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ā°¸ā°žā°§ā°žā°°ā°Ŗā°‚ ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d ā°¸āą†ā°•ā°‚ā°Ąāą ā°ĩāą‡ā°—ā°‚ā°—ā°ž ā°Ģā°žā°°āąā°ĩā°°āąā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ ++ %d ā°¸āą†ā°•ā°¨āąā°˛āą ā°ĩāą‡ā°—ā°‚ā°—ā°ž ā°Ģā°žā°°āąā°ĩā°°āąā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ ++ ++ %d ā°¸āą†ā°•ā°‚ā°Ąāą ā°°ā°ŋā°ĩāąˆā°‚ā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ ++ %d ā°¸āą†ā°•ā°¨āąā°˛āą ā°°ā°ŋā°ĩāąˆā°‚ā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ ++ ā°‰ā°Ē ā°ļāą€ā°°āąā°ˇā°ŋā°•ā°˛ā°¨āą ā°Žā°¨āą‡ā°Ŧāąā°˛āą ā°šāą‡ā°¯ā°ŋā°‰ā°Ē ā°ļāą€ā°°āąā°ˇā°ŋā°•ā°˛ā°¨āą ā°Ąā°ŋā°œāą‡ā°Ŧāąā°˛āą ā°šāą‡ā°¯ā°ŋā°ĩāą‡ā°—ā°‚ā°—ā°ž ā°Ģā°žā°°āąā°ĩā°°āąā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°Ģāąā°˛āą ā°¸āąā°•āąā°°āą€ā°¨āąâ€Œā°˛āą‹ā°•ā°ŋ ā°Ēāąā°°ā°ĩāą‡ā°ļā°ŋā°‚ā°šāąā°Ģāąā°˛āą ā°¸āąā°•āąā°°āą€ā°¨āą ā°¨āąā°‚ā°Ąā°ŋ ā°¨ā°ŋā°ˇāąā°•āąā°°ā°Žā°ŋā°‚ā°šā°‚ā°Ąā°ŋā°Ēāąā°˛āą‡ā°¯ā°°āą ā°¨ā°ŋā°¯ā°‚ā°¤āąā°°ā°Ŗā°˛ā°¨āą ā°Ļā°žā°šā°ŋā°Ēāą†ā°Ÿāąā°Ÿāąā°¤ā°°āąā°ĩā°žā°¤ā°…ā°Ļā°¨ā°Ēāą ā°¸āą†ā°Ÿāąā°Ÿā°ŋā°‚ā°—āąâ€Œā°˛ā°¨āą ā°Ļā°žā°šāąā°…ā°Ļā°¨ā°Ēāą ā°¸āą†ā°Ÿāąā°Ÿā°ŋā°‚ā°—āąâ€Œā°˛ā°¨āą ā°šāą‚ā°Ēāąā°Ēā°žā°œāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°Ēāąā°˛āą‡ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°ĩāą‡ā°—ā°‚ā°Žāąā°¨āąā°ĒⰟā°ŋā°Ēāąā°°ā°¸āąā°¤āąā°¤ ā°Žāą‹ā°Ąāą: ā°…ā°¨āąā°¨ā°ŋā°‚ā°Ÿā°ŋā°¨ā°ŋ ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ. ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°Žāą‹ā°Ąāąâ€Œā°¨āą ā°Ÿāą‹ā°—āąā°˛āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ.ā°Ēāąā°°ā°¸āąā°¤āąā°¤ ā°Žāą‹ā°Ąāą: ā°ā°Ļāą€ ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°šāą‡ā°¯ā°ĩā°Ļāąā°Ļāą. ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°Žāą‹ā°Ąāąâ€Œā°¨āą ā°Ÿāą‹ā°—āąā°˛āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ.ā°Ēāąā°°ā°¸āąā°¤āąā°¤ ā°Žāą‹ā°Ąāą: ā°’ā°•ā°Ļā°žā°¨ā°ŋā°¨ā°ŋ ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ. ā°°ā°ŋā°Ēāą€ā°Ÿāąâ€Œ ā°Žāą‹ā°Ąāąâ€Œā°¨āą ā°Ÿāą‹ā°—āąā°˛āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋ.ā°°ā°ŋā°ĩāąˆā°‚ā°Ąāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°Ēāąā°˛āą‡ā°Ŧāąā°¯ā°žā°•āą ā°Ēāąā°°āą‹ā°—āąā°°āą†ā°¸āąā°¸āą†ā°Ÿāąā°Ÿā°ŋā°‚ā°—āąâ€Œā°˛āąā°Ēāąā°˛āą‡ā°¯ā°°āą ā°¨ā°ŋā°¯ā°‚ā°¤āąā°°ā°Ŗā°˛ā°¨āą ā°šāą‚ā°Ēāąā°ˇā°Ģāąā°˛āą ā°Žāą‹ā°Ąāąâ€Œā°¨āą ā°Žā°¨āą‡ā°Ŧāąā°˛āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°ˇā°Ģāąā°˛āą ā°Žāą‹ā°Ąāąâ€Œā°¨āą ā°Ąā°ŋā°œāą‡ā°Ŧāąā°˛āą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋā°†ā°Ēā°‚ā°Ąā°ŋā°ĩā°°āąā°šāąā°ĩā°˛āą ā°°ā°ŋā°¯ā°žā°˛ā°ŋā°Ÿāą€ ā°Žāą‹ā°Ąāą%1$s, %2$s%1$.2f Mbpsā°Žāą‹ā°¨āą‹%1$d × %2$dā°Ēāąā°°ā°¤āąā°¯ā°žā°Žāąā°¨ā°žā°¯ā°‚CCā°ĩāąā°¯ā°žā°–āąā°¯ā°žā°¨ā°‚ā°…ā°¨āąā°Ŧā°‚ā°§ā°ŋā°¤ā°‚ā°¸āąā°ĩāą€ā°¯ā°ā°Ļāą€ ā°•ā°žā°Ļāąā°†ā°Ąā°ŋā°¯āą‹ā°¸āąā°Ÿāą€ā°°ā°ŋā°¯āą‹ā°¸ā°°āąŒā°‚ā°Ąāą ā°§āąā°ĩā°¨ā°ŋ5.1 ā°¸ā°°āąŒā°‚ā°Ąāą ā°§āąā°ĩā°¨ā°ŋ7.1 ā°¸ā°°āąŒā°‚ā°Ąāą ā°§āąā°ĩā°¨ā°ŋā°¤āą†ā°˛ā°ŋā°¯ā°Ļāąā°¤āą†ā°˛ā°ŋā°¯ā°Ļāą (%1$s) ++ 0,25 ++ 0,5 ++ 0,75 ++ ĐžĐąŅ‹Ņ‡ĐŊĐ°Ņ ++ 1,25 ++ 1,5 ++ 2 ++ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņƒ вĐŋĐĩŅ€ĐĩĐ´ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņ‹ вĐŋĐĩŅ€ĐĩĐ´ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´ вĐŋĐĩŅ€ĐĩĐ´ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņ‹ вĐŋĐĩŅ€ĐĩĐ´ ++ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņƒ ĐŊаСад ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņ‹ ĐŊаСад ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´ ĐŊаСад ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņ‹ ĐŊаСад ++ ВĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Ņ‹Đ’Ņ‹ĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Ņ‹ĐŸĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ вĐŋĐĩŅ€ĐĩдПоĐģĐŊĐžŅĐēŅ€Đ°ĐŊĐŊŅ‹Đš Ņ€ĐĩĐļиĐŧĐ’Ņ‹ĐšŅ‚Đ¸ иС ĐŋĐžĐģĐŊĐžŅĐēŅ€Đ°ĐŊĐŊĐžĐŗĐž Ņ€ĐĩĐļиĐŧаХĐēŅ€Ņ‹Ņ‚ŅŒ ĐŋаĐŊĐĩĐģҌ ҃ĐŋŅ€Đ°Đ˛ĐģĐĩĐŊĐ¸ŅĐĄĐģĐĩĐ´ŅƒŅŽŅ‰Đ¸Đš ҂ҀĐĩĐēĐĄĐēŅ€Ņ‹Ņ‚ŅŒ Đ´ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģҌĐŊŅ‹Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēиПоĐēĐ°ĐˇĐ°Ņ‚ŅŒ Đ´ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģҌĐŊŅ‹Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēĐ¸ĐŸŅ€Đ¸ĐžŅŅ‚Đ°ĐŊĐžĐ˛Đ¸Ņ‚ŅŒĐ’ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩŅŅ‚Đ¸ĐĄĐēĐžŅ€ĐžŅŅ‚ŅŒĐŸŅ€ĐĩĐ´Ņ‹Đ´ŅƒŅ‰Đ¸Đš ҂ҀĐĩĐēĐ’Ņ‹ĐąŅ€Đ°ĐŊĐž: ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŅ‚ŅŒ Đ˛ŅĐĩ. ИСĐŧĐĩĐŊĐ¸Ņ‚ŅŒ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€Đ°.Đ’Ņ‹ĐąŅ€Đ°ĐŊĐž: ĐŊĐĩ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŅ‚ŅŒ. ИСĐŧĐĩĐŊĐ¸Ņ‚ŅŒ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€Đ°.Đ’Ņ‹ĐąŅ€Đ°ĐŊĐž: ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŅ‚ŅŒ ОдиĐŊ Ņ€Đ°Đˇ. ИСĐŧĐĩĐŊĐ¸Ņ‚ŅŒ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€Đ°.ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚ŅŒ ĐŊазадПоĐģĐžŅĐ° ĐŋŅ€ĐžĐēŅ€ŅƒŅ‚Đēи Đ˛ĐžŅĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐ´ĐĩĐŊĐ¸ŅĐĐ°ŅŅ‚Ņ€ĐžĐšĐēиПоĐēĐ°ĐˇĐ°Ņ‚ŅŒ ĐŋаĐŊĐĩĐģҌ ҃ĐŋŅ€Đ°Đ˛ĐģĐĩĐŊĐ¸ŅĐ’ĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ĐŋĐĩŅ€ĐĩĐŧĐĩŅˆĐ¸Đ˛Đ°ĐŊиĐĩĐžŅ‚ĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ĐŋĐĩŅ€ĐĩĐŧĐĩŅˆĐ¸Đ˛Đ°ĐŊиĐĩĐžŅŅ‚Đ°ĐŊĐžĐ˛Đ¸Ņ‚ŅŒVR-Ņ€ĐĩĐļиĐŧ%1$s, %2$s%1$.2fÂ ĐœĐąĐ¸Ņ‚/ҁĐĩĐēМоĐŊĐž%1$d × %2$dĐ”Ņ€ŅƒĐŗĐ°Ņ СаĐŋĐ¸ŅŅŒĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Ņ‹ĐšĐžĐŧĐŧĐĩĐŊŅ‚Đ°Ņ€Đ¸Đ¸Đ”ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģҌĐŊŅ‹Đĩ ĐŧĐ°Ņ‚ĐĩŅ€Đ¸Đ°ĐģŅ‹ĐĐ˛Ņ‚ĐžĐĐĩŅ‚ĐŅƒĐ´Đ¸ĐžĐĄŅ‚ĐĩŅ€ĐĩĐžĐžĐąŅŠĐĩĐŧĐŊŅ‹Đš ĐˇĐ˛ŅƒĐēĐĄĐ¸ŅŅ‚ĐĩĐŧа ĐžĐąŅŠĐĩĐŧĐŊĐžĐŗĐž ĐˇĐ˛ŅƒĐēа 5.1ĐĄĐ¸ŅŅ‚ĐĩĐŧа ĐžĐąŅŠĐĩĐŧĐŊĐžĐŗĐž ĐˇĐ˛ŅƒĐēа 7.1НĐĩиСвĐĩҁ҂ĐŊŅ‹Đš ҂ҀĐĩĐēНĐĩиСвĐĩҁ҂ĐŊĐž (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ I-fast forward nang %d segundo ++ I-fast forward nang %d na segundo ++ ++ I-rewind nang %d segundo ++ I-rewind nang %d na segundo ++ I-enable ang mga subtitleI-disable ang mga subtitleI-fast forwardMag-fullscreenLumabas sa fullscreenItago ang mga kontrol ng playerSusunodItago ang mga karagdagang settingIpakita ang mga karagdagang settingI-pauseI-playBilisNakaraanCurrent mode: Ulitin lahat. I-toggle ang repeat mode.Current mode: Walang uulitin. I-toggle ang repeat mode.Current mode: Walang uulitin. I-toggle ang repeat mode.I-rewindProgreso ng pag-playbackMga SettingIpakita ang mga kontrol ng playerI-enable ang shuffle modeI-disable ang shuffle modeIhintoVR mode%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternatiboCCKomentaryoKaragdaganAwtomatikoWalaAudioStereoSurround sound5.1 na surround sound7.1 na surround soundHindi AlamHindi Alam (%1$s) ++ 0.25 倍 ++ 0.5 倍 ++ 0.75 倍 ++ æ­Ŗå¸¸ ++ 1.25 倍 ++ 1.5 倍 ++ 2 倍 ++ ++ åŋĢčŊ‰ %d į§’ ++ åŋĢčŊ‰ %d į§’ ++ ++ 倒čŊ‰ %d į§’ ++ 倒čŊ‰ %d į§’ ++ å•Ÿį”¨å­—åš• (Subtitle)åœį”¨å­—åš• (Subtitle)åŋĢčŊ‰é€˛å…Ĩ全čžĸåš•æ¨ĄåŧįĩæŸå…¨čžĸåš•æ¨Ąåŧéšąč—æ’­æ”žå™¨æŽ§åˆļ選項įšŧįēŒéšąč—å…ļäģ–č¨­åŽšéĄ¯į¤ēå…ļäģ–設åޚæšĢ停播攞速åēĻčŋ”å›žį›Žå‰æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žæ‰€æœ‰é …į›Žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚į›Žå‰æ¨Ąåŧīŧšä¸é‡č¤‡æ’­æ”žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚į›Žå‰æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žå–Žä¸€é …į›Žã€‚åˆ‡æ›é‡č¤‡æ’­æ”žæ¨Ąåŧã€‚倒čŊ‰æ’­æ”žé€˛åēĻč¨­åŽšéĄ¯į¤ē播攞器控åˆļé¸é …å•Ÿį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧåœį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧåœæ­ĸ虛æ“Ŧå¯Ļåĸƒæ¨Ąåŧ%1$s、%2$s%1$.2f Mbpså–Žč˛é“%1$d × %2$dæ›ŋᔍčģŒCC旁į™ŊčŖœå……čģŒč‡Ēå‹•į„ĄéŸŗč¨ŠįĢ‹éĢ”č˛į’°įšžéŸŗæ•ˆ5.1 į’°įšžéŸŗæ•ˆ7.1 į’°įšžéŸŗæ•ˆä¸æ˜Žä¸æ˜Ž (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normale ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avanti di %d secondo ++ Avanti di %d secondi ++ ++ Indietro di %d secondo ++ Indietro di %d secondi ++ Attiva i sottotitoliDisattiva i sottotitoliAvanti veloceAttiva schermo interoEsci da schermo interoNascondi i controlli del playerAvantiNascondi impostazioni aggiuntiveMostra impostazioni aggiuntivePausaRiproduciVelocitàIndietroModalità attuale: Ripeti tutto. Cambia modalità di ripetizione.Modalità attuale: Non ripetere nulla. Cambia modalità di ripetizione.Modalità attuale: Ripeti uno. Cambia modalità di ripetizione.RiavvolgiAvanzamento della riproduzioneImpostazioniMostra i controlli del playerAttiva la riproduzione casualeDisattiva la riproduzione casualeInterrompiModalità VR%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dVersione alternativaSottotitoliCommentiContenuti supplementariAutoNessunoAudioStereoAudio surroundAudio surround 5.1Audio surround 7.1SconosciutaSconosciute (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avança ràpidament %d segon ++ Avança ràpidament %d segons ++ ++ Rebobina %d segon ++ Rebobina %d segons ++ Activa els subtítolsDesactiva els subtítolsAvança ràpidamentEntra a la pantalla completaSurt de la pantalla completaAmaga els controls del reproductorSegÃŧentAmaga les opcions de configuraciÃŗ addicionalsMostra opcions de configuraciÃŗ addicionalsPosa en pausaReprodueixVelocitatAnteriorActual: repeteix tot. Commuta mode repeticiÃŗ.Actual: no repeteixis. Commuta mode repeticiÃŗ.Actual: repeteix un. Commuta mode repeticiÃŗ.RebobinaProgrÊs de la reproducciÃŗConfiguraciÃŗMostra els controls del reproductorActiva el mode aleatoriDesactiva el mode aleatoriAturaMode RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativaSubtítolsComentarisComplementàriaAutomàticaCapÀudioEstèreoSo envoltantSo envoltant 5.1So envoltant 7.1DesconegutDesconegut (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Venjulegt ++ 1,25x ++ 1,5x ++ 2x ++ ++ SpÃŗla ÃĄfram um %d sekÃēndu ++ SpÃŗla ÃĄfram um %d sekÃēndur ++ ++ SpÃŗla til baka um %d sekÃēndu ++ SpÃŗla til baka um %d sekÃēndur ++ Kveikja ÃĄ skjÃĄtextaSlÃļkkva ÃĄ skjÃĄtextaSpÃŗla ÃĄframNota allan skjÃĄinnHÃĻtta að nota allan skjÃĄinnFela spilunarstÃŊringarÁframFela viðbÃŗtarstillingarSÃŊna viðbÃŗtarstillingarHlÊSpilaHraðiFyrriStilling nÃē: Endurtaka allt. Breyta endurtekningastillingu.Stilling nÃē: Endurtaka ekkert. Breyta endurtekningastillingu.Stilling nÃē: Endurtaka eitt. Breyta endurtekningastillingu.SpÃŗla til bakaFramvinda spilunarStillingarSÃŊna spilunarstÃŊringarKveikja ÃĄ stokkunSlÃļkkva ÃĄ stokkunStÃļðvasÃŊndarveruleikastilling%1$s, %2$s%1$.2f Mb/sek.EinÃŗma%1$d × %2$dAnnaðSkjÃĄtextarLÃŊsingarAukaSjÃĄlfvirktEkkertHljÃŗÃ°VÃ­Ã°ÃŗmaVÃ­Ã°Ãŗma hljÃŗÃ°5.1 vÃ­Ã°Ãŗma hljÃŗÃ°7.1 vÃ­Ã°Ãŗma hljÃŗÃ°Ã“ÃžekktÓÞekkt (%1$s) ++ 0,25× ++ 0,5× ++ 0,75× ++ NormÃĄlní ++ 1,25× ++ 1,5× ++ 2× ++ ++ Posunout vpřed o %d sekundu ++ Posunout vpřed o %d sekundy ++ Posunout vpřed o %d sekundy ++ Posunout vpřed o %d sekund ++ ++ Přetočit zpět o %d sekundu ++ Přetočit zpět o %d sekundy ++ Přetočit zpět o %d sekundy ++ Přetočit zpět o %d sekund ++ Zapnout titulkyVypnout titulkyRychle vpředPřejít do reÅžimu celÊ obrazovkyUkončit reÅžim celÊ obrazovkySkrÃŊt ovlÃĄdací prvky přehrÃĄvačeDalÅĄÃ­SkrÃŊt dalÅĄÃ­ nastaveníZobrazit dalÅĄÃ­ nastaveníPozastavitPřehrÃĄtRychlostPředchozíAktuÃĄlně: Opakovat vÅĄe. Zapněte reÅžim opakovÃĄní.AktuÃĄlně: Nic neopakovat. Zapněte reÅžim opakovÃĄní.AktuÃĄlně: Opakovat jednu poloÅžku. Zapněte reÅžim opakovÃĄní.Přetočit zpětPrůběh přehrÃĄvÃĄníNastaveníZobrazit ovlÃĄdací prvky přehrÃĄvačeAktivovat nÃĄhodnÊ přehrÃĄvÃĄníDeaktivovat nÃĄhodnÊ přehrÃĄvÃĄníZastavitReÅžim VR%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dAlternativníTitulkyKomentÃĄÅ™DodatkovÊAutomatickyÅŊÃĄdnÊZvukStereoProstorovÃŊ zvukProstorovÃŊ zvuk 5.1ProstorovÃŊ zvuk 7.1NeznÃĄmÊNeznÃĄmÊ (%1$s) ++ 0.25 倍 ++ 0.5 倍 ++ 0.75 倍 ++ æ­Ŗå¸¸ ++ 1.25 倍 ++ 1.5 倍 ++ 2 倍 ++ ++ åŋĢčŋ› %d į§’ ++ åŋĢčŋ› %d į§’ ++ ++ åŋĢ退 %d į§’ ++ åŋĢ退 %d į§’ ++ å¯į”¨å­—åš•åœį”¨å­—åš•åŋĢčŋ›čŋ›å…Ĩå…¨åąæ¨Ąåŧé€€å‡ēå…¨åąæ¨Ąåŧéšč—æ’­æ”žå™¨æŽ§äģļ下一éĻ–éšč—å…ļäģ–莞įŊŽæ˜žį¤ēå…ļäģ–莞įŊŽæš‚停播攞速åēĻ上一éĻ–åŊ“å‰æ¨Ąåŧīŧšé‡å¤æ’­æ”žæ‰€æœ‰éĄšį›Žã€‚切æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚åŊ“å‰æ¨Ąåŧīŧšä¸é‡å¤ã€‚切æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚åŊ“å‰æ¨Ąåŧīŧšé‡å¤æ’­æ”žåŊ“å‰éĄšį›Žã€‚åˆ‡æĸé‡å¤æ’­æ”žæ¨Ąåŧã€‚åŋĢ退播攞čŋ›åēĻ莞įŊŽæ˜žį¤ē播攞器控äģļå¯į”¨éšæœēæ’­æ”žæ¨Ąåŧåœį”¨éšæœēæ’­æ”žæ¨Ąåŧåœæ­ĸVR æ¨Ąåŧ%1$sīŧŒ%2$s%1$.2f Mbpså•åŖ°é“%1$d × %2$dæ›ŋᔍčŊ¨å­—å𕿗į™ŊčĄĨ充čŊ¨č‡ĒåŠ¨æ— éŸŗéĸ‘įĢ‹äŊ“åŖ°įŽ¯įģ•åŖ°5.1 įŽ¯įģ•åŖ°7.1 įŽ¯įģ•åŖ°æœĒįŸĨæœĒįŸĨ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Maju cepat %d detik ++ Maju cepat %d detik ++ ++ Mundur %d detik ++ Mundur %d detik ++ Aktifkan subtitelNonaktifkan subtitelMaju cepatMasuk layar penuhKeluar dari layar penuhMenyembunyikan kontrol pemutarBerikutnyaSembunyikan setelan tambahanTampilkan setelan tambahanJedaPutarKecepatanSebelumnyaMode saat ini: Ulang semua. Alihkan mode berulang.Mode saat ini: Tidak berulang. Alihkan mode berulang.Mode saat ini: Ulang sekali. Alihkan mode berulang.Putar UlangProgres pemutaranSetelanMenampilkan kontrol pemutarAktifkan mode acakNonaktifkan mode acakBerhentiMode VR%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternatifCCKomentarTambahanOtomatisTidak adaAudioStereoSuara surround5.1 surround sound7.1 surround soundTidak diketahuiTidak diketahui (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ 標æē– ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d į§’æ—Šé€ã‚Š ++ %d į§’æ—Šé€ã‚Š ++ ++ %d į§’åˇģきæˆģし ++ %d į§’åˇģきæˆģし ++ å­—åš•ãŽæœ‰åŠšåŒ–å­—åš•ãŽį„ĄåŠšåŒ–æ—Šé€ã‚Šå…¨į”ģéĸ襨į¤ēãĢ変更全į”ģéĸ襨į¤ēをįĩ‚äē†ãƒ—ãƒŦãƒŧヤãƒŧãŽã‚ŗãƒŗãƒˆãƒ­ãƒŧãƒĢã‚’éžčĄ¨į¤ēãĢするæŦĄã¸ããŽäģ–ãŽč¨­åŽšãŽéžčĄ¨į¤ēそぎäģ–ãŽč¨­åŽšãŽčĄ¨į¤ē一時停æ­ĸå†į”Ÿé€ŸåēĻå‰ã¸įžåœ¨: å…¨æ›˛ãƒĒピãƒŧト。ãƒĸãƒŧドを切りæ›ŋãˆãžã™ã€‚įžåœ¨: ãƒĒピãƒŧトãĒし。ãƒĸãƒŧドを切りæ›ŋãˆãžã™ã€‚įžåœ¨: 1 æ›˛ãƒĒピãƒŧト。ãƒĸãƒŧドを切りæ›ŋえぞす。åˇģきæˆģã—å†į”Ÿä¸­č¨­åŽšãƒ—ãƒŦãƒŧヤãƒŧãŽã‚ŗãƒŗãƒˆãƒ­ãƒŧãƒĢã‚’čĄ¨į¤ēã™ã‚‹ã‚ˇãƒŖãƒƒãƒ•ãƒĢ ãƒĸãƒŧドを有劚ãĢã™ã‚‹ã‚ˇãƒŖãƒƒãƒ•ãƒĢ ãƒĸãƒŧãƒ‰ã‚’į„ĄåŠšãĢする停æ­ĸVR ãƒĸãƒŧド%1$s、%2$s%1$.2f MbpsãƒĸノナãƒĢ%1$d × %2$däģŖæ›ŋå­—åš•č§ŖčĒŦ誜čļŗč‡Ē動ãĒã—éŸŗåŖ°ã‚šãƒ†ãƒŦã‚Ēã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰5.1 ã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰7.1 ã‚ĩナã‚Ļãƒŗãƒ‰ ã‚ĩã‚Ļãƒŗãƒ‰ä¸æ˜Žä¸æ˜Žīŧˆ%1$sīŧ‰ ++ 0,25x ++ 0,5x ++ 0,75x ++ ΚαÎŊÎŋÎŊΚÎēÎŽ ++ 1,25x ++ 1,5x ++ 2x ++ ++ Î“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩ΀΄Îŋ ++ Î“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩĪ€Ī„Îą ++ ++ ΜÎĩĪ„ÎŦÎ˛ÎąĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩ΀΄Îŋ ++ ΜÎĩĪ„ÎŦÎ˛ÎąĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą Ī€Î¯ĪƒĪ‰ ÎēÎąĪ„ÎŦ %d δÎĩĪ…Ī„Îĩ΁ΌÎģÎĩĪ€Ī„Îą ++ ΕÎŊÎĩĪÎŗÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ Ī…Ī€ĪŒĪ„ÎšĪ„ÎģΉÎŊÎ‘Ī€ÎĩÎŊÎĩĪÎŗÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ Ī…Ī€ĪŒĪ„ÎšĪ„ÎģΉÎŊÎ“ĪÎŽÎŗÎŋĪÎˇ ΀΁ÎŋĪŽÎ¸ÎˇĪƒÎˇÎ ÎģÎŽĪÎˇĪ‚ ÎŋÎ¸ĪŒÎŊΡΈΞÎŋδÎŋĪ‚ ÎąĪ€ĪŒ Ī€ÎģÎŽĪÎˇ ÎŋÎ¸ĪŒÎŊÎˇÎ‘Ī€ĪŒÎē΁. ĪƒĪ„ÎŋÎšĪ‡ÎĩÎ¯Ī‰ÎŊ ÎĩÎģÎ­ÎŗĪ‡ÎŋĪ… ΀΁ÎŋÎŗĪÎŦÎŧÎŧÎąĪ„ÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚Î•Ī€ĪŒÎŧÎĩÎŊÎŋÎ‘Ī€ĪŒÎēĪĪ…ĪˆÎˇ Ī€ĪĪŒĪƒÎ¸Îĩ΄ΉÎŊ ĪĪ…Î¸ÎŧÎ¯ĪƒÎĩΉÎŊΕÎŧΆÎŦÎŊÎšĪƒÎˇ Ī€ĪĪŒĪƒÎ¸Îĩ΄ΉÎŊ ĪĪ…Î¸ÎŧÎ¯ĪƒÎĩΉÎŊÎ ÎąĪĪƒÎˇÎ‘ÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽÎ¤ÎąĪ‡ĪĪ„ÎˇĪ„ÎąÎ ĪÎŋÎˇÎŗÎŋĪÎŧÎĩÎŊÎŋÎ¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: Î•Ī€ÎąÎŊÎŦÎģ. ΌÎģΉÎŊ ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ.Î¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: ΚαÎŧÎ¯Îą ÎĩĪ€ÎąÎŊÎŦÎģ. ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ.Î¤ĪÎ­Ī‡. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą: Î•Ī€ÎąÎŊÎŦÎģ. ÎĩÎŊĪŒĪ‚. ΕÎŊÎąÎģÎģÎąÎŗÎŽ ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. ÎĩĪ€ÎąÎŊÎŦÎģ.Î•Ī€ÎąÎŊÎąĪ†Îŋ΁ÎŦÎ ĪĪŒÎŋδÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚ÎĄĪ…Î¸ÎŧÎ¯ĪƒÎĩÎšĪ‚Î•ÎŧΆÎŦÎŊ. ĪƒĪ„ÎŋÎšĪ‡ÎĩÎ¯Ī‰ÎŊ ÎĩÎģÎ­ÎŗĪ‡ÎŋĪ… ΀΁ÎŋÎŗĪÎŦÎŧÎŧÎąĪ„ÎŋĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚Î•ÎŊÎĩĪÎŗÎŋĪ€. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. Ī„Ī…Ī‡ÎąÎ¯ÎąĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚Î‘Ī€ÎĩÎŊÎĩĪÎŗ. ÎģÎĩÎšĪ„ÎŋĪ…ĪÎŗ. Ī„Ī…Ī‡ÎąÎ¯ÎąĪ‚ ÎąÎŊÎąĪ€ÎąĪÎąÎŗĪ‰ÎŗÎŽĪ‚Î”ÎšÎąÎēÎŋĪ€ÎŽÎ›ÎĩÎšĪ„ÎŋĪ…ĪÎŗÎ¯Îą VR mode%1$s, %2$s%1$.2f MbpsΜÎŋÎŊÎŋΆΉÎŊΚÎēΌ%1$d × %2$dΕÎŊÎąÎģÎģÎąÎēĪ„ÎšÎēΌÎĨĪ€ĪŒĪ„ÎšĪ„ÎģÎŋÎšÎŖĪ‡ÎŋÎģÎšÎąĪƒÎŧĪŒĪ‚ÎŖĪ…ÎŧĪ€ÎģÎˇĪĪ‰ÎŧÎąĪ„ÎšÎēĪŒÎ‘Ī…Ī„ĪŒÎŧÎąĪ„ÎŋΚαÎŊέÎŊÎąÎ‰Ī‡ÎŋĪ‚ÎŖĪ„Îĩ΁ÎĩÎŋΆΉÎŊΚÎēĪŒÎ ÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚Î ÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚ 5.1ΠÎĩĪÎšĪ†Îĩ΁ÎĩΚιÎēĪŒĪ‚ ÎŽĪ‡ÎŋĪ‚ 7.1Î†ÎŗÎŊĪ‰ĪƒĪ„ÎŋÎ†ÎŗÎŊĪ‰ĪƒĪ„Îŋ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normāls ++ 1,25x ++ 1,5x ++ 2x ++ ++ PārtÄĢt uz priekÅĄu par %d sekundēm ++ PārtÄĢt uz priekÅĄu par %d sekundi ++ PārtÄĢt uz priekÅĄu par %d sekundēm ++ ++ AttÄĢt atpakaÄŧ par %d sekundēm ++ AttÄĢt atpakaÄŧ par %d sekundi ++ AttÄĢt atpakaÄŧ par %d sekundēm ++ Iespējot subtitrusAtspējot subtitrusPārtÄĢt uz priekÅĄuAtvērt pilnekrāna reÅžÄĢmuAizvērt pilnekrāna reÅžÄĢmuSlēpt atskaņotāja vadÄĢklasNākamaisSlēpt papildu iestatÄĢjumusRādÄĢt papildu iestatÄĢjumusPauzētAtskaņotĀtrumsIepriekÅĄÄ“jaisIesl.: atkārtot visu. Pārslēdziet reÅžÄĢmu.Iesl.: neatkārtot nevienu. Pārslēdziet reÅžÄĢmu.Iesl.: atkārtot vienu. Pārslēdziet reÅžÄĢmu.AttÄĢt atpakaÄŧAtskaņoÅĄanas noriseIestatÄĢjumiRādÄĢt atskaņotāja vadÄĢklasIespējot atskaņoÅĄanu jauktā secÄĢbāAtspējot atskaņoÅĄanu jauktā secÄĢbāApturētVR reÅžÄĢms%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dCitsSlēgtie parakstiKomentāriPapilduAutomātisksNavAudioStereoIeskaujoÅĄÄ skaņa5.1 ieskaujoÅĄÄ skaņa7.1 ieskaujoÅĄÄ skaņaNezināmsNezināma (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Spol %d sekund frem ++ Spol %d sekunder frem ++ ++ Spol %d sekund tilbage ++ Spol %d sekunder tilbage ++ AktivÊr underteksterDeaktiver underteksterSpol fremÅbn fuld skÃĻrmAfslut fuld skÃĻrmSkjul afspilningsknapperNÃĻsteSkjul yderligere indstillingerVis yderligere indstillingerSÃĻt pÃĨ pauseAfspilHastighedForrigeTilstand: Gentag alle. SlÃĨ Gentag til/fra.Tilstand: Gentag ikke. SlÃĨ Gentag til/fra.Tilstand: Gentag Ên. SlÃĨ Gentag til/fra.Spol tilbageAfspilningsstatusIndstillingerVis afspilningsknapperAktivÊr BlandDeaktiver BlandStopVR-tilstand%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativt sporUnderteksterKommentarsporSupplerende sporAutomatiskIngenLydStereoSurroundsound5.1 surround sound7.1 surroundsoundUkendtUkendt (%1$s) ++ āĨĻ.āĨ¨āĨĢx ++ āĨĻ.āĨĢx ++ āĨĻ.āĨ­āĨĢx ++ ā¤¸ā¤žā¤Žā¤žā¤¨āĨā¤¯ ++ āĨ§.āĨ¨āĨĢx ++ āĨ§.āĨĢx ++ āĨ¨x ++ ++ %d ⤏āĨ‡ā¤•⤂ā¤Ļ ā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤ĢāĨ‰ā¤°ā¤ĩ⤰āĨā¤Ą ā¤•ā¤°ā¤ž ++ %d ⤏āĨ‡ā¤•⤂ā¤Ļ ā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤ĢāĨ‰ā¤°ā¤ĩ⤰āĨā¤Ą ā¤•ā¤°ā¤ž ++ ++ %d ⤏āĨ‡ā¤•⤂ā¤Ļ ⤰ā¤ŋā¤ĩā¤žā¤‡ā¤‚ā¤Ą ā¤•ā¤°ā¤ž ++ %d ⤏āĨ‡ā¤•⤂ā¤Ļ ⤰ā¤ŋā¤ĩā¤žā¤‡ā¤‚ā¤Ą ā¤•ā¤°ā¤ž ++ ⤏ā¤Ŧā¤Ÿā¤žā¤¯ā¤Ÿā¤˛ ⤏āĨā¤°āĨ‚ ā¤•ā¤°ā¤žā¤¸ā¤Ŧā¤Ÿā¤žā¤¯ā¤Ÿā¤˛ ā¤Ŧ⤂ā¤Ļ ā¤•ā¤°ā¤žā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤ĢāĨ‰ā¤°ā¤ĩ⤰āĨā¤Ą ā¤•ā¤°ā¤žā¤ĢāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ā¤ĩ⤰ ā¤Ēā¤šā¤žā¤ĢāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ā¤ĩ⤰āĨ‚⤍ ā¤Ŧā¤žā¤šāĨ‡ā¤° ā¤Ēā¤Ąā¤žā¤ĒāĨā¤˛āĨ‡ā¤…⤰ ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤ŖāĨ‡ ⤞ā¤Ēā¤ĩā¤žā¤ĒāĨā¤ĸāĨ€ā¤˛ā¤…⤤ā¤ŋ⤰ā¤ŋ⤕āĨā¤¤ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗āĨā¤œ ⤞ā¤Ēā¤ĩā¤žā¤…ā¤¤ā¤ŋ⤰ā¤ŋ⤕āĨā¤¤ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗āĨā¤œ ā¤Ļā¤žā¤–ā¤ĩā¤žā¤ĩā¤ŋā¤°ā¤žā¤Žā¤ĒāĨâ€ā¤˛āĨ‡ ā¤•ā¤°ā¤žā¤ĩāĨ‡ā¤—ā¤Žā¤žā¤—āĨ€ā¤˛ā¤¸ā¤§āĨā¤¯ā¤žā¤šā¤ž ā¤ŽāĨ‹ā¤Ą: ⤏⤰āĨā¤ĩ ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤•ā¤°ā¤ž. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ā¤•ā¤°ā¤ž.⤏⤧āĨā¤¯ā¤žā¤šā¤ž ā¤ŽāĨ‹ā¤Ą: ā¤•ā¤žā¤šāĨ€ā¤šāĨ€ ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ⤕⤰āĨ‚ ā¤¨ā¤•ā¤ž. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ā¤•ā¤°ā¤ž.⤏⤧āĨā¤¯ā¤žā¤šā¤ž ā¤ŽāĨ‹ā¤Ą: ā¤ā¤• ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤•ā¤°ā¤ž. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ā¤•ā¤°ā¤ž.⤰āĨ€ā¤ĩā¤žā¤‡ā¤‚ā¤Ą ā¤•ā¤°ā¤žā¤ĒāĨā¤˛āĨ‡ā¤ŦāĨ…ā¤•ā¤šāĨ€ ā¤ĒāĨā¤°ā¤—⤤āĨ€ā¤¸āĨ‡ā¤Ÿā¤ŋ⤂⤗āĨā¤œā¤ĒāĨā¤˛āĨ‡ā¤…⤰ ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤ŖāĨ‡ ā¤Ļ⤰āĨā¤ļā¤ĩā¤žā¤ļā¤Ģ⤞ ā¤ŽāĨ‹ā¤Ą ⤏āĨā¤°āĨ‚ ā¤•ā¤°ā¤žā¤ļā¤Ģ⤞ ā¤ŽāĨ‹ā¤Ą ā¤Ŧ⤂ā¤Ļ ā¤•ā¤°ā¤žā¤Ĩā¤žā¤‚ā¤Ŧā¤žVR ā¤ŽāĨ‹ā¤Ą%1$s, %2$s%1$.2f Mbpsā¤ŽāĨ‹ā¤¨āĨ‹%1$d × %2$dā¤Ē⤰āĨā¤¯ā¤žā¤¯āĨ€ā¤¸ā¤Ŧā¤Ÿā¤žā¤¯ā¤Ÿā¤˛ā¤¸ā¤Žā¤žā¤˛āĨ‹ā¤šā¤¨ā¤¸ā¤žā¤šā¤žā¤¯āĨā¤¯ā¤•⤆ā¤ĒāĨ‹ā¤†ā¤Ēā¤•ā¤žā¤šāĨ€ā¤šāĨ€ ā¤¨ā¤žā¤šāĨ€ā¤‘ā¤Ąā¤ŋ⤓⤏āĨā¤Ÿā¤ŋ⤰ā¤ŋā¤“ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤ĄāĨĢ.āĨ§ ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤ĄāĨ­.āĨ§ ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ąā¤…ā¤œāĨā¤žā¤žā¤¤ā¤…ā¤œāĨā¤žā¤žā¤¤ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ ŌšĐ°ĐģŅ‹Đŋ҂ҋ ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€Ņƒ ++ ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ´Ņ– Ō›ĐžŅŅƒĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ´Ņ– ĶŠŅˆŅ–Ņ€ŅƒĐ–Ņ‹ĐģдаĐŧ аĐģŌ“Đ° аКĐŊаĐģĐ´Ņ‹Ņ€ŅƒĐĸĐžĐģҋԛ ŅĐēŅ€Đ°ĐŊĐ´Ņ‹ Ņ€ĐĩĐļиĐŧĐŗĐĩ ĐēŅ–Ņ€ŅƒĐĸĐžĐģҋԛ ŅĐēŅ€Đ°ĐŊĐ´Ņ‹ Ņ€ĐĩĐļиĐŧĐŊĐĩĐŊ ŅˆŅ‹Ō“ŅƒĐžĐšĐŊĐ°Ņ‚Ō›Ņ‹ŅˆŅ‚Ņ‹ ĐąĐ°ŅŌ›Đ°Ņ€Ņƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩҀҖĐŊ ĐļĐ°ŅŅ‹Ņ€ŅƒĐšĐĩĐģĐĩŅŅ–ŌšĐžŅŅ‹ĐŧŅˆĐ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Ņ– ĐļĐ°ŅŅ‹Ņ€ŅƒŌšĐžŅŅ‹ĐŧŅˆĐ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Ņ– ĐēĶŠŅ€ŅĐĩŅ‚ŅƒĐšŅ–Đ´Ņ–Ņ€Ņ‚ŅƒĐžĐšĐŊĐ°Ņ‚ŅƒĐ–Ņ‹ĐģдаĐŧĐ´Ņ‹Ō›ĐĐģĐ´Ņ‹ŌŖŌ“Ņ‹ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: ĐąĐ°Ņ€Đģҋԛ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐ°Đ´Ņ‹ ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ.ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: Đĩ҈ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐąĐ°ĐšĐ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ.ŌšĐ°ĐˇŅ–Ņ€ĐŗŅ– Ņ€ĐĩĐļиĐŧ: ĐąŅ–Ņ€ ĐēĐžĐŊŅ‚ĐĩĐŊŅ‚ Ō›Đ°ĐšŅ‚Đ°ĐģаĐŊĐ°Đ´Ņ‹. ŌšĐ°ĐšŅ‚Đ°ĐģĐ°Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Đ°ŅƒŅ‹ŅŅ‚Ņ‹Ņ€Ņƒ.ĐŅ€Ņ‚Ō›Đ° аКĐŊаĐģĐ´Ņ‹Ņ€ŅƒĐžĐšĐŊĐ°Ņ‚Ņƒ ĐąĐ°Ņ€Ņ‹ŅŅ‹ĐŸĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€ĐžĐšĐŊĐ°Ņ‚Ō›Ņ‹ŅˆŅ‚Ņ‹ ĐąĐ°ŅŌ›Đ°Ņ€Ņƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩҀҖĐŊ ĐēĶŠŅ€ŅĐĩŅ‚ŅƒĐŅ€Đ°ĐģĐ°ŅŅ‚Ņ‹Ņ€Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ Ō›ĐžŅŅƒĐŅ€Đ°ĐģĐ°ŅŅ‚Ņ‹Ņ€Ņƒ Ņ€ĐĩĐļиĐŧŅ–ĐŊ ĶŠŅˆŅ–Ņ€ŅƒĐĸĐžŌ›Ņ‚Đ°Ņ‚ŅƒVR Ņ€ĐĩĐļиĐŧŅ–%1$s, %2$s%1$.2f МБ/ҁĐĩĐēМоĐŊĐž%1$d × %2$dБаĐģаĐŧĐ°ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€ĐĸԝҁҖĐŊĐ´Ņ–Ņ€ĐŧĐĩŌšĐžŅŅ‹ĐŧŅˆĐ°ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Ņ‚Ņ‹Đ–ĐžŌ›AŅƒĐ´Đ¸ĐžĐŧаСĐŧŌąĐŊĐĄŅ‚ĐĩŅ€ĐĩĐžĐšĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ5.1 ĐēĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ ĐļŌ¯ĐšĐĩҁҖ7.1 ĐēĶŠĐģĐĩĐŧĐ´Ņ– Đ´Ņ‹ĐąŅ‹Ņ ĐļŌ¯ĐšĐĩŅŅ–Đ‘ĐĩĐģĐŗŅ–ŅŅ–ĐˇĐ‘ĐĩĐģĐŗŅ–ŅŅ–Đˇ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ ĐžŅ€Ņ‚ĐžŅ‡Đž ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ %d ҁĐĩĐē҃ĐŊĐ´ аĐģĐ´Ņ‹ĐŗĐ° Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ %d ҁĐĩĐē҃ĐŊĐ´ Đ°Ņ€Ņ‚Đēа Ņ‚Ō¯Ņ€Đ´Ō¯Ņ€Ō¯Ō¯ ++ ĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€Đ´Ņ‹ Đ¸ŅˆŅ‚ĐĩŅ‚Ō¯Ō¯ĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€Đ´Ņ‹ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯ĐĐģĐ´Ņ‹ĐŗĐ° ҂ԝҀԝԝĐĸĐžĐģ҃Đē ŅĐēŅ€Đ°ĐŊĐŗĐ° ĐēĐ¸Ņ€Ō¯Ō¯ĐĸĐžĐģ҃Đē ŅĐēŅ€Đ°ĐŊ Ņ€ĐĩĐļиĐŧиĐŊĐĩĐŊ Ņ‡Ņ‹ĐŗŅƒŅƒĐžĐšĐŊĐžŅ‚ĐēŅƒŅ‡Ņ‚Ņƒ ĐąĐ°ŅˆĐēĐ°Ņ€ŅƒŅƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩŅ€Đ¸ĐŊ ĐļĐ°ŅˆŅ‹Ņ€ŅƒŅƒĐšĐ¸ĐšĐ¸ĐŊĐēĐ¸ĐšĐžŅˆŅƒĐŧŅ‡Đ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Đ¸ ĐļĐ°ŅˆŅ‹Ņ€ŅƒŅƒĐšĐžŅˆŅƒĐŧŅ‡Đ° ĐŋĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€Đ´Đ¸ ĐēĶŠŅ€ŅĶŠŅ‚Ō¯Ō¯ĐĸŅ‹ĐŊĐ´Ņ‹Ņ€ŅƒŅƒĐžĐšĐŊĐžŅ‚ŅƒŅƒĐĢĐģдаĐŧĐ´Ņ‹ĐēĐœŅƒŅ€ŅƒĐŊĐēŅƒĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: Đ‘Đ°Đ°Ņ€Ņ‹ĐŊ ĐēĐ°ĐšŅ‚Đ°ĐģОО. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯.ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: ĐšĐ°ĐšŅ‚Đ°ĐģаĐŊĐąĐ°ŅŅ‹ĐŊ. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯.ĐŖŅ‡ŅƒŅ€Đ´Đ°ĐŗŅ‹ Ņ€ĐĩĐļиĐŧ: Đ‘Đ¸Ņ€ ĐŧĐĩдиаĐŊŅ‹ ĐēĐ°ĐšŅ‚Đ°ĐģОО. ĐšĐ°ĐšŅ‚Đ°ĐģОО Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯/ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯.ĐŅ€Ņ‚Đēа Ņ‚Ō¯Ņ€Ō¯Ō¯ĐžĐšĐŊĐžŅ‚ŅƒŅƒ ĐēĶŠŅ€ŅĶŠŅ‚ĐēŌ¯Ņ‡Ō¯ĐŸĐ°Ņ€Đ°ĐŧĐĩ҂ҀĐģĐĩŅ€ĐžĐšĐŊĐžŅ‚ĐēŅƒŅ‡Ņ‚Ņƒ ĐąĐ°ŅˆĐēĐ°Ņ€ŅƒŅƒ ŅĐģĐĩĐŧĐĩĐŊ҂҂ĐĩŅ€Đ¸ĐŊ ĐēĶŠŅ€ŅĶŠŅ‚Ō¯Ō¯ĐŅ€Đ°ĐģĐ°ŅˆŅ‚Ņ‹Ņ€ŅƒŅƒ Ņ€ĐĩĐļиĐŧиĐŊ ĐēŌ¯ĐšĐŗŌ¯ĐˇŌ¯Ō¯ĐŅ€Đ°ĐģĐ°ŅˆŅ‚Ņ‹Ņ€ŅƒŅƒ Ņ€ĐĩĐļиĐŧиĐŊ ĶŠŅ‡Ō¯Ņ€Ō¯Ō¯ĐĸĐžĐēŅ‚ĐžŅ‚ŅƒŅƒVR Ņ€ĐĩĐļиĐŧи%1$s, %2$s%1$.2f Мб/ҁĐĩĐē.МоĐŊĐž%1$d × %2$dАĐģŅŒŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛Đ´Ō¯Ō¯ ҂ҀĐĩĐēĐšĐžŅˆŅ‚ĐžĐŧĐž ĐļĐ°ĐˇŅƒŅƒĐģĐ°Ņ€ĐŸĐ¸ĐēĐ¸Ņ€ĐšĐžŅˆŅƒĐŧŅ‡Đ° ҂ҀĐĩĐēĐĐ˛Ņ‚ĐžĐ–ĐžĐēĐŅƒĐ´Đ¸ĐžĐĄŅ‚ĐĩŅ€ĐĩĐžĐšĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Ō¯ĐŊ5.1 ĐēĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Đ´ĐžĐąŅƒŅˆ7.1 ĐēĶŠĐģĶŠĐŧĐ´Ō¯Ō¯ Đ´ĐžĐąŅƒŅˆĐ‘ĐĩĐģĐŗĐ¸ŅĐ¸ĐˇĐ‘ĐĩĐģĐŗĐ¸ŅĐ¸Đˇ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ āǏāĒžāĒŽāĒžāǍāĢāǝ ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹ ++ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹ ++ %d āǏā̇āĒ•āǍāĢāĒĄ āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹ ++ āǏāĒŦāǟāĒžāLJāǟāǞ āǚāĒžāǞā́ āĒ•āǰāĢ‹āǏāĒŦāǟāĒžāLJāǟāǞ āĒŦāĒ‚āǧ āĒ•āǰāĢ‹āĒĢāĒžāǏāĢāǟ āĒĢā̉āǰāĒĩāǰāĢāĒĄ āĒ•āǰāĢ‹āĒĒāĢ‚āǰāĢāĒŖāǏāĢāĒ•āĢāǰāĢ€āǍ āĒŽāĢ‹āĒĄāĒŽāĒžāĒ‚ āĒĻāĒžāĒ–āǞ āĒĨāĒžāĒ“āĒĒāĢ‚āǰāĢāĒŖāǏāĢāĒ•āĢāǰāĢ€āǍ āĒŽāĢ‹āĒĄāĒŽāĒžāĒ‚āĒĨāĢ€ āĒŦāĒšāĒžāǰ āǍāĢ€āĒ•āĒŗāĢ‹āĒĒāĢāǞā̇āǝāǰ āĒŽāĒžāǟā̇āǍāĒž āǍāĒŋāǝāĒ‚āǤāĢāǰāĒŖāĢ‹ āĒ›ā́āĒĒāĒžāĒĩāĢ‹ādžāĒ—āĒŗāĒĩāǧāĒžāǰāĒžāǍāĒž āǏā̇āǟāĒŋāĒ‚āĒ— āĒ›ā́āĒĒāĒžāĒĩāĢ‹āĒĩāǧāĒžāǰāĒžāǍāĒž āǏā̇āǟāĒŋāĒ‚āĒ— āĒŦāǤāĒžāĒĩāĢ‹āĒĨāĢ‹āĒ­āĢ‹āǚāǞāĒžāĒĩāĢ‹āĒāĒĄāĒĒāĒĒāĒžāĒ›āĒŗāĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒŦāǧā́āĒ‚ āǰāĒŋāĒĒāĢ€āǟ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹.āĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒ•āĒ‚āLj āǰāĒŋāĒĒāĢ€āǟ āǍ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹.āĒĩāǰāĢāǤāĒŽāĒžāǍ āĒŽāĢ‹āĒĄ: āĒāĒ• āǰāĒŋāĒĒāĢ€āǟ āĒ•āǰāĢ‹. āǰāĒŋāĒĒāĢ€āǟ āĒŽāĢ‹āĒĄ āǟā̉āĒ—āǞ āĒ•āǰāĢ‹.āǰāĒŋāĒĩāĒžāLJāǍāĢāĒĄ āĒ•āǰāĢ‹āĒĒāĢāǞā̇āĒŦāĢ…āĒ• āǚāĒžāǞā́ āĒ›ā̇āǏā̇āǟāĒŋāĒ‚āĒ—āĒĒāĢāǞā̇āǝāǰ āĒŽāĒžāǟā̇āǍāĒž āǍāĒŋāǝāĒ‚āǤāĢāǰāĒŖāĢ‹ āĒŦāǤāĒžāĒĩāĢ‹āĒļāĒĢāǞ āĒŽāĢ‹āĒĄ āǚāĒžāǞā́ āĒ•āǰāĢ‹āĒļāĒĢāǞ āĒŽāĢ‹āĒĄ āĒŦāĒ‚āǧ āĒ•āǰāĢ‹āǰāĢ‹āĒ•āĢ‹VR āĒŽāĢ‹āĒĄ%1$s, %2$s%1$.2f MbpsāĒŽā̉āǍāĢ‹%1$d × %2$dāĒĩā̈āĒ•āǞāĢāĒĒāĒŋāĒ•CCāĒ•āĢ‹āĒŽā̇āǍāĢāǟāĢāǰāĢ€āĒĒāĢ‚āǰāĒ•āĒ‘āǟāĢ‹āĒŽāĢ…āǟāĒŋāĒ• āǰāĢ€āǤā̇āĒāĒ•āĒĒāĒŖ āǍāĒšāĢ€āĒ‚āĒ‘āĒĄāĒŋāǝāĢ‹āǏāĢāǟāĢ€āǰāĒŋāĒ“āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄ5.1 āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄ7.1 āǏāǰāĒžāljāǍāĢāĒĄ āǏāĒžāljāǍāĢāĒĄāĒ…āǜāĒžāĒŖāĢāǝāĢ‹āĒ…āǜāĒžāĒŖāĢāǝā́āĒ‚ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Đ­ĐŊĐŗĐ¸ĐšĐŊ ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ŅŅŅ€ Ņ…ŅƒŅ€Đ´Đ°ĐŊ ŅƒŅ€Đ°ĐŗŅˆĐģ҃҃ĐģĐ°Ņ… ++ %d ҁĐĩĐē҃ĐŊĐ´ŅŅŅ€ Ņ…ŅƒŅ€Đ´Đ°ĐŊ ŅƒŅ€Đ°ĐŗŅˆĐģ҃҃ĐģĐ°Ņ… ++ ++ %d ҁĐĩĐē҃ĐŊĐ´ ŅƒŅ…Ņ€Đ°Đ°Ņ… ++ %d ҁĐĩĐē҃ĐŊĐ´ ŅƒŅ…Ņ€Đ°Đ°Ņ… ++ ĐĨадĐŧаĐģŅ‹Đŗ Đ¸Đ´ŅĐ˛Ņ…ĐļŌ¯Ō¯ĐģŅŅ…ĐĨадĐŧаĐģŅ‹Đŗ Đ¸Đ´ŅĐ˛Ņ…ĐŗŌ¯Đš йОĐģĐŗĐžŅ…ĐĨŅƒŅ€Đ´Đ°ĐŊ ŅƒŅ€Đ°ĐŗŅˆĐģ҃҃ĐģĐ°Ņ…Đ‘Ō¯Ņ‚ŅĐŊ Đ´ŅĐģĐŗŅŅ†ŅŅŅ€ Ņ…Đ°Ņ€Đ°Ņ…Đ‘Ō¯Ņ‚ŅĐŊ Đ´ŅĐģĐŗŅŅ†ŅŅŅ ĐŗĐ°Ņ€Đ°Ņ…ĐĸĐžĐŗĐģ҃҃ĐģĐ°ĐŗŅ‡Đ¸ĐšĐŊ ŅƒĐ´Đ¸Ņ€Đ´ĐģĐ°ĐŗŅ‹Đŗ ĐŊŅƒŅƒŅ…Đ”Đ°Ņ€Đ°Đ°Ņ…ĐŅĐŧŅĐģŅ‚ Ņ‚ĐžŅ…Đ¸Ņ€ĐŗĐžĐžĐŗ ĐŊŅƒŅƒŅ…ĐŅĐŧŅĐģŅ‚ Ņ‚ĐžŅ…Đ¸Ņ€ĐŗĐžĐžĐŗ Ņ…Đ°Ņ€ŅƒŅƒĐģĐ°Ņ…ĐĸԝҀ ĐˇĐžĐŗŅĐžĐžŅ…ĐĸĐžĐŗĐģ҃҃ĐģĐ°Ņ…ĐĨŅƒŅ€Đ´Ķ¨ĐŧĐŊĶŠŅ…ĐžĐ´ĐžĐžĐŗĐ¸ĐšĐŊ ĐŗĐžŅ€Đ¸Đŧ: Đ‘Ō¯ĐŗĐ´Đ¸ĐšĐŗ Đ´Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐŊа ҃҃. Đ”Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐ°Ņ… ĐŗĐžŅ€Đ¸ĐŧŅ‹Đŗ Đ°ŅĐ°Đ°ĐŊа ҃҃/҃ĐŊŅ‚Ņ€Đ°Đ°ĐŊа ҃҃.ĐžĐ´ĐžĐžĐŗĐ¸ĐšĐŊ ĐŗĐžŅ€Đ¸Đŧ: АĐģĐ¸ĐšĐŗ ĐŊҌ ҇ Đ´Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐ°Ņ…ĐŗŌ¯Đš. Đ”Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐ°Ņ… ĐŗĐžŅ€Đ¸ĐŧŅ‹Đŗ Đ°ŅĐ°Đ°ĐŊа ҃҃/҃ĐŊŅ‚Ņ€Đ°Đ°ĐŊа ҃҃.ĐžĐ´ĐžĐžĐŗĐ¸ĐšĐŊ ĐŗĐžŅ€Đ¸Đŧ: ĐŅĐŗĐ¸ĐšĐŗ Đ´Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐŊа ҃҃. Đ”Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐ°Ņ… ĐŗĐžŅ€Đ¸ĐŧŅ‹Đŗ Đ°ŅĐ°Đ°ĐŊа ҃҃/҃ĐŊŅ‚Ņ€Đ°Đ°ĐŊа ҃҃.ĐŖŅ…Ņ€Đ°Đ°Ņ…Đ”Đ°Ņ…Đ¸ĐŊ Ņ‚ĐžĐŗĐģ҃҃ĐģĐ°Ņ… ŅĐ˛Ņ†ĐĸĐžŅ…Đ¸Ņ€ĐŗĐžĐžĐĸĐžĐŗĐģ҃҃ĐģĐ°ĐŗŅ‡Đ¸ĐšĐŊ ŅƒĐ´Đ¸Ņ€Đ´ĐģĐ°ĐŗŅ‹Đŗ Ņ…Đ°Ņ€ŅƒŅƒĐģĐ°Ņ…ĐĨĐžĐģĐ¸Ņ… ĐŗĐžŅ€Đ¸ĐŧŅ‹Đŗ Đ¸Đ´ŅĐ˛Ņ…ĐļŌ¯Ō¯ĐģŅŅ…ĐĨĐžĐģĐ¸Ņ… ĐŗĐžŅ€Đ¸ĐŧŅ‹Đŗ Đ¸Đ´ŅĐ˛Ņ…ĐŗŌ¯Đš йОĐģĐŗĐžŅ…Đ—ĐžĐŗŅĐžĐžŅ…VR ĐŗĐžŅ€Đ¸Đŧ%1$s, %2$s%1$.2f MbpsМоĐŊĐž%1$d × %2$dĐĨŅƒĐ˛Đ¸ĐģĐąĐ°Ņ€ĐĨааĐģŅ‚Ņ‚Đ°Đš Ņ‚Đ°ĐšĐģĐąĐ°Ņ€ĐĸаКĐģĐąĐ°Ņ€ĐŅĐŧŅĐģŅ‚ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Đ‘Đ°ĐšŅ…ĐŗŌ¯ĐšĐ”ŅƒŅƒĐĄŅ‚ĐĩŅ€ĐĩĐžĐžŅ€Ņ‡Đ¸ĐŊ Ņ‚ĐžĐšŅ€ĐŊŅ‹ Đ´ŅƒŅƒ5.1 ĐžŅ€Ņ‡Đ¸ĐŊ Ņ‚ĐžĐšŅ€ĐŊŅ‹ Đ´ŅƒŅƒ7.1 ĐžŅ€Ņ‡Đ¸ĐŊ Ņ‚ĐžĐšŅ€ĐŊŅ‹ Đ´ŅƒŅƒŌŽĐģ ĐŧŅĐ´ŅĐŗĐ´ŅŅ…ĐĸĐžĐ´ĐžŅ€Ņ…ĐžĐšĐŗŌ¯Đš (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ Rewind %d second ++ Rewind %d seconds ++ Enable subtitlesDisable subtitlesFast-forwardEnter fullscreenExit fullscreenHide player controlsNextHide additional settingsShow additional settingsPausePlaySpeedPreviousCurrent mode: Repeat all. Toggle repeat mode.Current mode: Repeat none. Toggle repeat mode.Current mode: Repeat one. Toggle repeat mode.RewindPlayback progressSettingsShow player controlsEnable shuffle modeDisable shuffle modeStopVR mode%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativeCCCommentarySupplementaryAutoNoneAudioStereoSurround sound5.1 surround sound7.1 surround soundUnknownUnknown (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Biasa ++ 1.25x ++ 1.5x ++ 2x ++ ++ Mundar laju %d saat ++ Mundar laju %d saat ++ ++ Mandir %d saat ++ Mandir %d saat ++ Dayakan sari kataLumpuhkan sari kataMundar lajuMasuk ke skrin penuhKeluar dari skrin penuhSembunyikan kawalan pemainSeterusnyaSembunyikan tetapan tambahanTunjukkan tetapan tambahanJedaMainKelajuanSebelumnyaMod semasa: Ulang semua. Togol mod ulang.Mod semasa: Tidak berulang. Togol mod ulang.Mod semasa: Ulang satu. Togol mod ulang.MandirKemajuan main balikTetapanTunjukkan kawalan pemainDayakan mod rombakLumpuhkan mod rombakBerhentiMod VR%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternatifSKUlasanTambahanAutomatikTiadaAudioStereoBunyi kelilingBunyi keliling 5.1Bunyi keliling 7.1Tidak diketahuiTidak diketahui (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ æ­Ŗå¸¸ ++ 1.25x ++ 1.5x ++ 2x ++ ++ åŋĢčŊ‰ %d į§’ ++ åŋĢčŊ‰ %d į§’ ++ ++ 倒å¸ļ %d į§’ ++ 倒å¸ļ %d į§’ ++ å•Ÿį”¨å­—åš•åœį”¨å­—åš•å‘å‰åŋĢčŊ‰é€˛å…Ĩ全čžĸ嚕關閉全čžĸåš•éšąč—æ’­æ”žå™¨æŽ§åˆļ項įšŧįēŒéšąč—å…ļäģ–č¨­åŽšéĄ¯į¤ēå…ļäģ–設åޚæšĢ停播攞速åēĻčŋ”回åޜåŽļå˜…æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žæ‰€æœ‰é …į›Žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚åޜåŽļå˜…æ¨Ąåŧīŧšå””é‡č¤‡æ’­æ”žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚åޜåŽļå˜…æ¨Ąåŧīŧšé‡č¤‡æ’­æ”žä¸€å€‹é …į›Žã€‚čŊ‰åšé‡č¤‡æ’­æ”žæ¨Ąåŧã€‚倒čŊ‰æ’­æ”žé€˛åēĻč¨­åŽšéĄ¯į¤ē播攞器控åˆļé …å•Ÿį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧåœį”¨éš¨æŠŸæ’­æ”žæ¨Ąåŧåœæ­ĸ虛æ“Ŧįžå¯Ļæ¨Ąåŧ%1$s、%2$s%1$.2f Mbpså–Žč˛é“%1$d × %2$då…ļäģ–å­—åš•čŠ•čĢ–é™„åŠ č‡Ēå‹•į„ĄéŸŗč¨ŠįĢ‹é̔聞ᒰčŋ´įĢ‹é̔聞5.1 į’°čŋ´įĢ‹é̔聞7.1 į’°čŋ´įĢ‹éĢ”č˛ä¸æ˜Žä¸æ˜Ž (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ធម្មតážļ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ខážļ​ទៅមážģខ %d វិនážļទី ++ ខážļ​ទៅមážģខ %d វិនážļទី ++ ++ ខážļ​ថយក្រោយ %d វិនážļទី ++ ខážļ​ថយក្រោយ %d វិនážļទី ++ បើកážĸក្សររត់បិទážĸក្សររត់ទៅ​មážģខ​​​រហ័សចážŧលážĸេក្រង់ពេញចážļកចេញពីážĸេក្រង់ពេញលážļក់កážļរគ្រប់គ្រងកម្មវិធីចážļក់ចម្រៀងបន្ទážļប់លážļក់កážļរកំណត់​បន្ថែមបង្ហážļញកážļរកំណត់​បន្ថែមផ្ážĸážļកលេងល្បážŋនមážģនមážģខងážļរបច្ចážģប្បន្ន៖ ចážļក់ឡើងវិញទážļំងážĸស់។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។មážģខងážļរបច្ចážģប្បន្ន៖ មិនចážļក់ឡើងវិញ។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។មážģខងážļរបច្ចážģប្បន្ន៖ ចážļក់ឡើងវិញមážŊយ។ បិទ/បើកមážģខងážļរចážļក់ឡើងវិញ។ខážļ​ថយ​ក្រោយកážļរចážļក់​កំពážģង​ដំណើរកážļរកážļរកំណត់បង្ហážļញកážļរគ្រប់គ្រងកម្មវិធីចážļក់ចម្រៀងបើក​មážģខងážļរច្របល់បិទ​មážģខងážļរច្របល់ឈប់មážģខងážļរ VR%1$s, %2$s%1$.2f Mbpsម៉ážŧ​ណážŧ%1$d × %2$dជំនážŊសážĸក្សររត់កážļរážĸត្ថážļធិប្បážļយបំពេញបន្ថែមស្វ័យប្រវត្តិគ្មážļនសំឡេងស្តេរ៉េážĸážŧសំឡេង​រងំសំឡេង​រងំ​ខ្នážļត 5.1សំឡេង​រងំ​ខ្នážļត 7.1មិនស្គážļល់មិនស្គážļល់ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ ÕÕ¸ÕžÕ¸Ö€ÕĄÕ¯ÕĄÕļ ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ ÕĄÕŧÕĄÕģ ÕŋÕĄÕŦ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ ÕĄÕŧÕĄÕģ ÕŋÕĄÕŦ ++ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ Õ°ÕĨÕŋ ÕŋÕĄÕŦ ++ %d ÕžÕĄÕĩրկÕĩÕĄÕļ Õ°ÕĨÕŋ ÕŋÕĄÕŦ ++ ՄÕĢÕĄÖÕļÕĨÕŦ ÕĨÕļÕŠÕĄÕŖÖ€ÕĨÖ€Õ¨ÔąÕļÕģÕĄÕŋÕĨÕŦ ÕĨÕļÕŠÕĄÕŖÖ€ÕĨÖ€Õ¨ÔąÕŧÕĄÕģՄÕŋÕļÕĨÕŦ ÕŦÕĢÕĄÕ§Õ¯Ö€ÕĄÕļ ÕŧÕĨÕĒÕĢմԴուրÕŊ ÕŖÕĄÕŦ ÕŦÕĢÕĄÕ§Õ¯Ö€ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´ÕĢÖÔšÕĄÖ„ÖÕļÕĨÕŦ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕšÕĢ Õ¯ÕĄÕŧÕĄÕžÕĄÖ€ÕļÕĨÖ€Õ¨ÔąÕŧÕĄÕģÔšÕĄÖ„ÖÕļÕĨÕŦ ÕŦÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕš Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨÖ€Õ¨Õ‘Õ¸Ö‚ÖÕĄÕ¤Ö€ÕĨÕŦ ÕŦÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕš Õ¯ÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨÖ€Õ¨Ô´ÕĄÕ¤ÕĄÖ€ÕĨցÕļÕĨÕŦÕ†ÕžÕĄÕŖÕĄÖ€Õ¯ÕĨÕŦÔąÖ€ÕĄÕŖÕ¸Ö‚ÕŠÕĩուÕļՀÕĨÕŋÔ¸ÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢÔŋրկÕļÕĨÕŦ ÕĸÕ¸ÕŦորըÂģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ԸÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢՉկրկÕļÕĨÕŦÂģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ԸÕļÕŠÕĄÖÕĢÕ¯ ÕŧÕĨÕĒÕĢմը՝ ÂĢÔŋրկÕļÕĨÕŦ Õ´ÕĨÕ¯Õ¨Âģ։ ՓոխÕĨÕŦ կրկÕļÕ¸Ö‚ÕŠÕĩÕĄÕļ ÕŧÕĨÕĒÕĢմը։ՀÕĨÕŋÕ†ÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ Õ¨ÕļÕŠÕĄÖÖ„Õ¨ÔŋÕĄÖ€ÕŖÕĄÕžÕ¸Ö€Õ¸Ö‚Õ´ÕļÕĨÖ€Õ‘Õ¸Ö‚ÖÕĄÕ¤Ö€ÕĨÕŦ ÕļÕžÕĄÕŖÕĄÖ€Õ¯ÕšÕĢ Õ¯ÕĄÕŧÕĄÕžÕĄÖ€ÕļÕĨրըՄÕĢÕĄÖÕļÕĨÕŦ Õ­ÕĄÕŧÕ¨ ÕļÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´Õ¨ÔąÕļÕģÕĄÕŋÕĨÕŦ Õ­ÕĄÕŧÕ¨ ÕļÕžÕĄÕŖÕĄÖ€Õ¯Õ´ÕĄÕļ ÕŧÕĨÕĒÕĢÕ´Õ¨ÔŋÕĄÕļÕŖÕļÕĨցÕļÕĨÕŦVR ÕŧÕĨÕĒÕĢÕ´%1$s, %2$s%1$.2f ՄÕĸÕĢÕŠ/ÕžÕ„Õ¸ÕļÕ¸%1$d × %2$dÔąÕĩÕŦÕ¨ÕļÕŋÖ€ÕĄÕļÖ„ÕĄÕĩÕĢÕļÔĩÕļÕŠÕĄÕŖÖ€ÕĨրՄÕĨÕ¯ÕļÕĄÕĸÕĄÕļÕ¸Ö‚ÕŠÕĩուÕļÕļÕĨրÔŧÖ€ÕĄÖÕ¸Ö‚ÖÕĢÕšÔąÕžÕŋÕ¸Õ´ÕĄÕŋÕˆÕš Õ´ÕĨÕ¯Õ¨ÔąÕ¸Ö‚Õ¤ÕĢոՍÕŋÕĨրÕĨÕ¸ÔžÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļ5․1 ÕŽÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļ7․1 ÕŽÕĄÕžÕĄÕŦÕĄÕĩÕĢÕļ ÕąÕĄÕĩÕļÔąÕļÕ°ÕĄÕĩÕŋÔąÕļÕ°ÕĄÕĩÕŋ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ መደበኛ ++ 1.25x ++ 1.5x ++ 2x ++ ++ በ%d ሰከንá‹ļá‰Ŋ በፍáŒĨነá‰ĩ ወደፊá‰ĩ á‹Ģáˆŗáˆá‰ ++ በ%d ሰከንá‹ļá‰Ŋ በፍáŒĨነá‰ĩ ወደፊá‰ĩ á‹Ģáˆŗáˆá‰ ++ ++ በ%d ሰከንá‹ļá‰Ŋ ወደኋላ ይመልሱ ++ በ%d ሰከንá‹ļá‰Ŋ ወደኋላ ይመልሱ ++ የግርጌ áŒŊሑፎá‰Ŋን አንቃየግርጌ áŒŊሑፎá‰Ŋን አሰናክልበፍáŒĨነá‰ĩ áŠ áˆŗáˆáá‹ˆá‹° ሙሉ ማá‹Ģ ገፅ áŒá‰ŖáŠ¨áˆ™áˆ‰ ማá‹ĢገáŒŊ á‹áŒŖá‹¨á‰°áŒĢዋá‰Ŋ áˆ˜á‰†áŒŖáŒ áˆĒá‹Ģዎá‰Ŋን ደá‰Ĩá‰…á‰€áŒŖá‹­á‰°áŒ¨áˆ›áˆĒ ቅንá‰Ĩሎá‰Ŋን ይደá‰ĨቁተጨማáˆĒ ቅንá‰Ĩሎá‰Ŋን á‹Ģáˆŗá‹Šáˆ‹áá‰ŗ አቁምአáŒĢውá‰ĩፍáŒĨነá‰ĩá‰€á‹ŗáˆšá‹¨áŠ áˆáŠ• áˆáŠá‰ŗáĻ ሁሉም á‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸየአሁኑ áˆáŠá‰ŗáĻ ምንም አá‰ĩá‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸየአሁን áˆáŠá‰ŗáĻ አንዱን á‹ĩገምáĸ የመá‹ĩገም áˆáŠá‰ŗáŠ• ቀá‹Ģይርáĸወደኋላ መልáˆĩየመልáˆļ ማáŒĢወá‰ĩ ሂደá‰ĩቅንá‰Ĩሎá‰ŊየተáŒĢዋá‰Ŋ áˆ˜á‰†áŒŖáŒ áˆĒá‹Ģዎá‰Ŋን áŠ áˆŗá‹­á‹¨á‰ á‹á‹ áˆáŠá‰ŗáŠ• አንቃየበውዝ áˆáŠá‰ŗáŠ• አሰናክልአቁምየá‰Ēአር áˆáŠá‰ŗ%1$sáŖ %2$s%1$.2f ሜá‰Ĩáˆĩሞኖ%1$d × %2$dተለዋጭየተዘጉ የመግለáŒĢ áŒŊሑፎá‰ŊáŒĨáŠ“á‰ŗá‹Šá‰°áŒ¨áˆ›áˆĒáˆĢáˆĩ-ሰርምንምáŠĻዲዮáˆĩቲáˆĒዮየዙáˆĒá‹Ģ á‹ĩምፅ5.1 የዙáˆĒá‹Ģ á‹ĩምፅ7.1 የዙáˆĒá‹Ģ á‹ĩምፅá‹Ģáˆá‰ŗá‹ˆá‰€á‹Ģáˆá‰ŗá‹ˆá‰ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Đ—Đ˛Ņ‹Ņ‡Đ°ĐšĐŊĐ°Ņ ++ 1,25x ++ 1,5x ++ 2Ņ… ++ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСад ĐŊа %dÂ ŅĐĩĐē҃ĐŊĐ´Ņ‹ ++ ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ŅŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹Đ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ŅŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹ĐŸĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ҃ĐŋĐĩŅ€Đ°Đ´ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ĐŋĐžŅžĐŊĐ°ŅĐēŅ€Đ°ĐŊĐŊŅ‹ Ņ€ŅĐļŅ‹ĐŧĐ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ ĐŋĐžŅžĐŊĐ°ŅĐēŅ€Đ°ĐŊĐŊŅ‹ Ņ€ŅĐļŅ‹ĐŧĐĄŅ…Đ°Đ˛Đ°Ņ†ŅŒ ŅĐģĐĩĐŧĐĩĐŊ҂ҋ ĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊĐŊŅ ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐģҌĐŊŅ–ĐēаДаĐģĐĩĐšĐĄŅ…Đ°Đ˛Đ°Ņ†ŅŒ Đ´Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹Ņ ĐŊаĐģĐ°Đ´Ņ‹ĐŸĐ°ĐēĐ°ĐˇĐ°Ņ†ŅŒ Đ´Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹Ņ ĐŊаĐģĐ°Đ´Ņ‹ĐŸĐ°ŅžĐˇĐ°Đ“ŅƒĐģŅŅ†ŅŒĐĨŅƒŅ‚ĐēĐ°ŅŅ†ŅŒĐĐ°ĐˇĐ°Đ´ĐĻŅĐŋĐĩŅ€: ĐŋĐ°ŅžŅ‚Đ°Ņ€Đ°Ņ†ŅŒ ŅƒŅŅ‘. ЗĐŧŅĐŊŅ–Ņ†ŅŒ.ĐĻŅĐŋĐĩŅ€: ĐąĐĩС ĐŋĐ°ŅžŅ‚ĐžŅ€Đ°Ņž. ЗĐŧŅĐŊŅ–Ņ†ŅŒ.ĐĻŅĐŋĐĩŅ€: ĐŋĐ°ŅžŅ‚Đ°Ņ€Đ°Ņ†ŅŒ Ņ„Ņ€Đ°ĐŗĐŧĐĩĐŊŅ‚. ЗĐŧŅĐŊŅ–Ņ†ŅŒ.ПĐĩŅ€Đ°ĐŧĐ°Ņ‚Đ°Ņ†ŅŒ ĐŊаСадĐĨОд ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐŊĐŊŅĐĐ°ĐģĐ°Đ´Ņ‹ĐŸĐ°ĐēĐ°ĐˇĐ°Ņ†ŅŒ ŅĐģĐĩĐŧĐĩĐŊ҂ҋ ĐēŅ–Ņ€Đ°Đ˛Đ°ĐŊĐŊŅ ĐŋŅ€Đ°ĐšĐŗŅ€Đ°Đ˛Đ°ĐģҌĐŊŅ–ĐēĐ°ĐŖĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ Ņ€ŅĐļŅ‹Đŧ ĐŋĐĩŅ€Đ°ĐŧĐĩŅˆĐ˛Đ°ĐŊĐŊŅĐ’Ņ‹ĐēĐģŅŽŅ‡Ņ‹Ņ†ŅŒ Ņ€ŅĐļŅ‹Đŧ ĐŋĐĩŅ€Đ°ĐŧĐĩŅˆĐ˛Đ°ĐŊĐŊŅĐĄĐŋŅ‹ĐŊŅ–Ņ†ŅŒVR-Ņ€ŅĐļŅ‹Đŧ%1$s, %2$s%1$.2fÂ ĐœĐąŅ–Ņ‚/ŅĐœĐžĐŊа%1$d × %2$dАĐģŅŒŅ‚ŅŅ€ĐŊĐ°Ņ‚Ņ‹ŅžĐŊŅ‹ СаĐŋŅ–ŅĐĄŅƒĐąŅ†Ņ–Ņ‚Ņ€Ņ‹ĐšĐ°ĐŧĐĩĐŊŅ‚Đ°Ņ€Ņ‹Ņ–Đ”Đ°Đ´Đ°Ņ‚ĐēĐžĐ˛Ņ‹ СаĐŋŅ–ŅĐŅžŅ‚Đ°ĐŧĐ°Ņ‚Ņ‹Ņ‡ĐŊĐ°ĐŅĐŧĐ°ĐŅžĐ´Ņ‹ŅĐĄŅ‚ŅŅ€ŅĐ°ĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐēĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐē 5.1ĐĐąâ€™Ņ‘ĐŧĐŊŅ‹ ĐŗŅƒĐē 7.1НĐĩĐ˛ŅĐ´ĐžĐŧаНĐĩĐ˛ŅĐ´ĐžĐŧа (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ #98000000#B3000000#b0000000#FFF4F3F0#80808080#ffffff#B3ffffff32dp64dp12dp4dp14sp5dp2dp18dp52dp9dp52dp71dp150dp52dp24dp14sp8dp12sp24dp48dp2dp12dp12dp48dp60dp10dp10dp0dp4dp2dp14dp10dp48dp52dp48dp@drawable/exo_icon_fastforward@drawable/exo_icon_fullscreen_enter@drawable/exo_icon_fullscreen_exit@drawable/exo_icon_next@drawable/exo_icon_pause@drawable/exo_icon_play@drawable/exo_icon_previous@drawable/exo_icon_repeat_all@drawable/exo_icon_repeat_off@drawable/exo_icon_repeat_one@drawable/exo_icon_rewind@drawable/exo_icon_shuffle_off@drawable/exo_icon_shuffle_on@drawable/exo_icon_vr@drawable/exo_icon_fastforward@drawable/exo_icon_next@drawable/exo_icon_pause@drawable/exo_icon_play@drawable/exo_icon_previous@drawable/exo_icon_rewind@drawable/exo_icon_circular_play@drawable/exo_icon_stop@drawable/exo_ic_audiotrack@drawable/exo_ic_check@drawable/exo_ic_forward@drawable/exo_ic_fullscreen_enter@drawable/exo_ic_fullscreen_exit@drawable/exo_ic_skip_next@drawable/exo_ic_chevron_left@drawable/exo_ic_chevron_right@drawable/exo_ic_pause_circle_filled@drawable/exo_ic_play_circle_filled@drawable/exo_ic_skip_previous@drawable/exo_icon_repeat_all@drawable/exo_icon_repeat_off@drawable/exo_icon_repeat_one@drawable/exo_ic_rewind@drawable/exo_ic_settings@drawable/exo_icon_shuffle_off@drawable/exo_icon_shuffle_on@drawable/exo_icon_fastforward@drawable/exo_icon_rewind@drawable/exo_ic_speed@drawable/exo_ic_subtitle_off@drawable/exo_ic_subtitle_on@drawable/exo_icon_vr33100 ++ Fast forward %d second ++ Fast forward %d seconds ++ ++ Rewind %d second ++ Rewind %d seconds ++ Enable subtitlesDisable subtitles%1$.2fxFast forwardEnter fullscreenExit fullscreenHide player controlsNextHide additional settingsShow additional settingsPausePlaySpeedPreviousCurrent mode: Repeat all. Toggle repeat mode.Current mode: Repeat none. Toggle repeat mode.Current mode: Repeat one. Toggle repeat mode.RewindPlayback progressSettingsShow player controlsEnable shuffle modeDisable shuffle modeStop00:00:00VR mode%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternateCCCommentarySupplementaryAutoNoneAudioStereoSurround sound5.1 surround sound7.1 surround soundUnknownUnknown (%1$s) ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d soniya oldinga ++ %d soniya oldinga ++ ++ %d soniya orqaga ++ %d soniya orqaga ++ Taglavhalarni yoqishTaglavhalarni faolsizlantirishOldinga o‘tkazishButun ekran rejimiga kirishButun ekran rejimidan chiqishPleyer tugmalarini berkitishKeyingisiQoĘģshimcha sozlamalarni yashirishQoĘģshimcha sozlamalarni chiqarishPauzaIjroTezlikAvvalgisiJoriy rejim: Barchasi takrorlanadi. Takrorlash rejimiga oĘģting.Joriy rejim: Hech qaysi takrorlanmaydi. Takrorlash rejimiga oĘģting.Joriy rejim: Bittasi takrorlanadi. Takrorlash rejimiga oĘģting.Orqaga qaytarishIjro rivojiSozlamalarPleyer tugmalarini chiqarishTasodifiy rejimni yoqingTasodifiy rejimni faolsizlantiringTo‘xtatishVR rejimi%1$s, %2$s%1$.2f Mbit/sMono%1$d × %2$dMuqobilTaglavhalarSharhQoĘģshimchaAvtomatikHech qandayAudioStereoQamrovli ovoz5.1 qamrovli ovoz7.1 qamrovli ovozNoaniqNotanish (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avancer rapidement de %d seconde ++ Avancer rapidement de %d secondes ++ ++ Reculer de %d seconde ++ Reculer de %d secondes ++ Activer les sous-titresDÊsactiver les sous-titresAvance rapideActivez le mode plein ÊcranQuittez le mode plein ÊcranMasquer les commandes du lecteurSuivantMasquer les autres paramètresAfficher d\'autres paramètresPauseLireVitessePrÊcÊdentMode actuel : tout rÊpÊter. Basculer le mode rÊpÊtition.Mode actuel : aucune rÊpÊtition. Basculer le mode rÊpÊtition.Mode actuel : rÊpÊter une fois. Basculer le mode rÊpÊtition.Retour arrièreProgression de la lectureParamètresAfficher les commandes du lecteurActiver le mode lecture alÊatoireDÊsactiver le mode lecture alÊatoireArrÃĒterMode RV%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dAutre versionSous-titres codÊsCommentairesSupplÊmentaireAutoAucunAudioStÊrÊoSon ambiophoniqueSon ambiophonique 5.1Son ambiophonique 7.1InconnuInconnu (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normalna ++ 1,25x ++ 1,5x ++ 2x ++ ++ Przewiń do przodu o %d sekundę ++ Przewiń do przodu o %d sekundy ++ Przewiń do przodu o %d sekund ++ Przewiń do przodu o %d sekundy ++ ++ Przewiń do tyłu o %d sekundę ++ Przewiń do tyłu o %d sekundy ++ Przewiń do tyłu o %d sekund ++ Przewiń do tyłu o %d sekundy ++ Włącz napisyWyłącz napisyPrzewiń do przoduOtwÃŗrz pełny ekranZamknij pełny ekranUkryj elementy sterujące odtwarzaczaNastępnyUkryj ustawienia dodatkowePokaÅŧ ustawienia dodatkoweWstrzymajOdtwÃŗrzSzybkośćPoprzedniBieÅŧący tryb: PowtÃŗrz wszystkie. Przełącz na tryb powtarzania.BieÅŧący tryb: Nie powtarzaj. Przełącz na tryb powtarzania.BieÅŧący tryb: PowtÃŗrz jeden. Przełącz na tryb powtarzania.Przewiń do tyłuPostęp odtwarzaniaUstawieniaPokaÅŧ elementy sterujące odtwarzaczaWłącz tryb odtwarzania losowegoWyłącz tryb odtwarzania losowegoZatrzymajTryb VR%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dWersja alternatywnaNapisyKomentarzMateriały dodatkoweAutomatycznieBrakDÅēwiękStereoDÅēwięk przestrzennySystem dÅēwięku przestrzennego 5.1System dÅēwięku przestrzennego 7.1NieznanyNieznane (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ BÃŦnh thưáģng ++ 1,25x ++ 1,5x ++ 2x ++ ++ Tua nhanh %d giÃĸy ++ Tua nhanh %d giÃĸy ++ ++ Tua láēĄi %d giÃĸy ++ Tua láēĄi %d giÃĸy ++ Báē­t pháģĨ đáģTáē¯t pháģĨ đáģTua điChuyáģƒn sang cháēŋ đáģ™ toàn màn hÃŦnhThoÃĄt kháģi cháēŋ đáģ™ toàn màn hÃŦnháē¨n cÃĄc nÃēt điáģu khiáģƒn trÃŦnh phÃĄtTiáēŋp theoáē¨n cÃĄc tÚy cháģn cài đáēˇt báģ• sungHiáģ‡n cÃĄc tÚy cháģn cài đáēˇt báģ• sungTáēĄm dáģĢngPhÃĄtTáģ‘c đáģ™Trưáģ›cCháēŋ đáģ™ hiáģ‡n táēĄi: Láēˇp láēĄi táēĨt cáēŖ náģ™i dung. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi.Cháēŋ đáģ™ hiáģ‡n táēĄi: Không láēˇp láēĄi. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi.Cháēŋ đáģ™ hiáģ‡n táēĄi: Láēˇp láēĄi máģ™t náģ™i dung. Báē­t/táē¯t cháēŋ đáģ™ láēˇp láēĄi.Tua láēĄiTiáēŋn trÃŦnh phÃĄtCài đáēˇtHiáģƒn tháģ‹ cÃĄc nÃēt điáģu khiáģƒn trÃŦnh phÃĄtBáē­t cháēŋ đáģ™ tráģ™n bàiTáē¯t cháēŋ đáģ™ tráģ™n bàiDáģĢngCháēŋ đáģ™ tháģąc táēŋ áēŖo%1$s, %2$s%1$.2f Mb/giÃĸyÄÆĄn Ãĸm%1$d × %2$dThay tháēŋPháģĨ đáģBÃŦnh luáē­nBáģ• sungTáģą Ä‘áģ™ngKhôngÂm thanhÂm thanh náģ•iÂm thanh vÃ˛mÂm thanh vÃ˛m 5.1Âm thanh vÃ˛m 7.1Không xaˁc điĖŖnhKhông xÃĄc đáģ‹nh (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normale ++ 1,25x ++ 1,5x ++ 2x ++ ++ Shpejt pÃĢrpara %d sekondÃĢ ++ Shpejt pÃĢrpara %d sekonda ++ ++ Shko prapa %d sekondÃĢ ++ Shko prapa %d sekonda ++ Aktivizo titratÇaktivizo titratPÃĢrparo me shpejtÃĢsiHyr nÃĢ luajtjen me ekran tÃĢ plotÃĢDil nga ekrani i plotÃĢFshih komandat e luajtÃĢsitParaFshih cilÃĢsimet shtesÃĢShfaq cilÃĢsimet shtesÃĢPauzÃĢLuajShpejtÃĢsiaPrapaModaliteti aktual: PÃĢrsÃĢrit tÃĢ gjitha. Aktivizo/çaktivizo modalitetin e pÃĢrsÃĢritjes.Modaliteti aktual: Mos pÃĢrsÃĢrit asnjÃĢ. Aktivizo/çaktivizo modalitetin e pÃĢrsÃĢritjes.Modaliteti aktual: PÃĢrsÃĢrit njÃĢ. Aktivizo/çaktivizo modalitetin e pÃĢrsÃĢritjes.RiktheProgresi i luajtjesCilÃĢsimetShfaq komandat e luajtÃĢsitAktivizo modalitetin e pÃĢrzierjesÇaktivizo modalitetin e pÃĢrzierjesNdaloModaliteti RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativeTitratKomentePlotÃĢsueseAutomatikeAsnjÃĢAudioStereoTingulli rrethuesTingull rrethues 5.1Tingull rrethues 7.1E panjohurE panjohur (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Spola framÃĨt %d sekund ++ Spola framÃĨt %d sekunder ++ ++ Spola tillbaka %d sekund ++ Spola tillbaka %d sekunder ++ Aktivera undertexterInaktivera undertexterSnabbspola framÃĨtAktivera helskärmLämna helskärmDÃļlj spelarkontrollerNästaDÃļlj ytterligare inställningarVisa ytterligare inställningarPausaSpela uppHastighetFÃļregÃĨendeAktuellt läge: Upprepa alla. Ändra läge fÃļr upprepning.Aktuellt läge: Upprepa inga. Ändra läge fÃļr upprepning.Aktuellt läge: Upprepa en. Ändra läge fÃļr upprepning.Spola tillbakaUppspelningsfÃļrloppInställningarVisa spelarkontrollerAktivera blandningslägetInaktivera blandningslägetStoppaVR-läge%1$s, %2$s%1$.2f Mbit/sMono%1$d × %2$dAlternativUndertexterKommentarTilläggAutomatisktIngenLjudStereoSurroundljud5.1-kanaligt surroundljud7.1-kanaligt surroundljudOkäntOkänd (%1$s) ++ 0,25-kratna ++ 0,5-kratna ++ 0,75-kratna ++ Običajna ++ 1,25-kratna ++ 1,5-kratna ++ 2-kratna ++ ++ Premik naprej za %d sekundo ++ Premik naprej za %d sekundi ++ Premik naprej za %d sekunde ++ Premik naprej za %d sekund ++ ++ Premik nazaj za %d sekundo ++ Premik nazaj za %d sekundi ++ Premik nazaj za %d sekunde ++ Premik nazaj za %d sekund ++ Omogočanje podnapisovOnemogočanje podnapisovPrevijanje naprejVstop v celozaslonski načinIzhod iz celozaslonskega načinaSkrivanje kontrolnikov predvajalnikaNaprejSkrivanje dodatnih nastavitevPrikaz dodatnih nastavitevZaustavitevPredvajanjeHitrostNazajTrenutni način: Ponovi vse. Preklopite način ponavljanja.Trenutni način: Brez ponavljanja. Preklopite način ponavljanja.Trenutni način: Ponovi eno. Preklopite način ponavljanja.Previjanje nazajPotek predvajanjaNastavitvePrikaz kontrolnikov predvajalnikaOmogočanje načina naključnega predvajanjaOnemogočanje načina naključnega predvajanjaUstavitevNačin VR%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dDodatni posnetekPodnapisiKomentarDodatekSamodejnoNičZvočni posnetkiStereoProstorski zvokProstorski zvok 5.1Prostorski zvok 7.1NeznanoNeznano (%1$s) ++ 0,25 × ++ 0,5 × ++ 0,75 × ++ NormÃĄlne ++ 1,25 × ++ 1,5 × ++ 2 × ++ ++ PretočiÅĨ dopredu o %d sekundu ++ PretočiÅĨ dopredu o %d sekundy ++ PretočiÅĨ dopredu o %d sekundy ++ PretočiÅĨ dopredu o %d sekÃēnd ++ ++ PretočiÅĨ späÅĨ o %d sekundu ++ PretočiÅĨ späÅĨ o %d sekundy ++ PretočiÅĨ späÅĨ o %d sekundy ++ PretočiÅĨ späÅĨ o %d sekÃēnd ++ PovoliÅĨ titulkyZakÃĄzaÅĨ titulkyPretočiÅĨ dopreduPrejsÅĨ do reÅžimu celej obrazovkyUkončiÅĨ reÅžim celej obrazovkySkryÅĨ ovlÃĄdacie prvky prehrÃĄvačaĎalÅĄiaSkryÅĨ ďalÅĄie nastaveniaZobraziÅĨ ďalÅĄie nastaveniaPozastaviÅĨPrehraÅĨRÃŊchlosÅĨPredchÃĄdzajÃēcaAktuÃĄlny reÅžim: OpakovaÅĨ vÅĄetky. PrepnÃēÅĨ reÅžim opakovaniaAktuÃĄlny reÅžim: NeopakovaÅĨ. PrepnÃēÅĨ reÅžim opakovaniaAktuÃĄlny reÅžim: OpakovaÅĨ jedno. PrepnÃēÅĨ reÅžim opakovaniaPretočiÅĨ späÅĨPriebeh prehrÃĄvaniaNastaveniaZobraziÅĨ ovlÃĄdacie prvky prehrÃĄvačaZapnÃēÅĨ reÅžim nÃĄhodnÊho prehrÃĄvaniaVypnÃēÅĨ reÅžim nÃĄhodnÊho prehrÃĄvaniaZastaviÅĨreÅžim VR%1$s, %2$s%1$.2f MB/sMono%1$d × %2$dAlternatívna stopaSkrytÊ titulkyKomentÃĄrDoplnkovÃĄ stopaAutomatickyÅŊiadneZvukStereoPriestorovÃŊ zvukPriestorovÃŊ zvuk 5.1PriestorovÃŊ zvuk 7.1NeznÃĄmeNeznÃĄme (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ØšØ§Ų… ++ 1.25x ++ 1.5x ++ 2X ++ ++ %d ØŗÛŒÚŠŲ†Úˆ ØĒÛŒØ˛ÛŒ ØŗÛ’ ŲØ§ØąŲˆØąÚˆ ÚŠØąÛŒÚē ++ %d ØŗÛŒÚŠŲ†ÚˆØ˛ ØĒÛŒØ˛ÛŒ ØŗÛ’ ŲØ§ØąŲˆØąÚˆ ÚŠØąÛŒÚē ++ ++ %d ØŗÛŒÚŠŲ†Úˆ ØąÛŒŲˆØ§ØĻŲ†Úˆ ÚŠØąÛŒÚē ++ %d ØŗÛŒÚŠŲ†ÚˆØ˛ ØąÛŒŲˆØ§ØĻŲ†Úˆ ÚŠØąÛŒÚē ++ ØŗØ¨ ŲšØ§ØĻŲšŲ„Ø˛ ÚŠŲˆ ŲØšØ§Ų„ ÚŠØąÛŒÚēØŗØ¨ ŲšØ§ØĻŲšŲ„Ø˛ ÚŠŲˆ ØēÛŒØą ŲØšØ§Ų„ ÚŠØąÛŒÚēØĒÛŒØ˛ÛŒ ØŗÛ’ ŲØ§ØąŲˆØąÚˆ ÚŠØąÛŒÚēŲžŲˆØąÛŒ Ø§ØŗÚŠØąÛŒŲ† Ų…ÛŒÚē Ø¯Ø§ØŽŲ„ ÛŲˆÚēŲžŲˆØąÛŒ Ø§ØŗÚŠØąÛŒŲ† ØŗÛ’ Ø¨Ø§ÛØą Ų†ÚŠŲ„ÛŒÚēŲžŲ„ÛŒØĻØą ÚŠŲ†ŲšØąŲˆŲ„Ø˛ Ú†ÚžŲžØ§ØĻیÚēØĸگےاØļØ§ŲÛŒ ØĒØąØĒیباØĒ Ú†ÚžŲžØ§ØĻیÚ稧ØļØ§ŲÛŒ ØĒØąØĒیباØĒ دڊڞاØĻیÚēŲ…ŲˆŲ‚ŲˆŲ ÚŠØąÛŒÚēÚ†Ų„Ø§ØĻیÚēØąŲØĒØ§ØąŲžÛŒÚ†ÚžÛ’Ų…ŲˆØŦŲˆØ¯Û Ų…ŲˆÚˆ: ØŗØ¨ÚžÛŒ Ø¯ÛØąØ§ØĻیÚē۔ ØąŲžÛŒŲš Ų…ŲˆÚˆ ŲšŲˆÚ¯Ų„ ÚŠØąÛŒÚēÛ”Ų…ŲˆØŦŲˆØ¯Û Ų…ŲˆÚˆ: کچھ Ų†Û Ø¯ÛØąØ§ØĻیÚē۔ ØąŲžÛŒŲš Ų…ŲˆÚˆ ŲšŲˆÚ¯Ų„ ÚŠØąÛŒÚēÛ”Ų…ŲˆØŦŲˆØ¯Û Ų…ŲˆÚˆ: ایڊ Ø¯ÛØąØ§ØĻیÚē۔ ØąŲžÛŒŲš Ų…ŲˆÚˆ ŲšŲˆÚ¯Ų„ ÚŠØąÛŒÚēÛ”ØąÛŒŲˆØ§ØĻÛŒŲ†Úˆ ÚŠØąÛŒÚēŲžŲ„Û’ بیڊ ÚŠÛŒ ŲžÛŒØ´ ØąŲØĒØĒØąØĒیباØĒŲžŲ„ÛŒØĻØą ÚŠŲ†ŲšØąŲˆŲ„Ø˛ دڊڞاØĻیÚ稴؁؄ Ų…ŲˆÚˆ ÚŠŲˆ ŲØšØ§Ų„ ÚŠØąÛŒÚ稴؁؄ Ų…ŲˆÚˆ ÚŠŲˆ ØēÛŒØą ŲØšØ§Ų„ ÚŠØąÛŒÚēØąŲˆÚŠÛŒÚēVR Ų…ŲˆÚˆ%1$s، %2$s%1$.2f MbpsŲ…ŲˆŲ†Ųˆ%1$d × %2$dŲ…ØĒØ¨Ø§Ø¯Ų„ØŗØ¨ ŲšØ§ØĻŲšŲ„Ø˛ØĒبØĩØąÛØ§ØļØ§ŲÛŒØŽŲˆØ¯ÚŠØ§ØąÚŠŲˆØĻی Ų†ÛÛŒÚēØĸÚˆÛŒŲˆØ§ØŗŲšÛŒØąÛŒŲˆŲ…Ø­ÛŒØˇ ØĸŲˆØ§Ø˛5.1 Ų…Ø­ÛŒØˇ ØĸŲˆØ§Ø˛7.1 Ų…Ø­ÛŒØˇ ØĸŲˆØ§Ø˛Ų†Ø§Ų…ØšŲ„ŲˆŲ…Ų†Ø§Ų…ØšŲ„ŲˆŲ… (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Ya kawaida ++ 1.25x ++ 1.5x ++ 2x ++ ++ Sogeza mbele haraka kwa sekunde %d ++ Sogeza mbele haraka kwa sekunde %d ++ ++ Rudisha nyuma kwa sekunde %d ++ Rudisha nyuma kwa sekunde %d ++ Washa manukuuZima manukuuSogeza mbele harakaFungua skrini nzimaFunga skrini nzimaFicha vidhibiti vya kichezajiEndeleaFicha mipangilio ya ziadaOnyesha mipangilio ya ziadaSitishaChezaKasiUliotanguliaHali ya sasa: Rudia zote. Geuza hali ya kurudia.Hali ya sasa: Usirudie yoyote Geuza hali ya kurudia.Hali ya sasa: Rudia moja. Geuza hali ya kurudia.Rudisha nyumaKiasi cha uchezajiMipangilioOnyesha vidhibiti vya kichezajiWasha hali ya kuchanganyaZima hali ya kuchanganyaSimamishaHali ya Uhalisia Pepe%1$s, %2$sMbps %1$.2fMono%1$d × %2$dMbadalaManukuuUchambuziWa ziadaOtomatikiHamnaSautiStereoSauti inayozingiraSauti inayozingira ya 5.1Sauti inayozingira ya 7.1Haijulikani(%1$s) isiyojulikana ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avançar %d segundo ++ Avançar %d segundos ++ ++ Retroceder %d segundo ++ Retroceder %d segundos ++ Ativar legendasDesativar legendasAvançarMudar para ecrÃŖ inteiroSair do ecrÃŖ inteiroOcultar controlos do leitorSeguinteOcultar definiçÃĩes adicionaisMostrar definiçÃĩes adicionaisPausarReproduzirVelocidadeAnteriorModo atual: repet. tudo. Ative/des. repetiÃ§ÃŖo.Modo atual: nÃŖo repetir. Ative/des. repetiÃ§ÃŖo.Modo atual: repetir um. Ative/des. repetiÃ§ÃŖo.RecuarProgresso da reproduÃ§ÃŖoDefiniçÃĩesMostrar controlos do leitorAtivar modo aleatÃŗrioDesativar modo aleatÃŗrioPararModo de RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativaLegendasComentÃĄrioSuplementarAutomÃĄticoNenhumaÁudioEstÊreoSom surroundSom surround 5.1Som surround 7.1DesconhecidaDesconhecido (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d saniye ileri sar ++ %d saniye ileri sar ++ ++ %d saniye geri sar ++ %d saniye geri sar ++ AltyazÄąlarÄą etkinleştirAltyazÄąlarÄą devre dÄąÅŸÄą bÄąrakİleri sarTam ekrana geçTam ekrandan Ã§ÄąkOynatÄącÄą kontrollerini gizleSonrakiEk ayarlarÄą gizleEk ayarlarÄą gÃļsterDuraklatÇalHÄązÖncekiGeçerli mod: TÃŧmÃŧnÃŧ tekrarla. TekrarlamayÄą aç/kapat.Geçerli mod: Tekrarlama. TekrarlamayÄą aç/kapat.Geçerli mod: Birini tekrarla. TekrarlamayÄą aç/kapat.Geri sarÇalma ilerleme durumuAyarlarOynatÄącÄą kontrollerini gÃļsterKarÄąÅŸtÄąrma modunu etkinleştirKarÄąÅŸtÄąrma modunu devre dÄąÅŸÄą bÄąrakDurdurVR modu%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternatifAltyazÄąAnlatÄąmEk kanalOtomatikYokSesStereoSurround ses5.1 surround ses7.1 surround sesBilinmiyorBilinmiyor (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ āŽ‡āŽ¯āŽ˛ā¯āŽĒ❁ ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d āŽĩāŽŋāŽŠāŽžāŽŸāŽŋ āŽƒāŽĒāŽžāŽ¸ā¯āŽŸā¯ āŽƒāŽĒāŽžāŽ°ā¯āŽĩāŽ°ā¯āŽŸā¯ āŽ†āŽ•ā¯āŽŽā¯ ++ %d āŽĩāŽŋāŽŠāŽžāŽŸāŽŋāŽ•āŽŗā¯ āŽƒāŽĒāŽžāŽ¸ā¯āŽŸā¯ āŽƒāŽĒāŽžāŽ°ā¯āŽĩāŽ°ā¯āŽŸā¯ āŽ†āŽ•ā¯āŽŽā¯ ++ ++ %d āŽĩāŽŋāŽŠāŽžāŽŸāŽŋ āŽ°ā¯€āŽĩā¯ˆāŽŖā¯āŽŸā¯ āŽ†āŽ•ā¯āŽŽā¯ ++ %d āŽĩāŽŋāŽŠāŽžāŽŸāŽŋāŽ•āŽŗā¯ āŽ°ā¯€āŽĩā¯ˆāŽŖā¯āŽŸā¯ āŽ†āŽ•ā¯āŽŽā¯ ++ āŽšāŽĒā¯āŽŸā¯ˆāŽŸā¯āŽŸāŽŋāŽ˛ā¯āŽ•āŽŗā¯ˆ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽŽā¯āŽšāŽĒā¯āŽŸā¯ˆāŽŸā¯āŽŸāŽŋāŽ˛ā¯āŽ•āŽŗā¯ˆ āŽŽā¯āŽŸāŽ•ā¯āŽ•ā¯āŽŽā¯āŽĩā¯‡āŽ•āŽŽāŽžāŽ• āŽŽā¯āŽŠā¯āŽšā¯†āŽ˛ā¯āŽŽā¯āŽ´ā¯āŽ¤ā¯āŽ¤āŽŋāŽ°ā¯ˆāŽ¯āŽŋāŽ˛ā¯ āŽ•āŽžāŽŸā¯āŽŸ āŽ‰āŽ¤āŽĩā¯āŽŽā¯ āŽĒāŽŸā¯āŽŸāŽŠā¯āŽŽā¯āŽ´ā¯āŽ¤ā¯āŽ¤āŽŋāŽ°ā¯ˆāŽ¯ā¯ˆ āŽĩā¯†āŽŗāŽŋāŽ¯ā¯‡āŽą āŽ‰āŽ¤āŽĩā¯āŽŽā¯ āŽĒāŽŸā¯āŽŸāŽŠā¯āŽĒāŽŋāŽŗā¯‡āŽ¯āŽ°ā¯ āŽ•āŽŸā¯āŽŸā¯āŽĒā¯āŽĒāŽžāŽŸā¯āŽ•āŽŗā¯ˆ āŽŽāŽąā¯ˆāŽ•ā¯āŽ•ā¯āŽŽā¯āŽ…āŽŸā¯āŽ¤ā¯āŽ¤ā¯āŽ•ā¯‚āŽŸā¯āŽ¤āŽ˛ā¯ āŽ…āŽŽā¯ˆāŽĒā¯āŽĒā¯āŽ•āŽŗā¯ˆ āŽŽāŽąā¯ˆāŽ•ā¯āŽ•ā¯āŽŽā¯āŽ•ā¯‚āŽŸā¯āŽ¤āŽ˛ā¯ āŽ…āŽŽā¯ˆāŽĒā¯āŽĒā¯āŽ•āŽŗā¯ˆāŽ•ā¯ āŽ•āŽžāŽŸā¯āŽŸā¯āŽŽā¯āŽ‡āŽŸā¯ˆāŽ¨āŽŋāŽąā¯āŽ¤ā¯āŽ¤ā¯āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽĩā¯‡āŽ•āŽŽā¯āŽŽā¯āŽ¨ā¯āŽ¤ā¯ˆāŽ¯āŽ¤ā¯āŽ¤āŽąā¯āŽĒā¯‹āŽ¤ā¯ˆāŽ¯ āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆ: āŽ…āŽŠā¯ˆāŽ¤ā¯āŽ¤ā¯ˆāŽ¯ā¯āŽŽā¯ āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽŽā¯. āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽ¤āŽ˛ā¯ˆ āŽ¨āŽŋāŽ˛ā¯ˆāŽŽāŽžāŽąā¯āŽąā¯āŽŽā¯.āŽ¤āŽąā¯āŽĒā¯‹āŽ¤ā¯ˆāŽ¯ āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆ: āŽŽāŽ¤ā¯ˆāŽ¯ā¯āŽŽā¯ āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•āŽžāŽ¤ā¯. āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽ¤āŽ˛ā¯ˆ āŽ¨āŽŋāŽ˛ā¯ˆāŽŽāŽžāŽąā¯āŽąā¯āŽŽā¯.āŽ¤āŽąā¯āŽĒā¯‹āŽ¤ā¯ˆāŽ¯ āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆ: āŽ’āŽŠā¯āŽąā¯ˆ āŽŽāŽŸā¯āŽŸā¯āŽŽā¯ āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽŽā¯. āŽŽā¯€āŽŖā¯āŽŸā¯āŽŽā¯ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽ¤āŽ˛ā¯ˆ āŽ¨āŽŋāŽ˛ā¯ˆāŽŽāŽžāŽąā¯āŽąā¯āŽŽā¯.āŽĒāŽŋāŽŠā¯āŽšā¯†āŽ˛ā¯āŽĩā¯€āŽŸāŽŋāŽ¯ā¯‹āŽĩāŽŋāŽŠā¯ āŽ‡āŽ¯āŽ•ā¯āŽ• āŽ¨āŽŋāŽ˛ā¯ˆāŽ…āŽŽā¯ˆāŽĒā¯āŽĒā¯āŽ•āŽŗā¯āŽĒāŽŋāŽŗā¯‡āŽ¯āŽ°ā¯ āŽ•āŽŸā¯āŽŸā¯āŽĒā¯āŽĒāŽžāŽŸā¯āŽ•āŽŗā¯ˆāŽ•ā¯ āŽ•āŽžāŽŸā¯āŽŸā¯āŽŽā¯āŽ•āŽ˛ā¯ˆāŽ¤ā¯āŽ¤ā¯āŽĒā¯ āŽĒā¯‹āŽŸā¯āŽŽā¯ āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆāŽ¯ā¯ˆ āŽ‡āŽ¯āŽ•ā¯āŽ•ā¯āŽŽā¯āŽ•āŽ˛ā¯ˆāŽ¤ā¯āŽ¤ā¯āŽĒā¯ āŽĒā¯‹āŽŸā¯āŽŽā¯ āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆāŽ¯ā¯ˆ āŽŽā¯āŽŸāŽ•ā¯āŽ•ā¯āŽŽā¯āŽ¨āŽŋāŽąā¯āŽ¤ā¯āŽ¤ā¯VR āŽĒāŽ¯āŽŠā¯āŽŽā¯āŽąā¯ˆ%1$s, %2$s%1$.2f āŽŽā¯†.āŽĒ❈./āŽĩāŽŋāŽŽā¯‹āŽŠā¯‹%1$d × %2$dāŽŽāŽžāŽąā¯āŽąā¯ āŽŸāŽŋāŽ°āŽžāŽ•ā¯āŽĩāŽšāŽŠāŽŽā¯āŽĩāŽ°ā¯āŽŖāŽŠā¯ˆāŽ¤ā¯āŽŖā¯ˆ āŽŸāŽŋāŽ°āŽžāŽ•ā¯āŽ¤āŽžāŽŠāŽŋāŽ¯āŽ™ā¯āŽ•ā¯āŽāŽ¤ā¯āŽŽāŽŋāŽ˛ā¯āŽ˛ā¯ˆāŽ†āŽŸāŽŋāŽ¯ā¯‹āŽ¸ā¯āŽŸā¯€āŽ°āŽŋāŽ¯ā¯‹āŽšāŽ°āŽĩā¯āŽŖā¯āŽŸā¯ āŽšāŽĩā¯āŽŖā¯āŽŸā¯5.1 āŽšāŽ°āŽĩā¯āŽŖā¯āŽŸā¯ āŽšāŽĩā¯āŽŖā¯āŽŸā¯7.1 āŽšāŽ°āŽĩā¯āŽŖā¯āŽŸā¯ āŽšāŽĩā¯āŽŖā¯āŽŸā¯āŽ¤ā¯†āŽ°āŽŋāŽ¯āŽžāŽ¤āŽĩā¯ˆāŽ¤ā¯†āŽ°āŽŋāŽ¯āŽžāŽ¤āŽ¤ā¯ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ⏛⏁⏕⏴ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ā¸ā¸Ŗā¸­āš„ā¸›ā¸‚āš‰ā¸˛ā¸‡ā¸Ģā¸™āš‰ā¸˛ %d ⏧⏴⏙⏞⏗ā¸ĩ ++ ā¸ā¸Ŗā¸­āš„ā¸›ā¸‚āš‰ā¸˛ā¸‡ā¸Ģā¸™āš‰ā¸˛ %d ⏧⏴⏙⏞⏗ā¸ĩ ++ ++ ⏁⏪⏭⏁ā¸Ĩā¸ąā¸š %d ⏧⏴⏙⏞⏗ā¸ĩ ++ ⏁⏪⏭⏁ā¸Ĩā¸ąā¸š %d ⏧⏴⏙⏞⏗ā¸ĩ ++ āš€ā¸›ā¸´ā¸”āšƒā¸Šāš‰ā¸„ā¸ŗā¸šā¸Ŗā¸Ŗā¸ĸ⏞ā¸ĸā¸›ā¸´ā¸”āšƒā¸Šāš‰ā¸„ā¸ŗā¸šā¸Ŗā¸Ŗā¸ĸ⏞ā¸ĸā¸ā¸Ŗā¸­āš„ā¸›ā¸‚āš‰ā¸˛ā¸‡ā¸Ģā¸™āš‰ā¸˛āšā¸Ēā¸”ā¸‡āšā¸šā¸šāš€ā¸•āš‡ā¸Ąā¸Ģā¸™āš‰ā¸˛ā¸ˆā¸­ā¸­ā¸­ā¸ā¸ˆā¸˛ā¸āš‚ā¸Ģā¸Ąā¸”āš€ā¸•āš‡ā¸Ąā¸Ģā¸™āš‰ā¸˛ā¸ˆā¸­ā¸‹āšˆā¸­ā¸™ā¸•ā¸ąā¸§ā¸„ā¸§ā¸šā¸„ā¸¸ā¸Ąāš‚ā¸›ā¸Ŗāšā¸ā¸Ŗā¸Ąāš€ā¸Ĩāšˆā¸™ā¸–ā¸ąā¸”āš„ā¸›ā¸‹āšˆā¸­ā¸™ā¸ā¸˛ā¸Ŗā¸•ā¸ąāš‰ā¸‡ā¸„āšˆā¸˛āš€ā¸žā¸´āšˆā¸Ąāš€ā¸•ā¸´ā¸Ąāšā¸Ēā¸”ā¸‡ā¸ā¸˛ā¸Ŗā¸•ā¸ąāš‰ā¸‡ā¸„āšˆā¸˛āš€ā¸žā¸´āšˆā¸Ąāš€ā¸•ā¸´ā¸Ąā¸Ģā¸ĸā¸¸ā¸”āš€ā¸Ĩāšˆā¸™ā¸„ā¸§ā¸˛ā¸Ąāš€ā¸Ŗāš‡ā¸§ā¸āšˆā¸­ā¸™ā¸Ģā¸™āš‰ā¸˛āš‚ā¸Ģā¸Ąā¸”ā¸›ā¸ąā¸ˆā¸ˆā¸¸ā¸šā¸ąā¸™: āš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗā¸—ā¸ąāš‰ā¸‡ā¸Ģā¸Ąā¸” ā¸Ēā¸Ĩā¸ąā¸šāš‚ā¸Ģā¸Ąā¸”āš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗāš‚ā¸Ģā¸Ąā¸”ā¸›ā¸ąā¸ˆā¸ˆā¸¸ā¸šā¸ąā¸™: āš„ā¸Ąāšˆāš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗ ā¸Ēā¸Ĩā¸ąā¸šāš‚ā¸Ģā¸Ąā¸”āš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗāš‚ā¸Ģā¸Ąā¸”ā¸›ā¸ąā¸ˆā¸ˆā¸¸ā¸šā¸ąā¸™: āš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗā¸Ŗā¸˛ā¸ĸā¸ā¸˛ā¸Ŗāš€ā¸”ā¸ĩā¸ĸ⏧ ā¸Ēā¸Ĩā¸ąā¸šāš‚ā¸Ģā¸Ąā¸”āš€ā¸Ĩāšˆā¸™ā¸‹āš‰ā¸ŗā¸ā¸Ŗā¸­ā¸ā¸Ĩā¸ąā¸šā¸„ā¸§ā¸˛ā¸Ąā¸„ā¸ˇā¸šā¸Ģā¸™āš‰ā¸˛āšƒā¸™ā¸ā¸˛ā¸Ŗāš€ā¸Ĩāšˆā¸™ā¸ā¸˛ā¸Ŗā¸•ā¸ąāš‰ā¸‡ā¸„āšˆā¸˛āšā¸Ēā¸”ā¸‡āšā¸œā¸‡ā¸„ā¸§ā¸šā¸„ā¸¸ā¸Ąāš‚ā¸›ā¸Ŗāšā¸ā¸Ŗā¸Ąāš€ā¸Ĩāšˆā¸™āš€ā¸›ā¸´ā¸”āšƒā¸Šāš‰āš‚ā¸Ģā¸Ąā¸”ā¸Ēā¸¸āšˆā¸Ąāš€ā¸žā¸Ĩā¸‡ā¸›ā¸´ā¸”āšƒā¸Šāš‰āš‚ā¸Ģā¸Ąā¸”ā¸Ēā¸¸āšˆā¸Ąāš€ā¸žā¸Ĩ⏇ā¸Ģā¸ĸā¸¸ā¸”āš‚ā¸Ģā¸Ąā¸” VR%1$s, %2$s%1$.2f Mbpsāš‚ā¸Ąāš‚ā¸™%1$d × %2$dā¸­ā¸ˇāšˆā¸™āš†ā¸„ā¸ŗā¸šā¸Ŗā¸Ŗā¸ĸ⏞ā¸ĸā¸„ā¸§ā¸˛ā¸Ąā¸„ā¸´ā¸”āš€ā¸Ģāš‡ā¸™āšā¸—ā¸Ŗāš‡ā¸āš€ā¸Ēā¸Ŗā¸´ā¸Ąā¸­ā¸ąā¸•āš‚ā¸™ā¸Ąā¸ąā¸•ā¸´āš„ā¸Ąāšˆā¸Ąā¸ĩāš€ā¸Ēā¸ĩā¸ĸ⏇ā¸Ēāš€ā¸•ā¸­ā¸Ŗā¸´āš‚ā¸­āš€ā¸Ēā¸ĩā¸ĸā¸‡āš€ā¸‹ā¸­ā¸ŖāšŒā¸Ŗā¸˛ā¸§ā¸”āšŒā¸Ŗā¸°ā¸šā¸šāš€ā¸Ēā¸ĩā¸ĸ⏇ 5.1 āš€ā¸‹ā¸­ā¸ŖāšŒā¸Ŗā¸˛ā¸§ā¸”āšŒ7.1 āš€ā¸Ēā¸ĩā¸ĸā¸‡āš€ā¸‹ā¸­ā¸ŖāšŒā¸Ŗā¸˛ā¸§ā¸”āšŒāš„ā¸Ąāšˆā¸—ā¸Ŗā¸˛ā¸šāš„ā¸Ąāšˆā¸Ŗā¸šāš‰ā¸ˆā¸ąā¸ (%1$s) ++ Û°ŲĢÛ˛Ûĩ Ø¨ØąØ§Ø¨Øą ++ Û°ŲĢÛĩ Ø¨ØąØ§Ø¨Øą ++ Û°ŲĢÛˇÛĩ Ø¨ØąØ§Ø¨Øą ++ ؚادی ++ ÛąŲĢÛ˛Ûĩ Ø¨ØąØ§Ø¨Øą ++ ÛąŲĢÛĩ Ø¨ØąØ§Ø¨Øą ++ Û˛ Ø¨ØąØ§Ø¨Øą ++ ++ %d ØĢØ§Ų†ÛŒŲ‡ ØŗØąÛŒØš Ø¨Ų‡â€ŒØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ++ %d ØĢØ§Ų†ÛŒŲ‡ ØŗØąÛŒØš Ø¨Ų‡â€ŒØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ++ ++ %d ØĢØ§Ų†ÛŒŲ‡ Ø¨Ų‡â€ŒØšŲ‚Ø¨ Ø¨ØąØ¯Ų† ++ %d ØĢØ§Ų†ÛŒŲ‡ Ø¨Ų‡â€ŒØšŲ‚Ø¨ Ø¨ØąØ¯Ų† ++ ŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø˛ÛŒØąŲ†ŲˆÛŒØŗØēÛŒØąŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø˛ÛŒØąŲ†ŲˆÛŒØŗØŦŲ„Ųˆ Ø¨ØąØ¯Ų† ØŗØąÛŒØšŲˆØąŲˆØ¯ Ø¨Ų‡ Ø­Ø§Ų„ØĒ ØĒŲ…Ø§Ų…â€ŒØĩŲØ­Ų‡ØŽØąŲˆØŦ Ø§Ø˛ Ø­Ø§Ų„ØĒ ØĒŲ…Ø§Ų…â€ŒØĩŲØ­Ų‡ŲžŲ†Ų‡Ø§Ų† ÚŠØąØ¯Ų† ÚŠŲ†ØĒØąŲ„â€ŒŲ‡Ø§ÛŒ ŲžØŽØ´â€ŒÚŠŲ†Ų†Ø¯Ų‡Ø¨ØšØ¯ÛŒŲžŲ†Ų‡Ø§Ų† ÚŠØąØ¯Ų† ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒ اØļØ§ŲÛŒŲ†Ų…Ø§ÛŒØ´ ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒ اØļØ§ŲÛŒŲ…ÚŠØĢŲžØŽØ´ØŗØąØšØĒŲ‚Ø¨Ų„ÛŒØ­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą Ų‡Ų…Ų‡. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą.Ø­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą Ų‡ÛŒÚ†â€ŒÚŠØ¯Ø§Ų…. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą.Ø­Ø§Ų„ØĒ ÚŠŲ†ŲˆŲ†ÛŒ: ØĒÚŠØąØ§Øą یڊ Ų…ŲˆØąØ¯. ØąŲˆØ´Ų†/ ØŽØ§Ų…ŲˆØ´ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ ØĒÚŠØąØ§Øą.ØšŲ‚Ø¨ Ø¨ØąØ¯Ų†ŲžÛŒØ´ØąŲØĒ Ø¨Ø§Ø˛ŲžØŽØ´ØĒŲ†Ø¸ÛŒŲ…Ø§ØĒŲ†Ų…Ø§ÛŒØ´ ÚŠŲ†ØĒØąŲ„â€ŒŲ‡Ø§ÛŒ ŲžØŽØ´â€ŒÚŠŲ†Ų†Ø¯Ų‡ŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ Ø¯ØąŲ‡Ų…ØēÛŒØąŲØšØ§Ų„ ÚŠØąØ¯Ų† Ø­Ø§Ų„ØĒ Ø¯ØąŲ‡Ų…ØĒŲˆŲ‚ŲØ­Ø§Ų„ØĒ ŲˆØ§Ų‚ØšÛŒØĒ Ų…ØŦØ§Ø˛ÛŒ%1$s،‏ %2$s%1$.2f Ų…Ú¯Ø§Ø¨ÛŒØĒ Ø¯Øą ØĢØ§Ų†ÛŒŲ‡Ų…ŲˆŲ†Ųˆ%1$d × %2$dØ¨Ø¯ÛŒŲ„Ø˛ÛŒØąŲ†ŲˆÛŒØŗ Ų†Ø§Ø´Ų†ŲˆØ§ÛŒØ§Ų†Ø´ØąØ­ ؈ Ų†Ų‚Ø¯ØĒÚŠŲ…ÛŒŲ„ÛŒØŽŲˆØ¯ÚŠØ§ØąŲ‡ÛŒÚ†â€ŒÚŠØ¯Ø§Ų…Øĩ؈ØĒÛŒØ§ØŗØĒØąÛŒŲˆØĩدای ŲØąØ§Ú¯ÛŒØąØĩدای ŲØąØ§Ú¯ÛŒØą Ûĩ.ÛąØĩدای ŲØąØ§Ú¯ÛŒØą ÛˇŲĢÛąŲ†Ø§Ų…Ø´ØŽØĩŲ†Ø§Ø´Ų†Ø§Øŗ (%1$s) ++ 0,25 k. ++ 0,5 k. ++ 0,75 k. ++ ÄŽprasta ++ 1,25 k. ++ 1,5 k. ++ 2 k. ++ ++ Prasukti pirmyn %d sekundę ++ Prasukti pirmyn %d sekundes ++ Prasukti pirmyn %d sekundės ++ Prasukti pirmyn %d sekundÅžiÅŗ ++ ++ Atsukti atgal %d sekundę ++ Atsukti atgal %d sekundes ++ Atsukti atgal %d sekundės ++ Atsukti atgal %d sekundÅžiÅŗ ++ ÄŽgalinti subtitrusIÅĄjungti subtitrusSukti pirmynÄŽjungti viso ekrano reÅžimąIÅĄjungti viso ekrano reÅžimąSlėpti leistuvės valdikliusKitasSlėpti papildomus nustatymusRodyti papildomus nustatymusPristabdytiLeistiSpartaAnkstesnėsDabart. reÅž.: kart. viską. Perj. pakart. r.Dabart. reÅž.: nekart. nieko. Perj. pakart. r.Dabart. reÅž.: kart. vieną. Perj. pakart. r.Sukti atgalAtkÅĢrimo eigaNustatymaiRodyti leistuvės valdikliusÄŽgalinti maiÅĄymo reÅžimąIÅĄjungti maiÅĄymo reÅžimąSustabdytiVR reÅžimas%1$s, %2$s%1$.2f Mb/sMonofoninis%1$d × %2$dAlternatyvusSubtitraiKomentarasPapildomasAutomatinėNėraGarso įraÅĄasStereofoninisErdvinis garsas5.1 erdvinis garsas7.1 erdvinis garsasNeÅžinomasNeÅžinoma (%1$s) ++ 0,25× ++ 0,5× ++ 0,75× ++ Normala ++ 1,25× ++ 1,5× ++ 2× ++ ++ Aurreratu %d segundo ++ Aurreratu %d segundo ++ ++ Atzeratu %d segundo ++ Atzeratu %d segundo ++ Gaitu azpitituluakDesgaitu azpitituluakAurreratuErreproduzitu pantaila osoanIrten pantaila osotikEzkutatu erreproduzigailua kontrolatzeko aukerakHurrengoaEzkutatu ezarpen gehigarriakErakutsi ezarpen gehigarriakPausatuErreproduzituAbiaduraAurrekoaOraingo modua: errepikatu guztiak. Aldatu errepikatzeko modua.Oraingo modua: ez errepikatu. Aldatu errepikatzeko modua.Oraingo modua: errepikatu bat. Aldatu errepikatzeko modua.AtzeratuErreprodukzioaren garapenaEzarpenakErakutsi erreproduzigailua kontrolatzeko aukerakGaitu ausaz erreproduzitzeko moduaDesgaitu ausaz erreproduzitzeko moduaGeldituEBko modua%1$s, %2$s%1$.2f Mb/sMonoa%1$d × %2$dOrdezkoaAzpitituluakIruzkinakOsagarriaAutomatikoaBat ere ezAudioaEstereoaSoinu inguratzailea5.1 soinu inguratzailea7.1 soinu inguratzaileaEzezagunaEzezaguna (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ āē›āēģāēāēāē°āē•āē´ ++ 1.25x ++ 1.5x ++ 2x ++ ++ āģ€āēĨāēˇāģˆāē­āē™āģ„āē›āģœāģ‰āē˛ %d āē§āē´āē™āē˛āē—āēĩ ++ āģ€āēĨāēˇāģˆāē­āē™āģ„āē›āģœāģ‰āē˛ %d āē§āē´āē™āē˛āē—āēĩ ++ ++ āē–āē­āēāēĢāēŧāēąāē‡ %d āē§āē´āē™āē˛āē—āēĩ ++ āē–āē­āēāēĢāēŧāēąāē‡ %d āē§āē´āē™āē˛āē—āēĩ ++ āģ€āē›āēĩāē”āēāē˛āē™āē™āēŗāģƒāēŠāģ‰āē„āēŗāģāē›āē›āē´āē”āēāē˛āē™āē™āēŗāģƒāēŠāģ‰āē„āēŗāģāē›āģ€āēĨāēˇāģˆāē­āē™āģ„āē›āģœāģ‰āē˛āģ€āē‚āēģāģ‰āē˛āēĒāēšāģˆāģ‚āģāē”āģ€āē•āēąāēĄāēˆāģāē­āē­āēāēˆāē˛āēāģ€āē•āēąāēĄāēˆāģāģ€āēŠāēˇāģˆāē­āē‡āē•āēģāē§āē„āē§āēšâ€‹āē„āē¸āēĄâ€‹āģ€āē„āēˇāģˆāē­āē‡â€‹āēĢāēŧāē´āģ‰āē™āē•āģāģˆāģ„āē›āģ€āēŠāēˇāģˆāē­āē‡āēāē˛āē™āē•āēąāģ‰āē‡āē„āģˆāē˛āģ€āēžāēĩāģˆāēĄāģ€āē•āēĩāēĄāēĒāē°āģāē”āē‡āēāē˛āē™āē•āēąāģ‰āē‡āē„āģˆāē˛āģ€āēžāēĩāģˆāēĄāģ€āē•āēĩāēĄāēĸāē¸āē”āēŠāēģāģˆāē§āē„āē˛āē§āēĢāēŧāē´āģ‰āē™āē„āē§āē˛āēĄāģ„āē§āēāģˆāē­āē™āģœāģ‰āē˛āģ‚āģāē”āē›āēąāē”āēˆāē¸āēšāēąāē™: āģ€āē›āēĩāē”āēŠāģ‰āēŗāē—āēąāē‡āģāēģāē”. āēĒāē°āēĢāēŧāēąāēšāģ‚āģāē”āģ€āē›āēĩāē”āēŠāģ‰āēŗ.āģ‚āģāē”āē›āēąāē”āēˆāē¸āēšāēąāē™: āēšāģāģˆāģ€āē›āēĩāē”āēŠāģ‰āēŗ. āēĒāē°āēĢāēŧāēąāēšāģ‚āģāē”āģ€āē›āēĩāē”āēŠāģ‰āēŗ.āģ‚āģāē”āē›āēąāē”āēˆāē¸āēšāēąāē™: āģ€āē›āēĩāē”āēŠāģ‰āēŗāē­āēąāē™āē”āēŊāē§. āēĒāē°āēĢāēŧāēąāēšāģ‚āģāē”āģ€āē›āēĩāē”āēŠāģ‰āēŗ.āēāģ‰āē­āē™āēāēąāēšāēĒāē°āē–āē˛āē™āē°āēāē˛āē™āēĢāēŧāē´āģ‰āē™āē•āēąāģ‰āē‡āē„āģˆāē˛āēĒāē°â€‹āģāē”āē‡āē•āēģāē§āē„āē§āēšâ€‹āē„āē¸āēĄâ€‹āģ€āē„āēˇāģˆāē­āē‡â€‹āēĢāēŧāē´āģ‰āē™āģ€āē›āēĩāē”āēāē˛āē™āē™āēŗāģƒāēŠāģ‰āģ‚āģāē”āēĒāēąāēšāē›āē´āē”āēāē˛āē™āē™āēŗāģƒāēŠāģ‰āģ‚āģāē”āēĒāēąāēšāēĸāē¸āē”āģ‚āģāē” VR%1$s, %2$s%1$.2f Mbpsāģ‚āēĄāģ‚āē™%1$d × %2$dāēĒāēŗāēŽāē­āē‡āē„āēŗāēšāēąāē™āēāē˛āēāē„āēŗāģ€āēĢāēąāē™āēĒāģˆāē§āē™āģ€āēĒāēĩāēĄāē­āēąāē”āē•āē°āģ‚āē™āēĄāēąāē”āēšāģāģˆāēĄāēĩāēĒāēŊāē‡āēĒāē°āģ€āē•āēŖāē´āģ‚āē­āēĒāēŊāē‡āēŽāē­āēšāē—āē´āē”āē—āē˛āē‡āēĒāēŊāē‡āēŽāē­āēšāē—āē´āē”āē—āē˛āē‡ 5.1āēĒāēŊāē‡āēŽāē­āēšāē—āē´āē”āē—āē˛āē‡ 7.1āēšāģāģˆāēŽāēšāģ‰āēˆāēąāēāēšāģāģˆāēŽāēšāģ‰āēˆāēąāē (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ רגילה ++ 1.25x ++ 1.5x ++ 2x ++ ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ הר×Ļה %d שניו×Ē ×§×“×™×ž×” ++ ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ הר×Ļה %d שניו×Ē ××—×•×¨×” ++ הפ×ĸל×Ē ×›×Ēוביו×Ēהשב×Ē×Ē ×›×Ēוביו×Ēהר×Ļה קדימהכניסה למסך מלאי×Ļיאה ממסך מלאהס×Ēר×Ē ×¤×§×“×™ הנגןהבאהס×Ēר×Ē ×”×”×’×“×¨×•×Ē ×”× ×•×Ą×¤×•×Ēה×Ļג×Ē ×”×’×“×¨×•×Ē × ×•×Ą×¤×•×Ēהשהיההפ×ĸלהמהירו×Ēהקודםהמ×Ļב הנוכחי: חזרה ×ĸל כל הפריטים. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה.המ×Ļב הנוכחי: ללא חזרה. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה.המ×Ļב הנוכחי: חזרה ×ĸל פריט אחד. כפ×Ēור להחלפ×Ē ×ž×Ļב החזרה.הר×Ļה אחורהה×Ēקדמו×Ē ×”×”×¤×ĸלההגדרו×Ēה×Ļג×Ē ×¤×§×“×™ הנגןהפ×ĸל×Ē ×ž×Ļב ההפ×ĸלה האקראי×Ēהשב×Ē×Ē ×ž×Ļב ההפ×ĸלה האקראי×Ēהפסקהמ×Ļב VR%1$s‏, %2$s%1$.2f מגה סיביו×Ē ×œ×Š× ×™×™×”×ž×•× ×•%1$d × %2$dחלופיכ×Ēוביו×Ēפרשנו×Ēמשליםאוטומטיללאאודיוסטריאוסראונדסראונד 5.1סראונד 7.1לא ידו×ĸלא ידו×ĸ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ Rewind %d second ++ Rewind %d seconds ++ Enable subtitlesDisable subtitlesFast-forwardEnter fullscreenExit fullscreenHide player controlsNextHide additional settingsShow additional settingsPausePlaySpeedPreviousCurrent mode: Repeat all. Toggle repeat mode.Current mode: Repeat none. Toggle repeat mode.Current mode: Repeat one. Toggle repeat mode.RewindPlayback progressSettingsShow player controlsEnable shuffle modeDisable shuffle modeStopVR mode%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativeCCCommentarySupplementaryAutoNoneAudioStereoSurround sound5.1 surround sound7.1 surround soundUnknownUnknown (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normaali ++ 1,25x ++ 1,5x ++ 2x ++ ++ Siirry eteenpäin %d sekunti ++ Siirry eteenpäin %d sekuntia ++ ++ Siirry taaksepäin %d sekunti ++ Siirry taaksepäin %d sekuntia ++ Ota tekstitykset käyttÃļÃļnPoista tekstitykset käytÃļstäKelaa eteenpäinSiirry koko näytÃļn tilaanSulje koko näytÃļn tilaNäytä soittimen säätimetSeuraavaPiilota lisäasetuksetNäytä lisäasetuksetKeskeytäToistaNopeusEdellinenTila: Toista kaikki. Vaihda.Tila: Älä toista. Vaihda.Tila: Toista yksi. Vaihda.Kelaa taaksepäinToiston edistyminenAsetuksetNäytä soittimen säätimetOta satunnaistoisto käyttÃļÃļnPoista satunnaistoisto käytÃļstäLopetaVR-tila%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dVaihtoehtoinenTekstityksetKommenttiraitaLisämateriaaliAutomaattinen–ÄäniStereoSurround-ääni5.1-surround-ääni7.1-surround-ääniTuntematonTuntematon (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ Fast-forward %d second ++ Fast-forward %d seconds ++ ++ Rewind %d second ++ Rewind %d seconds ++ Enable subtitlesDisable subtitlesFast-forwardEnter fullscreenExit fullscreenHide player controlsNextHide additional settingsShow additional settingsPausePlaySpeedPreviousCurrent mode: Repeat all. Toggle repeat mode.Current mode: Repeat none. Toggle repeat mode.Current mode: Repeat one. Toggle repeat mode.RewindPlayback progressSettingsShow player controlsEnable shuffle modeDisable shuffle modeStopVR mode%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativeCCCommentarySupplementaryAutoNoneAudioStereoSurround sound5.1 surround sound7.1 surround soundUnknownUnknown (%1$s) ++ x 0,25 ++ x 0,5 ++ x 0,75 ++ Normal ++ x 1,25 ++ x 1,5 ++ x 2 ++ ++ Avancer de %d seconde ++ Avancer de %d secondes ++ ++ Revenir en arrière de %d seconde ++ Revenir en arrière de %d secondes ++ Activer les sous-titresDÊsactiver les sous-titresAvance rapideActiver le mode plein ÊcranQuitter le mode plein ÊcranMasquer les commandes du lecteurSuivantMasquer les paramètres supplÊmentairesAfficher les paramètres supplÊmentairesPauseLectureVitessePrÊcÊdentMode actuel : tout rÊpÊter. Changer le mode rÊpÊtition.Mode actuel : sans rÊpÊtition. Changer le mode rÊpÊtition.Mode actuel : une rÊpÊtition. Changer le mode rÊpÊtition.Retour arrièreProgression de la lectureParamètresAfficher les commandes du lecteurActiver le mode alÊatoireDÊsactiver le mode alÊatoireArrÃĒterMode RV%1$s, %2$s%1$.2f Mbit/sMono%1$d × %2$dPiste alternativeSous-titresCommentairesPiste supplÊmentaireAutomatiqueAucunAudioStÊrÊoSon surroundSon surround 5.1Son surround 7.1InconnuInconnu (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avanzar %d segundo ++ Avanzar %d segundos ++ ++ Retroceder %d segundo ++ Retroceder %d segundos ++ Habilitar subtítulosInhabilitar subtítulosAvanzar rÃĄpidamenteActivar pantalla completaSalir de pantalla completaOcultar controles de jugadorSiguienteOcultar ajustes adicionalesMostrar ajustes adicionalesPausarReproducirVelocidadAnteriorModo actual: Repetir todo. Cambiar de modo.Modo actual: No repetir. Cambiar de modo.Modo actual: Repetir uno. Cambiar de modo.RebobinarProgreso de reproducciÃŗnAjustesMostrar controles del reproductorHabilitar modo aleatorioInhabilitar modo aleatorioDetenerModo RV%1$s, %2$s%1$.2f Mb/sMono%1$d×%2$dAlternativaCCComentariosComplementariaAutomÃĄticoNingunaAudioEstÊreoSonido envolventeSonido envolvente 5.1Sonido envolvente 7.1DesconocidoDesconocido (%1$s) ++ 0,25-kordne ++ 0,5-kordne ++ 0,75-kordne ++ Tavaline ++ 1,25-kordne ++ 1,5-kordne ++ 2-kordne ++ ++ Keri %d sekund edasi ++ Keri %d sekundit edasi ++ ++ Keri %d sekund tagasi ++ Keri %d sekundit tagasi ++ Luba subtiitridKeela subtiitridKeri edasiAvamine täisekraanilVäljumine täisekraaniltPeida pleieri juhtnupudEdasiPeida lisaseadedKuva lisaseadedPeataEsitaKiirusEelminePraegune reÅžiim: Korda kÃĩiki. Aktiveerige kordusreÅžiim.Praegune reÅžiim: Ära korda. Aktiveerige kordusreÅžiim.Praegune reÅžiim: Korda Ãŧhte. Aktiveerige kordusreÅžiim.Keri tagasiTaasesitus on pooleliSeadedKuva pleieri juhtnupudJuhuesituse reÅžiimi lubamineJuhuesituse reÅžiimi keelamineLÃĩpetaVR-reÅžiim%1$s, %2$s%1$.2f Mbit/sMono%1$d × %2$dAlternatiivSubtiitridKommentaarLisaluguAutomaatneÜhtegiHeliStereoRuumiline heliRuumiline heli 5.1Ruumiline heli 7.1TeadmataTeadmata (%1$s) ++ 0,25 x ++ 0,5 x ++ 0,75 x ++ Uobičajeno ++ 1,25 x ++ 1,5 x ++ 2 x ++ ++ Premotavanje unaprijed za %d sekundu ++ Premotavanje unaprijed za %d sekunde ++ Premotavanje unaprijed za %d sekundi ++ ++ Premotavanje unatrag za %d sekundu ++ Premotavanje unatrag za %d sekunde ++ Premotavanje unatrag za %d sekundi ++ Omogući titloveOnemogući titloveBrzo unaprijedOtvaranje prikaza na cijelom zaslonuZatvaranje prikaza na cijelom zaslonuSakrij kontrole playeraSljedećeSakrij dodatne postavkePrikaÅži dodatne postavkePauzaReproducirajBrzinaPrethodnoTrenutačno: Ponovi sve. Promijenite način ponavljanja.Trenutačno: Bez ponavljanja. Promijenite način ponavljanja.Trenutačno: Ponovi jedno. Promijenite način ponavljanja.UnatragNapredak reprodukcijePostavkePrikaÅži kontrole playeraOmogućite način nasumične reprodukcijeOnemogućite način nasumične reprodukcijeZaustaviVR način%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativna verzijaVerzija s titlovimaVerzija s komentarimaDopunska verzijaAutomatskiNiÅĄtaAudiozapisStereoOkruÅžujući zvuk5.1-kanalni okruÅžujući zvuk7.1-kanalni okruÅžujući zvukNepoznatoNepoznato (%1$s) ++ 0,25× ++ 0,5× ++ 0,75× ++ NormÃĄl ++ 1,25× ++ 1,5× ++ 2× ++ ++ ElőretekerÊs %d mÃĄsodperccel ++ ElőretekerÊs %d mÃĄsodperccel ++ ++ VisszatekerÊs %d mÃĄsodperccel ++ VisszatekerÊs %d mÃĄsodperccel ++ Feliratok bekapcsolÃĄsaFeliratok kikapcsolÃĄsaElőretekerÊsTeljes kÊpernyőKilÊpÊs a teljes kÊpernyős mÃŗdbÃŗlLejÃĄtszÃĄsvezÊrlők elrejtÊseKÃļvetkezőTovÃĄbbi beÃĄllítÃĄsok elrejtÊseTovÃĄbbi beÃĄllítÃĄsok megjelenítÊseSzÃŧneteltetÊsLejÃĄtszÃĄsSebessÊgElőzőJelenlegi: Összes ismÊtlÊse. IsmÊtlÊs mÃŗd be/ki.Jelenlegi: Nincs ismÊtlÊs. IsmÊtlÊs mÃŗd be/ki.Jelenlegi: Egy ismÊtlÊse. IsmÊtlÊs mÃŗd be/ki.VisszatekerÊsLejÃĄtszÃĄsi folyamatBeÃĄllítÃĄsokLejÃĄtszÃĄsvezÊrlők mutatÃĄsaKeverÊs mÃŗd bekapcsolÃĄsaKeverÊs mÃŗd kikapcsolÃĄsaLeÃĄllítÃĄsVR-mÃŗd%1$s, %2$s%1$.2f MbpsMonÃŗ%1$d × %2$dAlternatívFeliratKommentÃĄrKiegÊszítőAutomatikusNincsHangSztereÃŗTÊrhatÃĄsÃē hangzÃĄs5.1-es tÊrhatÃĄsÃē hangzÃĄs7.1-es tÊrhatÃĄsÃē hangzÃĄsIsmeretlenIsmeretlen (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normaal ++ 1,25x ++ 1,5x ++ 2x ++ ++ %d seconde vooruitspoelen ++ %d seconden vooruitspoelen ++ ++ %d seconde terugspoelen ++ %d seconden terugspoelen ++ Ondertiteling aanzettenOndertiteling uitzettenVooruitspoelenVolledig scherm openenVolledig scherm sluitenAfspeelbediening verbergenVolgendeAanvullende instellingen verbergenAanvullende instellingen tonenPauzerenAfspelenSnelheidVorigeHuidige modus: Alles herhalen. Herhaalmodus schakelen.Huidige modus: Niets herhalen. Herhaalmodus schakelen.Huidige modus: 1 herhalen. Herhaalmodus schakelen.TerugspoelenAfspeelvoortgangInstellingenAfspeelbediening tonenShuffle aanzettenShuffle uitzettenStoppenVR-modus%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternatiefCCCommentaarAanvullendAutoGeenAudioStereoSurround sound5.1 surroundgeluid7.1 surroundgeluidOnbekendOnbekend (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ ĐĐžŅ€ĐŧаĐģĐŊĐž ++ 1,25x ++ 1,5x ++ 2x ++ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ %dÂ ŅĐĩĐē҃ĐŊда ĐŊаĐŋŅ€ĐĩĐ´ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ(Ҋҁ) %dÂ ŅĐĩĐē҃ĐŊди ĐŊаĐŋŅ€ĐĩĐ´ ++ ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ %dÂ ŅĐĩĐē҃ĐŊда ĐŊаСад ++ ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ҁ(Ҋҁ) %dÂ ŅĐĩĐē҃ĐŊди ĐŊаСад ++ АĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸Ņ‚ĐĩДĐĩаĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸Ņ‚ĐĩĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ĐŊаĐŋŅ€ĐĩĐ´Đ’Ņ…ĐžĐ´ в Ņ†ŅĐģ ĐĩĐēŅ€Đ°ĐŊĐ˜ĐˇŅ…ĐžĐ´ ĐžŅ‚ Ņ†ŅĐģ ĐĩĐēŅ€Đ°ĐŊĐĄĐēŅ€Đ¸Đ˛Đ°ĐŊĐĩ ĐŊа ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐšŅŠŅ€Đ°ĐĐ°ĐŋŅ€ĐĩĐ´ĐĄĐēŅ€Đ¸Đ˛Đ°ĐŊĐĩ ĐŊа Đ´ĐžĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēиПоĐēаСваĐŊĐĩ ĐŊа Đ´ĐžĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēĐ¸ĐŸĐžŅŅ‚Đ°Đ˛ŅĐŊĐĩ ĐŊа ĐŋĐ°ŅƒĐˇĐ°Đ’ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļдаĐŊĐĩĐĄĐēĐžŅ€ĐžŅŅ‚ĐĐ°ĐˇĐ°Đ´ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: ĐŸĐžĐ˛Ņ‚Đ°Ņ€. ĐŊа Đ˛ŅĐ¸Ņ‡Đēи. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ.ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: БĐĩС ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ.ĐĸĐĩĐēŅƒŅ‰ Ņ€ĐĩĐļиĐŧ: ĐŸĐžĐ˛Ņ‚Đ°Ņ€. ĐŊа 1 ĐĩĐģĐĩĐŧĐĩĐŊŅ‚. ĐŸŅ€ĐĩвĐēĐģ. Ņ€ĐĩĐļиĐŧа Са ĐŋĐžĐ˛Ņ‚Đ°Ņ€ŅĐŊĐĩ.ĐŸŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩ ĐŊазадНаĐŋŅ€ĐĩĐ´ŅŠĐē ĐŊа Đ˛ŅŠĐˇĐŋŅ€ĐžĐ¸ĐˇĐ˛ĐĩĐļдаĐŊĐĩŅ‚ĐžĐĐ°ŅŅ‚Ņ€ĐžĐšĐēиПоĐēаСваĐŊĐĩ ĐŊа ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐšŅŠŅ€Đ°ĐĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа Ņ€ĐĩĐļиĐŧа Са Ņ€Đ°ĐˇĐąŅŠŅ€ĐēваĐŊĐĩДĐĩаĐēŅ‚Đ¸Đ˛Đ¸Ņ€Đ°ĐŊĐĩ ĐŊа Ņ€ĐĩĐļиĐŧа Са Ņ€Đ°ĐˇĐąŅŠŅ€ĐēваĐŊĐĩĐĄĐŋĐ¸Ņ€Đ°ĐŊĐĩŅ€ĐĩĐļиĐŧ Са VR%1$s – %2$s%1$.2f Мб/ҁĐĩĐēМоĐŊĐž%1$d × %2$dАĐģŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛ĐĩĐŊ СаĐŋĐ¸ŅĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸ĐšĐžĐŧĐĩĐŊŅ‚Đ°Ņ€Đ”ĐžĐŋҊĐģĐŊĐ¸Ņ‚ĐĩĐģĐĩĐŊ СаĐŋĐ¸ŅĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Đ¸Ņ‡ĐŊĐžĐĐ¸Ņ‰ĐžĐŅƒĐ´Đ¸ĐžĐˇĐ°ĐŋĐ¸ŅĐĄŅ‚ĐĩŅ€ĐĩоОбĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐē5,1-ĐēаĐŊаĐģĐĩĐŊ ОйĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐē7,1-ĐēаĐŊаĐģĐĩĐŊ ОйĐĩĐŧĐĩĐŊ ĐˇĐ˛ŅƒĐēНĐĩиСвĐĩҁ҂ĐŊĐžĐŅĐŧа даĐŊĐŊи (%1$s) ++ ā§Ļ.⧍ā§Ģx ++ ā§Ļ.ā§Ģx ++ ā§Ļ.ā§­ā§Ģx ++ āĻ¸ā§āĻŦāĻžāĻ­āĻžāĻŦāĻŋāĻ• ++ ā§§.⧍ā§Ģx ++ ā§§.ā§Ģx ++ ⧍x ++ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āĻĢāĻžāĻ¸ā§āϟ āĻĢāϰāĻ“ā§ŸāĻžāĻ°ā§āĻĄ āĻ•āϰ⧁āύ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āĻĢāĻžāĻ¸ā§āϟ āĻĢāϰāĻ“ā§ŸāĻžāĻ°ā§āĻĄ āĻ•āϰ⧁āύ ++ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āϰāĻŋāĻ“ā§ŸāĻžāχāĻ¨ā§āĻĄ āĻ•āϰ⧁āύ ++ %d āϏ⧇āϕ⧇āĻ¨ā§āĻĄ āϰāĻŋāĻ“ā§ŸāĻžāχāĻ¨ā§āĻĄ āĻ•āϰ⧁āύ ++ āϏāĻžāĻŦāϟāĻžāχāĻŸā§‡āϞ āϚāĻžāϞ⧁ āĻ•āϰ⧁āύāϏāĻžāĻŦāϟāĻžāχāĻŸā§‡āϞ āĻŦāĻ¨ā§āϧ āĻ•āϰ⧁āύāĻĻā§āϰ⧁āϤ āĻāĻ—āĻŋā§Ÿā§‡ āϝāĻžāύāĻĢ⧁āϞ-āĻ¸ā§āĻ•ā§āϰāĻŋāύ āĻŽā§‹āĻĄā§‡ āĻĻ⧇āϖ⧁āύāĻĢ⧁āϞ-āĻ¸ā§āĻ•ā§āϰāĻŋāύ āĻŽā§‹āĻĄ āĻ›ā§‡ā§œā§‡ āĻŦ⧇āϰ⧋āύāĻĒā§āϞ⧇āϝāĻŧāĻžāϰ āύāĻŋāϝāĻŧāĻ¨ā§āĻ¤ā§āϰāĻŖāϗ⧁āϞāĻŋ āϞ⧁āĻ•āĻžāύāĻĒāϰāĻŦāĻ°ā§āϤ⧀āĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤ āϏ⧇āϟāĻŋāĻ‚āϏ āϞ⧁āĻ•āĻžāύāĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤ āϏ⧇āϟāĻŋāĻ‚āϏ āĻĻ⧇āϖ⧁āύāĻĒāϜ āĻ•āϰ⧁āύāϚāĻžāϞāĻžāύāĻ¸ā§āĻĒāĻŋāĻĄāĻĒā§‚āĻ°ā§āĻŦāĻŦāĻ°ā§āϤ⧀\'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āϏāĻŦ āϰāĻŋāĻĒāĻŋāϟ āĻšā§ŸāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤\'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āϰāĻŋāĻĒāĻŋāϟ āĻšā§Ÿ āύāĻžāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤\'āĻŦāĻ°ā§āϤāĻŽāĻžāύ\' āĻŽā§‹āĻĄ: āĻāĻ•āϟāĻŋ āϰāĻŋāĻĒāĻŋāϟ āĻšā§ŸāĨ¤ \'āϰāĻŋāĻĒāĻŋāϟ\' āĻŽā§‹āĻĄ āϟāĻ—āϞ āĻšā§ŸāĨ¤āĻĒāĻŋāĻ›āĻŋā§Ÿā§‡ āϝāĻžāύāĻ•āϤāϟāĻž āĻĒā§āϞ⧇āĻŦā§āϝāĻžāĻ• āĻšā§Ÿā§‡āϛ⧇āϏ⧇āϟāĻŋāĻ‚āϏāĻĒā§āϞ⧇āϝāĻŧāĻžāϰ āύāĻŋāϝāĻŧāĻ¨ā§āĻ¤ā§āϰāĻŖāϗ⧁āϞāĻŋ āĻĻ⧇āϖ⧁āύ\'āĻļāĻžāĻĢ⧇āϞ\' āĻŽā§‹āĻĄ āϚāĻžāϞ⧁ āĻ•āϰ⧇\'āĻļāĻžāĻĢ⧇āϞ\' āĻŽā§‹āĻĄ āĻŦāĻ¨ā§āϧ āĻ•āϰ⧇āĻĨāĻžāĻŽāĻžāύāĻ­āĻŋāφāϰ āĻŽā§‹āĻĄ%1$s, %2$s%1$.2f āĻāĻŽāĻŦāĻŋāĻĒāĻŋāĻāϏāĻŽā§‹āύ⧋%1$d × %2$dāĻŦāĻŋāĻ•āĻ˛ā§āĻĒCCāϧāĻžāϰāĻžāĻ­āĻžāĻˇā§āϝāĻ…āϤāĻŋāϰāĻŋāĻ•ā§āϤāĻ…āĻŸā§‹āϕ⧋āύāĻ“āϟāĻŋāχ āύ⧟āĻ…āĻĄāĻŋāĻ“āĻ¸ā§āϟāĻŋāϰāĻŋāĻ“āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄ5.1 āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄ7.1 āϏāĻžāϰāĻžāωāĻ¨ā§āĻĄ āϏāĻžāωāĻ¨ā§āĻĄāĻ…āϜāĻžāύāĻžāĻ…āϜāĻžāύāĻž (%1$s) ++ āĨĻ.āĨ¨āĨĢ ā¤—āĨā¤Ŗā¤ž ++ āĨĻ.āĨĢ ā¤—āĨā¤Ŗā¤ž ++ āĨĻ.āĨ­āĨĢ ā¤—āĨā¤Ŗā¤ž ++ ā¤¸ā¤žā¤Žā¤žā¤¨āĨā¤¯ ++ āĨ§.āĨ¨āĨĢ ā¤—āĨā¤Ŗā¤ž ++ āĨ§.āĨĢ ā¤—āĨā¤Ŗā¤ž ++ āĨ¨ ⤗āĨā¤Ŗā¤ž ++ ++ %d ⤏āĨ‡ā¤•āĨ‡ā¤¨āĨā¤Ą ā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤Ģ⤰āĨā¤ĩā¤žā¤°āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ++ %d ⤏āĨ‡ā¤•āĨ‡ā¤¨āĨā¤Ą ā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤Ģ⤰āĨā¤ĩā¤žā¤°āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ++ ++ %d ⤏āĨ‡ā¤•āĨ‡ā¤¨āĨā¤Ą ⤰ā¤ŋā¤ĩā¤žā¤‡ā¤¨āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ++ %d ⤏āĨ‡ā¤•āĨ‡ā¤¨āĨā¤Ą ⤰ā¤ŋā¤ĩā¤žā¤‡ā¤¨āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ++ ⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ā¤šā¤°āĨ‚ ⤏⤕āĨā¤ˇā¤Ž ā¤Ēā¤žā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤¸ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ā¤šā¤°āĨ‚ ⤅⤏⤕āĨā¤ˇā¤Ž ā¤Ēā¤žā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤Ģā¤žā¤¸āĨā¤Ÿ ā¤Ģ⤰āĨā¤ĩā¤žā¤°āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤ĒāĨ‚⤰āĨā¤Ŗ ⤏āĨā¤•āĨā¤°ā¤ŋ⤍ ā¤ŽāĨ‹ā¤Ąā¤Žā¤ž ⤖āĨ‹ā¤˛āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤ĒāĨ‚⤰āĨā¤Ŗ ⤏āĨā¤•āĨā¤°ā¤ŋ⤍ ā¤ŽāĨ‹ā¤Ąā¤Ŧā¤žā¤Ÿ ā¤Ŧā¤žā¤šā¤ŋ⤰ā¤ŋ⤍āĨā¤šāĨ‹ā¤¸āĨā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤°ā¤¸ā¤ŽāĨā¤Ŧ⤍āĨā¤§āĨ€ ⤍ā¤ŋ⤝⤍āĨā¤¤āĨā¤°ā¤Ŗā¤šā¤°āĨ‚ ⤞āĨā¤•ā¤žā¤‰ā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤…⤰āĨā¤•āĨ‹ā¤…⤤ā¤ŋ⤰ā¤ŋ⤕āĨā¤¤ ⤏āĨ‡ā¤Ÿā¤ŋā¤™ā¤šā¤°āĨ‚ ⤞āĨā¤•ā¤žā¤‰ā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤…⤤ā¤ŋ⤰ā¤ŋ⤕āĨā¤¤ ⤏āĨ‡ā¤Ÿā¤ŋā¤™ā¤šā¤°āĨ‚ ā¤ĻāĨ‡ā¤–ā¤žā¤‰ā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤Ē⤜ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤ĒāĨā¤˛āĨ‡ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤—⤤ā¤ŋā¤…ā¤˜ā¤ŋ⤞āĨā¤˛āĨ‹ā¤šā¤žā¤˛ā¤•āĨ‹ ā¤ŽāĨ‹ā¤Ą: ⤏ā¤ŦāĨˆ ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡āĨ¤ ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡ ā¤ŽāĨ‹ā¤Ą ā¤Ÿā¤—ā¤˛ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨāĨ¤ā¤šā¤žā¤˛ā¤•āĨ‹ ā¤ŽāĨ‹ā¤Ą: ⤍ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡āĨ¤ ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡ ā¤ŽāĨ‹ā¤Ą ā¤Ÿā¤—ā¤˛ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨāĨ¤ā¤šā¤žā¤˛ā¤•āĨ‹ ā¤ŽāĨ‹ā¤Ą: ā¤ā¤• ā¤Ēā¤Ÿā¤• ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡āĨ¤ ā¤ĻāĨ‹ā¤šāĨ‹ā¤°ā¤ŋ⤍āĨ‡ ā¤ŽāĨ‹ā¤Ą ā¤Ÿā¤—ā¤˛ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨāĨ¤ā¤°ā¤ŋā¤ĩā¤žā¤‡ā¤¨āĨā¤Ą ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤šā¤žā¤˛ā¤¸ā¤ŽāĨā¤Ž ⤭ā¤ŋā¤Ąā¤ŋ⤝āĨ‹ ā¤ĒāĨā¤˛āĨ‡ ā¤­ā¤ā¤•āĨ‹ ⤅ā¤ĩ⤧ā¤ŋ⤏āĨ‡ā¤Ÿā¤ŋ⤙ā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤°ā¤¸ā¤ŽāĨā¤Ŧ⤍āĨā¤§āĨ€ ⤍ā¤ŋ⤝⤍āĨā¤¤āĨā¤°ā¤Ŗā¤šā¤°āĨ‚ ā¤ĻāĨ‡ā¤–ā¤žā¤‰ā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤¸ā¤Ģ⤞ ā¤ŽāĨ‹ā¤Ą ⤅⤍ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤¸ā¤Ģ⤞ ā¤ŽāĨ‹ā¤Ą ⤅ā¤Ģ ⤗⤰āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨā¤°āĨ‹ā¤•āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨVR ā¤ŽāĨ‹ā¤Ą%1$s, %2$s%1$.2f Mbpsā¤ŽāĨ‹ā¤¨āĨ‹%1$d × %2$dā¤ĩāĨˆā¤•⤞āĨā¤Ēā¤ŋ⤕⤉ā¤Ēā¤ļāĨ€ā¤°āĨā¤ˇā¤•ā¤šā¤°āĨ‚ā¤Ÿā¤ŋā¤ĒāĨā¤Ē⤪āĨ€ā¤ĒāĨ‚⤰⤕⤏āĨā¤ĩā¤¤ā¤ƒā¤•āĨā¤¨āĨˆ ā¤Ē⤍ā¤ŋ ā¤šāĨ‹ā¤‡ā¤¨ā¤…ā¤Ąā¤ŋ⤝āĨ‹ā¤¸āĨā¤ŸāĨ‡ā¤°ā¤ŋ⤝āĨ‹ā¤¸ā¤°ā¤žā¤‰ā¤¨āĨā¤Ą ā¤¸ā¤žā¤‰ā¤¨āĨā¤Ą5.1 ā¤¸ā¤°ā¤žā¤‰ā¤¨āĨā¤Ą ā¤¸ā¤žā¤‰ā¤¨āĨā¤Ą7.1 ā¤¸ā¤°ā¤žā¤‰ā¤¨āĨā¤Ą ā¤¸ā¤žā¤‰ā¤¨āĨā¤Ąā¤…ā¤œāĨā¤žā¤žā¤¤ā¤…ā¤œāĨā¤žā¤žā¤¤ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normaal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Spoel %d sekonde vinnig vorentoe ++ Spoel %d sekondes vinnig vorentoe ++ ++ Spoel %d sekonde terug ++ Spoel %d sekondes terug ++ Aktiveer onderskrifteDeaktiveer onderskrifteSpoel vorentoeGaan na volskermVerlaat volskermVersteek spelerkontrolesVolgendeVersteek bykomende instellingsWys bykomende instellingsOnderbreekSpeelSpoedVorigeHuidige modus: herhaal alles. Wissel herhaalmodus.Huidige modus: herhaal niks. Wissel herhaalmodus.Huidige modus: herhaal een. Wissel herhaalmodus.Spoel terugTerugspeelvorderingInstellingsWys spelerkontrolesAktiveer skommelmodusDeaktiveer skommelmodusStopVR-modus%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAfwisselendOnderskrifteKommentaarAanvullendOutoGeenOudioStereoOmringklank5.1-omringklank7.1-omringklankOnbekendOnbekend (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Spol %d sekund fremover ++ Spol %d sekunder fremover ++ ++ Spol %d sekund bakover ++ Spol %d sekunder bakover ++ SlÃĨ pÃĨ underteksteneSlÃĨ av underteksteneSpol foroverSe i fullskjermAvslutt fullskjermSkjul avspillingskontrolleneNesteSkjul flere innstillingerVis flere innstillingerSett pÃĨ pauseSpill avHastighetForrigeModus: gjenta alle. Endre gjentakelsesmodus.Modus: gjenta ingen. Endre gjentakelsesmodus.Modus: gjenta Ên. Endre gjentakelsesmodus.Spol tilbakeAvspillingsfremdriftInnstillingerVis avspillingskontrolleneSlÃĨ pÃĨ modus for tilfeldig rekkefølgeSlÃĨ av modus for tilfeldig rekkefølgeStoppVR-modus%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativt sporTekstingKommentarerTilleggssporAutomatiskIngenLydStereoSurround-lyd5.1 surround-lyd7.1 surround-lydUkjentUkjent (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ā¤¸ā¤žā¤Žā¤žā¤¨āĨā¤¯ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ⤆⤗āĨ‡ ā¤Ŧā¤ĸā¤ŧā¤žā¤ā¤‚ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ⤆⤗āĨ‡ ā¤Ŧā¤ĸā¤ŧā¤žā¤ā¤‚ ++ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ ++ ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤕āĨ‹ %d ⤏āĨ‡ā¤•ā¤‚ā¤Ą ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ ++ ⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ ā¤šā¤žā¤˛āĨ‚ ⤕⤰āĨ‡ā¤‚⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚⤤āĨ‡āĨ›āĨ€ ⤏āĨ‡ ⤆⤗āĨ‡ ā¤ŦāĨā¤žā¤ā¤‚ā¤Ģā¤ŧāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ ā¤ŽāĨ‹ā¤Ą ā¤Ē⤰ ā¤ĻāĨ‡ā¤–āĨ‡ā¤‚ā¤Ģā¤ŧāĨā¤˛ā¤¸āĨā¤•āĨā¤°āĨ€ā¤¨ ā¤ŽāĨ‹ā¤Ą ⤏āĨ‡ ā¤Ŧā¤žā¤šā¤° ⤍ā¤ŋ⤕⤞āĨ‡ā¤‚ā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤° ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤Ŗ ⤛ā¤ŋā¤Ēā¤žā¤ā¤‚ā¤…ā¤—ā¤˛ā¤žā¤…ā¤¨āĨā¤¯ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ ⤛ā¤ŋā¤Ēā¤žā¤ā¤‚ā¤…ā¤¨āĨā¤¯ ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ ā¤Ļā¤ŋā¤–ā¤žā¤ā¤‚ā¤°āĨ‹ā¤•āĨ‡ā¤‚ā¤šā¤˛ā¤žā¤ā¤‚ā¤°ā¤Ģā¤ŧāĨā¤¤ā¤žā¤°ā¤Ēā¤ŋā¤›ā¤˛ā¤žā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ⤏⤭āĨ€ ⤕āĨ‹ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚.ā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ⤕ā¤ŋ⤏āĨ€ ⤕āĨ‹ ⤍ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚.ā¤ŽāĨŒā¤œāĨ‚ā¤Ļā¤ž ā¤ŽāĨ‹ā¤Ą: ā¤ā¤• ⤕āĨ‹ ā¤ĻāĨ‹ā¤šā¤°ā¤žā¤ā¤‚. ⤰ā¤ŋā¤ĒāĨ€ā¤Ÿ ā¤ŽāĨ‹ā¤Ą ⤟āĨ‰ā¤—⤞ ⤕⤰āĨ‡ā¤‚.ā¤ĒāĨ€ā¤›āĨ‡ ⤞āĨ‡ ā¤œā¤žā¤ā¤‚ā¤ĩāĨ€ā¤Ąā¤ŋ⤝āĨ‹ ⤚⤞⤍āĨ‡ ⤕āĨ€ ā¤ĒāĨā¤°ā¤—⤤ā¤ŋ⤏āĨ‡ā¤Ÿā¤ŋ⤂⤗ā¤ĒāĨā¤˛āĨ‡ā¤¯ā¤° ⤍ā¤ŋ⤝⤂⤤āĨā¤°ā¤Ŗ ā¤Ļā¤ŋā¤–ā¤žā¤ā¤‚ā¤ļā¤Ģā¤ŧ⤞ ā¤ŽāĨ‹ā¤Ą ā¤šā¤žā¤˛āĨ‚ ⤕⤰āĨ‡ā¤‚ā¤ļā¤Ģā¤ŧ⤞ ā¤ŽāĨ‹ā¤Ą ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚ā¤Ŧ⤂ā¤Ļ ⤕⤰āĨ‡ā¤‚VR ā¤ŽāĨ‹ā¤Ą%1$s, %2$s%1$.2f ā¤ā¤Žā¤ŦāĨ€ā¤ĒāĨ€ā¤ā¤¸ā¤ŽāĨ‹ā¤¨āĨ‹ ā¤¸ā¤žā¤‰ā¤‚ā¤Ą%1$d × %2$dā¤ĩā¤ŋ⤕⤞āĨā¤Ē⤏ā¤Ŧā¤Ÿā¤žā¤‡ā¤Ÿā¤˛ā¤•ā¤ŽāĨ‡ā¤‚ā¤ŸāĨā¤°āĨ€ā¤¸ā¤ĒāĨā¤˛ā¤ŋā¤ŽāĨ‡ā¤‚ā¤ŸāĨā¤°āĨ€ā¤…ā¤Ē⤍āĨ‡ ⤆ā¤Ē⤕āĨ‹ā¤ˆ ā¤¨ā¤šāĨ€ā¤‚ā¤‘ā¤Ąā¤ŋ⤝āĨ‹ā¤¸āĨā¤ŸāĨ€ā¤°ā¤ŋ⤝āĨ‹ ā¤¸ā¤žā¤‰ā¤‚ā¤Ąā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ą5.1 ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ą7.1 ā¤¸ā¤°ā¤žā¤‰ā¤‚ā¤Ą ā¤¸ā¤žā¤‰ā¤‚ā¤Ąā¤…ā¤œāĨā¤žā¤žā¤¤ā¤•āĨ‹ā¤ˆ ā¤œā¤žā¤¨ā¤•ā¤žā¤°āĨ€ ā¤¨ā¤šāĨ€ā¤‚ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ áƒŠáƒ•áƒ”áƒŖáƒšáƒ”áƒ‘áƒ áƒ˜áƒ•áƒ˜ ++ 1,25x ++ 1,5x ++ 2x ++ ++ áƒŦინ გადახვევა %d áƒŦამით ++ áƒŦინ გადახვევა %d áƒŦამით ++ ++ áƒŖáƒ™áƒáƒœ გადახვევა %d áƒŦამით ++ áƒŖáƒ™áƒáƒœ გადახვევა %d áƒŦამით ++ áƒĄáƒŖáƒ‘áƒĸიáƒĸრების áƒŠáƒáƒ áƒ—áƒ•áƒáƒĄáƒŖáƒ‘áƒĸიáƒĸრების გათიშვაáƒŦინ áƒ’áƒáƒ“áƒáƒŽáƒ•áƒ”áƒ•áƒáƒĄáƒ áƒŖáƒšáƒ”áƒ™áƒ áƒáƒœáƒ˜áƒáƒœ რეჟიმში áƒ¨áƒ”áƒĄáƒ•áƒšáƒáƒĄáƒ áƒŖáƒšáƒ”áƒ™áƒ áƒáƒœáƒ˜áƒáƒœáƒ˜ რეჟიმიდან გამოსვლადამკვრელის სამართავი áƒĻილაკების დამალვაშემდეგდამაáƒĸებითი პარამეáƒĸრების დამალვადამაáƒĸებითი პარამეáƒĸრების áƒŠáƒ•áƒ”áƒœáƒ”áƒ‘áƒáƒžáƒáƒŖáƒ–áƒáƒ“áƒáƒ™áƒ•áƒ áƒáƒĄáƒ˜áƒŠáƒĨარეáƒŦინამიმდინარე რეჟიმი: ყველას გამეორება. გადართეთ გამეორების რეჟიმი.მიმდინარე რეჟიმი: არაფრიქ გამეორება. გადართეთ გამეორების რეჟიმი.მიმდინარე რეჟიმი: ერთის გამეორება. გადართეთ გამეორების რეჟიმი.áƒŖáƒ™áƒáƒœ გადახვევადაკვრის პროგრესიპარამეáƒĸრებიდამკვრელის სამართავი áƒĻილაკების áƒŠáƒ•áƒ”áƒœáƒ”áƒ‘áƒáƒáƒ áƒ”áƒŖáƒšáƒáƒ“ დაკვრის რეჟიმის áƒŠáƒáƒ áƒ—áƒ•áƒáƒáƒ áƒ”áƒŖáƒšáƒáƒ“ დაკვრის რეჟიმის გათიშვაშეáƒŦყვეáƒĸაVR რეჟიმი%1$s, %2$s%1$.2f მბიáƒĸ/áƒŦმმონო%1$d × %2$dალáƒĸერნაáƒĸáƒ˜áƒŖáƒšáƒ˜áƒ“áƒáƒŽáƒŖáƒ áƒŖáƒšáƒ˜ áƒĄáƒŖáƒ‘áƒĸიáƒĸრებიკომენáƒĸარიდამაáƒĸებითიავáƒĸომაáƒĸáƒŖáƒ áƒ˜áƒáƒ áƒĒáƒ”áƒ áƒ—áƒ˜áƒáƒŖáƒ“áƒ˜áƒáƒĄáƒĸერეომოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ ხმა5.1 მოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ ხმა7.1 მოáƒĒáƒŖáƒšáƒáƒ‘áƒ˜áƒ—áƒ˜ áƒŽáƒ›áƒáƒŖáƒĒáƒœáƒáƒ‘áƒ˜áƒŖáƒĒნობი (%1$s) ++ 0,25-fach ++ 0,5-fach ++ 0,75-fach ++ Standard ++ 1,25-fach ++ 1,5-fach ++ 2-fach ++ ++ %d Sekunde vorspulen ++ %d Sekunden vorspulen ++ ++ %d Sekunde zurÃŧckspulen ++ %d Sekunden zurÃŧckspulen ++ Untertitel aktivierenUntertitel deaktivierenVorspulenVollbild aktivierenVollbild beendenPlayer-Steuerelemente ausblendenWeiterZusätzliche Einstellungen ausblendenZusätzliche Einstellungen einblendenPausierenWiedergebenGeschwindigkeitZurÃŧckAktueller Modus: alles wiederholen. Wiederholungsmodus ändern.Aktueller Modus: nichts wiederholen. Wiederholungsmodus ändern.Aktueller Modus: einen Titel wiederholen. Wiederholungsmodus ändern.ZurÃŧckspulenWiedergabefortschrittEinstellungenPlayer-Steuerelemente anzeigenZufallsmix aktivierenZufallsmix deaktivierenBeendenVR-Modus%1$s, %2$s%1$.2f Mbit/sMono%1$d × %2$dAlternativer TrackUntertitelKommentareZusatzinhalteAutomatischOhneAudioStereoSurround-Sound5.1-Surround-Sound7.1-Surround-SoundUnbekanntUnbekannt (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ %d saniyə irəli çəkin ++ %d saniyə irəli çəkin ++ ++ %d saniyə geri çəkin ++ %d saniyə geri çəkin ++ Subtitrləri aktiv edinSubtitrləri deaktiv edinİrəli çəkinTam ekrana daxil olunTam ekrandan Ã§ÄąxÄąnOyunçu nəzarətlərini gizlədinSonraƏlavə ayarlarÄą gizlədinƏlavə ayarlarÄą gÃļstərinPauzaOxudunSÃŧrətƏvvəlCari rejim: HamÄąsÄąnÄą təkrarlayÄąn. Təkrarlanma rejimini keçirin.Cari rejim: Heç birini təkrarlamayÄąn. Təkrarlanma rejimini keçirin.Cari rejim: Birini təkrarlayÄąn. Təkrarlanma rejimini keçirin.Geri çəkinOxutmanÄąn gedişatÄąAyarlarOyunçu nəzarətlərini gÃļstərinQarÄąÅŸdÄąrma rejimini aktiv edinQarÄąÅŸdÄąrma rejimini deaktiv edinDayandÄąrÄąnVR rejimi%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativNÃŧsxəni alanŞərhƏlavəAvtomatikYoxdurAudioStereoYÃŧksək səs5.1 yÃŧksək səs7.1 yÃŧksək səsNaməlumNaməlum (%1$s) ++ 0.25ë°°ė† ++ 0.5ë°°ė† ++ 0.75ë°°ė† ++ ëŗ´í†ĩ ++ 1.25ë°°ė† ++ 1.5ë°°ė† ++ 2ë°°ė† ++ ++ %d봈 뚨ëĻŦ 감기 ++ %d봈 뚨ëĻŦ 감기 ++ ++ %d봈 되감기 ++ %d봈 되감기 ++ ėžë§‰ ė‚ŦėšŠ ė„¤ė •ėžë§‰ ė‚ŦėšŠ ė¤‘ė§€ëš¨ëĻŦ 氐揰렄랴 화면ėœŧ로 ė „í™˜ė „ė˛´ 화면 ėĸ…ëŖŒí”Œë ˆė´ė–´ ėģ¨íŠ¸ëĄ¤ ėˆ¨ę¸°ę¸°ë‹¤ėŒėļ”ę°€ 네렕 눍揰揰ėļ”ę°€ 네렕 í‘œė‹œėŧė‹œė¤‘ė§€ėžŦėƒė†ë„ė´ė „í˜„ėžŦ ëĒ¨ë“œ: ëĒ¨ë‘ 반ëŗĩ. 반ëĒŠ ëĒ¨ë“œ ė „í™˜.현ėžŦ ëĒ¨ë“œ: 반ëŗĩ ė•ˆí•¨. 반ëĒŠ ëĒ¨ë“œ ė „í™˜.현ėžŦ ëĒ¨ë“œ: 한 氜 반ëŗĩ. 반ëĒŠ ëĒ¨ë“œ ė „í™˜.되감기ėžŦėƒ ė§„í–‰ëĨ ė„¤ė •í”Œë ˆė´ė–´ ėģ¨íŠ¸ëĄ¤ í‘œė‹œė…”í”Œ ëĒ¨ë“œ ė‚ŦėšŠ ė„¤ė •ė…”í”Œ ëĒ¨ë“œ ė‚ŦėšŠ ė¤‘ė§€ė¤‘ė§€ę°€ėƒ í˜„ė‹¤ ëĒ¨ë“œ%1$s, %2$s%1$.2fMbpsëĒ¨ë…¸%1$d×%2$dëŒ€ė˛´ėžë§‰ë…ŧ평ėļ”ę°€ėžë™ė—†ėŒė˜¤ë””ė˜¤ėŠ¤í…Œë ˆė˜¤ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œ5.1 ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œ7.1 ė„œëŧėš´ë“œ ė‚Ŧėš´ë“œė•Œ 눘 ė—†ėŒė•Œ 눘 ė—†ėŒ(%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ā´¸ā´žā´§ā´žā´°ā´Ŗ ā´ĩāĩ‡ā´—ā´¤āĩā´¤ā´ŋāĩŊ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ā´ĩāĩ‡ā´—ā´¤āĩā´¤ā´ŋāĩŊ %d ā´¸āĩ†ā´•āĩā´•āĩģā´Ąāĩ ā´Žāĩā´¨āĩā´¨āĩ‹ā´Ÿāĩā´Ÿāĩ ā´¨āĩ€ā´•āĩā´•āĩā´• ++ ā´ĩāĩ‡ā´—ā´¤āĩā´¤ā´ŋāĩŊ %d ā´¸āĩ†ā´•āĩā´•āĩģā´Ąāĩ ā´Žāĩā´¨āĩā´¨āĩ‹ā´Ÿāĩā´Ÿāĩ ā´¨āĩ€ā´•āĩā´•āĩā´• ++ ++ %d ā´¸āĩ†ā´•āĩā´•āĩģā´Ąāĩ ā´Ēā´ŋā´¨āĩā´¨āĩ‹ā´Ÿāĩā´Ÿāĩ ā´¨āĩ€ā´•āĩā´•āĩā´• ++ %d ā´¸āĩ†ā´•āĩā´•āĩģā´Ąāĩ ā´Ēā´ŋā´¨āĩā´¨āĩ‹ā´Ÿāĩā´Ÿāĩ ā´¨āĩ€ā´•āĩā´•āĩā´• ++ ā´¸ā´Ŧāĩâ€Œā´Ÿāĩˆā´ąāĩā´ąā´ŋā´˛āĩā´•āĩž ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´¨ā´•āĩā´ˇā´Žā´Žā´žā´•āĩā´•āĩā´•ā´¸ā´Ŧāĩâ€Œā´Ÿāĩˆā´ąāĩā´ąā´ŋā´˛āĩā´•āĩž ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´¨ā´°ā´šā´ŋā´¤ā´Žā´žā´•āĩā´•āĩā´•ā´ĩāĩ‡ā´—ā´¤āĩā´¤ā´ŋāĩŊ ā´Žāĩā´¨āĩā´¨āĩ‹ā´Ÿāĩā´Ÿāĩ ā´Ēāĩ‹ā´ĩāĩā´•ā´Ēāĩ‚āĩŧā´Ŗāĩā´Ŗ ā´¸āĩâ€Œā´•āĩā´°āĩ€āĩģ ⴆⴕāĩā´•āĩā´•ā´Ēāĩ‚āĩŧā´Ŗāĩā´Ŗ ā´¸āĩâ€Œā´•āĩā´°āĩ€ā´¨ā´ŋāĩŊ ā´¨ā´ŋā´¨āĩā´¨āĩ ā´Ēāĩā´ąā´¤āĩā´¤āĩā´•ā´Ÿā´•āĩā´•āĩā´•ā´Ēāĩā´˛āĩ‡ā´¯āĩŧ ā´¨ā´ŋⴝⴍāĩā´¤āĩā´°ā´Ŗā´™āĩā´™āĩž ā´Žā´ąā´¯āĩā´•āĩā´•āĩā´•ā´…ā´Ÿāĩā´¤āĩā´¤ā´¤āĩā´…ā´§ā´ŋā´• ā´•āĩā´°ā´Žāĩ€ā´•ā´°ā´Ŗā´‚ ā´Žā´ąā´¯āĩā´•āĩā´•āĩā´•ā´…ā´§ā´ŋā´• ā´•āĩā´°ā´Žāĩ€ā´•ā´°ā´Ŗā´‚ ā´•ā´žā´Ŗā´ŋā´•āĩā´•āĩā´•ā´¤āĩŊā´•āĩā´•ā´žā´˛ā´‚ ā´¨ā´ŋāĩŧā´¤āĩā´¤āĩā´•ā´Ēāĩā´˛āĩ‡ ⴚāĩ†ā´¯āĩā´¯āĩā´•ā´ĩāĩ‡ā´—ā´¤ā´Žāĩā´Žāĩā´Ēā´¤āĩā´¤āĩ‡ā´¤āĩā´¨ā´ŋā´˛ā´ĩā´ŋā´˛āĩ† ā´Žāĩ‹ā´Ąāĩ: ā´Žā´˛āĩā´˛ā´žā´‚ ā´†ā´ĩāĩŧā´¤āĩā´¤ā´ŋā´•āĩā´•āĩā´•. ā´†ā´ĩāĩŧā´¤āĩā´¤ā´¨ ā´Žāĩ‹ā´Ąāĩ ā´Žā´žā´ąāĩā´ąāĩ‚.ā´¨ā´ŋā´˛ā´ĩā´ŋā´˛āĩ† ā´Žāĩ‹ā´Ąāĩ: ā´’ā´¨āĩā´¨āĩā´‚ ā´†ā´ĩāĩŧā´¤āĩā´¤ā´ŋā´•āĩā´•ā´°āĩā´¤āĩ. ā´†ā´ĩāĩŧā´¤āĩā´¤ā´¨ ā´Žāĩ‹ā´Ąāĩ ā´Žā´žā´ąāĩā´ąāĩ‚.ā´¨ā´ŋā´˛ā´ĩā´ŋā´˛āĩ† ā´Žāĩ‹ā´Ąāĩ: ā´’ā´¨āĩā´¨āĩ ā´†ā´ĩāĩŧā´¤āĩā´¤ā´ŋā´•āĩā´•āĩā´•. ā´†ā´ĩāĩŧā´¤āĩā´¤ā´¨ ā´Žāĩ‹ā´Ąāĩ ā´Žā´žā´ąāĩā´ąāĩ‚.ā´Ēā´ŋā´¨āĩā´¨ā´ŋā´˛āĩ‡ā´•āĩā´•āĩ ā´Ēāĩ‹ā´ĩāĩā´•ā´Ēāĩā´˛āĩ‡ā´Ŧā´žā´•āĩā´•āĩ ā´Ēāĩā´°āĩ‹ā´—ā´¤ā´ŋā´•āĩā´°ā´Žāĩ€ā´•ā´°ā´Ŗā´‚ā´Ēāĩā´˛āĩ‡ā´¯āĩŧ ā´¨ā´ŋⴝⴍāĩā´¤āĩā´°ā´Ŗā´™āĩā´™āĩž ā´•ā´žā´Ŗā´ŋā´•āĩā´•āĩā´•ā´ˇā´Ģā´ŋāĩž ā´Žāĩ‹ā´Ąāĩ ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´¨ā´•āĩā´ˇā´Žā´Žā´žā´•āĩā´•āĩā´•ā´ˇā´Ģā´ŋāĩž ā´Žāĩ‹ā´Ąāĩ ā´Ēāĩā´°ā´ĩāĩŧā´¤āĩā´¤ā´¨ā´°ā´šā´ŋā´¤ā´Žā´žā´•āĩā´•āĩā´•ā´¨ā´ŋā´°āĩâ€ā´¤āĩā´¤āĩā´•VR ā´Žāĩ‡ā´žā´Ąāĩ%1$s, %2$s%1$.2f Mbpsā´Žāĩ‡ā´žā´Ŗāĩ‡ā´ž%1$d × %2$dⴇⴤⴰ ⴟāĩā´°ā´žā´•āĩā´•āĩCCā´ĩā´ŋā´ĩā´°ā´Ŗā´‚ā´¸ā´Ēāĩā´˛ā´ŋā´Žāĩ†ā´¨āĩā´ąā´ąā´ŋā´¸āĩā´ĩā´¯ā´Žāĩ‡ā´ĩā´’ā´¨āĩā´¨āĩā´Žā´ŋā´˛āĩā´˛ā´“ā´Ąā´ŋā´¯āĩ‹ā´¸āĩā´ąāĩā´ąāĩ€ā´°ā´ŋā´¯āĩ‹ā´¸ā´ąāĩ—ā´Ŗāĩā´Ÿāĩ ā´¸āĩ—ā´Ŗāĩā´Ÿāĩ5.1 ā´¸ā´ąāĩ—ā´Ŗāĩā´Ÿāĩ ā´¸āĩ—ā´Ŗāĩā´Ÿāĩ7.1 ā´¸ā´ąāĩ—ā´Ŗāĩā´Ÿāĩ ā´¸āĩ—ā´Ŗāĩā´Ÿāĩā´…ā´œāĩā´žā´žā´¤ā´‚ā´…ā´œāĩā´žā´žā´¤ā´‚ (%1$s) ++ 0,25 ĐŋĐ°Ņ‚Đ¸ ++ 0,5 ĐŋĐ°Ņ‚Đ¸ ++ 0,75 ĐŋĐ°Ņ‚Đ¸ ++ ĐĐžŅ€ĐŧаĐģĐŊĐž ++ 1,25 ĐŋĐ°Ņ‚Đ¸ ++ 1,5 ĐŋĐ°Ņ‚Đ¸ ++ 2 ĐŋĐ°Ņ‚Đ¸ ++ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ ĐŊаĐŋŅ€ĐĩĐ´ %d ҁĐĩĐē҃ĐŊда ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ ĐŊаĐŋŅ€ĐĩĐ´ %d ҁĐĩĐē҃ĐŊди ++ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊда ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊди ++ ОвозĐŧĐžĐļĐĩŅ‚Đĩ ĐŗĐ¸ Ņ‚Đ¸Ņ‚ĐģĐžĐ˛Đ¸Ņ‚ĐĩОĐŊĐĩвОСĐŧĐžĐļĐĩŅ‚Đĩ ĐŗĐ¸ Ņ‚Đ¸Ņ‚ĐģĐžĐ˛Đ¸Ņ‚ĐĩĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜ ĐŊаĐŋŅ€ĐĩĐ´ĐŸŅ€Đ¸ĐēаС ĐŊа ҆ĐĩĐģ ĐĩĐēŅ€Đ°ĐŊИСĐģĐĩСĐĩŅ‚Đĩ Од ҆ĐĩĐģ ĐĩĐēŅ€Đ°ĐŊĐĄĐēŅ€Đ¸Ņ˜ ĐŗĐ¸ ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐĩŅ€ĐžŅ‚ĐĄĐģĐĩĐ´ĐŊаХОĐēŅ€Đ¸Ņ˜Ņ‚Đĩ ĐŗĐ¸ Đ´ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŋĐžŅŅ‚Đ°Đ˛ĐēĐ¸ĐŸĐžĐŗĐģĐĩĐ´ĐŊĐĩŅ‚Đĩ ĐŗĐ¸ Đ´ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ¸Ņ‚Đĩ ĐŋĐžŅŅ‚Đ°Đ˛ĐēĐ¸ĐŸĐ°ŅƒĐˇĐ°ĐŸŅƒŅˆŅ‚Đ¸Đ‘Ņ€ĐˇĐ¸ĐŊĐ°ĐŸŅ€ĐĩŅ‚Ņ…ĐžĐ´ĐŊаĐĸĐĩĐēОвĐŊĐž: ĐŋĐžĐ˛Ņ‚ĐžŅ€Đ¸ ĐŗĐ¸ ŅĐ¸Ņ‚Đĩ. ВĐēĐģŅƒŅ‡Đ¸/Đ¸ŅĐēĐģŅƒŅ‡Đ¸ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅƒĐ˛Đ°ŅšĐĩ.ĐĸĐĩĐēОвĐŊĐž: ĐŊĐĩ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅƒĐ˛Đ°Ņ˜. ВĐēĐģŅƒŅ‡Đ¸/Đ¸ŅĐēĐģŅƒŅ‡Đ¸ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅƒĐ˛Đ°ŅšĐĩ.ĐĸĐĩĐēОвĐŊĐž: ĐŋĐžĐ˛Ņ‚ĐžŅ€Đ¸ ĐĩĐ´ĐŊа. ВĐēĐģŅƒŅ‡Đ¸/Đ¸ŅĐēĐģŅƒŅ‡Đ¸ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅƒĐ˛Đ°ŅšĐĩ.ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜ ĐŊаĐŊазадНаĐŋŅ€ĐĩĐ´ĐžĐē ĐŊа Ņ€ĐĩĐŋŅ€ĐžĐ´ŅƒĐēŅ†Đ¸Ņ˜Đ°Ņ‚Đ°ĐŸĐžŅŅ‚Đ°Đ˛ĐēĐ¸ĐŸŅ€Đ¸ĐēаĐļи ĐŗĐ¸ ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐ¸Ņ‚Đĩ ĐŊа ĐŋĐģĐĩĐĩŅ€ĐžŅ‚ĐžĐ˛ĐžĐˇĐŧĐžĐļи Ņ€ĐĩĐļиĐŧ ĐŊа ĐŧĐĩŅˆĐ°ŅšĐĩОĐŊĐĩвОСĐŧĐžĐļи Ņ€ĐĩĐļиĐŧ ĐŊа ĐŧĐĩŅˆĐ°ŅšĐĩĐĄĐžĐŋŅ€Đ¸Đ ĐĩĐļиĐŧ ĐŊа VR%1$s, %2$s%1$.2f MĐą/ŅĐœĐžĐŊĐž%1$d × %2$dАĐģŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛ĐŊаĐĸĐ¸Ņ‚ĐģовиКоĐŧĐĩĐŊŅ‚Đ°Ņ€Đ”ĐžĐŋĐžĐģĐŊĐ¸Ņ‚ĐĩĐģĐŊĐ°ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚ŅĐēaНĐĩĐŧĐ°ĐŅƒĐ´Đ¸ĐžĐĄŅ‚ĐĩŅ€ĐĩоОĐŋĐēŅ€ŅƒĐļŅƒĐ˛Đ°Ņ‡Đēи ĐˇĐ˛ŅƒĐē5.1 ĐžĐŋĐēŅ€ŅƒĐļŅƒĐ˛Đ°Ņ‡Đēи ĐˇĐ˛ŅƒĐē7.1 ĐžĐŋĐēŅ€ŅƒĐļŅƒĐ˛Đ°Ņ‡Đēи ĐˇĐ˛ŅƒĐēНĐĩĐŋОСĐŊĐ°Ņ‚Đ°ĐĐĩĐŋОСĐŊĐ°Ņ‚Đž (%1$s) ++ 0.25 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 0.5 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 0.75 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ ā˛¸ā˛žā˛Žā˛žā˛¨āŗā˛¯ ++ 1.25 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 1.5 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ 2 ā˛Ēā˛Ÿāŗā˛Ÿāŗ ++ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ %d ā˛¸āŗ†ā˛•āŗ†ā˛‚ā˛Ąāŗâ€Œā˛—ā˛ŗā˛ˇāŗā˛Ÿāŗ ➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗ ā˛Žā˛žā˛Ąā˛ŋ ++ ➏ā˛Ŧāŗâ€Œā˛Ÿāŗˆā˛Ÿā˛˛āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛¸ā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ➏ā˛Ŧāŗâ€Œā˛Ÿāŗˆā˛Ÿā˛˛āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛ˇāŗā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋā˛Ģā˛žā˛¸āŗā˛Ÿāŗ ā˛Ģā˛žā˛°āŗā˛ĩā˛°āŗā˛Ąāŗā˛Ģāŗā˛˛āŗâ€Œā˛¸āŗā˛•āŗā˛°āŗ€ā˛¨āŗâ€Œā˛—āŗ† ā˛Ēāŗā˛°ā˛ĩāŗ‡ā˛ļā˛ŋ➏ā˛ŋā˛Ģāŗā˛˛āŗâ€Œā˛¸āŗā˛•āŗā˛°āŗ€ā˛¨āŗâ€Œā˛¨ā˛ŋ➂ā˛Ļ ➍ā˛ŋā˛°āŗā˛—ā˛Žā˛ŋ➏ā˛ŋā˛Ēāŗā˛˛āŗ‡ā˛¯ā˛°āŗ ➍ā˛ŋā˛¯ā˛‚ā˛¤āŗā˛°ā˛Ŗā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛Žā˛°āŗ†ā˛Žā˛žā˛Ąā˛ŋā˛Žāŗā˛‚ā˛Ļāŗ†ā˛šāŗ†ā˛šāŗā˛šāŗā˛ĩ➰ā˛ŋ ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ā˛Žā˛°āŗ† ā˛Žā˛žā˛Ąā˛ŋā˛šāŗ†ā˛šāŗā˛šāŗā˛ĩ➰ā˛ŋ ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺋➰ā˛ŋ➏ā˛ŋā˛ĩā˛ŋā˛°ā˛žā˛Žā˛Ēāŗā˛˛āŗ‡ā˛ĩāŗ‡ā˛—ā˛šā˛ŋ➂ā˛Ļā˛ŋ➍ā˛Ļāŗā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ā˛Žā˛˛āŗā˛˛ā˛ĩā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ.ā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ā˛¯ā˛žā˛ĩ⺁ā˛Ļā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛Ŧāŗ‡ā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ.ā˛ˆā˛—ā˛ŋ➍ ā˛Žāŗ‹ā˛Ąāŗ: ➒➂ā˛Ļā˛¨āŗā˛¨āŗ ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žā˛žā˛Ąā˛ŋ. ➰ā˛ŋā˛Ēāŗ€ā˛Ÿāŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛Ÿā˛žā˛—ā˛˛āŗ ā˛Žā˛žā˛Ąā˛ŋ.➰ā˛ŋā˛ĩāŗˆā˛‚ā˛Ąāŗā˛Ēāŗā˛˛āŗ‡ā˛Ŧāŗā˛¯ā˛žā˛•āŗ ā˛Ēāŗā˛°ā˛—ā˛¤ā˛ŋā˛¯ā˛˛āŗā˛˛ā˛ŋā˛Ļāŗ†ā˛¸āŗ†ā˛Ÿāŗā˛Ÿā˛ŋā˛‚ā˛—āŗâ€Œā˛—ā˛ŗāŗā˛Ēāŗā˛˛āŗ‡ā˛¯ā˛°āŗ ➍ā˛ŋā˛¯ā˛‚ā˛¤āŗā˛°ā˛Ŗā˛—ā˛ŗā˛¨āŗā˛¨āŗ ➤⺋➰ā˛ŋ➏ā˛ŋā˛ļā˛Ģā˛˛āŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛…ā˛¨āŗā˛¨āŗā˛¸ā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋā˛ļā˛Ģā˛˛āŗ ā˛Žāŗ‹ā˛Ąāŗ ā˛…ā˛¨āŗā˛¨āŗ ➍ā˛ŋā˛ˇāŗā˛•āŗā˛°ā˛ŋā˛¯ā˛—āŗŠā˛ŗā˛ŋ➏ā˛ŋ➍ā˛ŋā˛˛āŗā˛˛ā˛ŋ➏ā˛ŋVR ā˛Žāŗ‹ā˛Ąāŗ%1$s, %2$s%1$.2f Mbpsā˛Žāŗ†āŗ‚ā˛¨āŗ†āŗ‚%1$d × %2$dā˛Ēā˛°āŗā˛¯ā˛žā˛¯CCā˛ĩāŗā˛¯ā˛žā˛–āŗā˛¯ā˛žā˛¨ā˛Ēāŗ‚ā˛°ā˛•ā˛¸āŗā˛ĩā˛¯ā˛‚ā˛¯ā˛žā˛ĩ⺁ā˛Ļāŗ‚ ā˛…ā˛˛āŗā˛˛ā˛†ā˛Ąā˛ŋā˛¯āŗ‹ā˛¸āŗā˛Ÿāŗ€ā˛°ā˛ŋā˛¯āŗŠā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ5.1 ā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ7.1 ā˛¸ā˛°āŗŒā˛‚ā˛Ąāŗ ā˛ļā˛Ŧāŗā˛Ļ➅ā˛Ē➰ā˛ŋ➚ā˛ŋ➤➅ā˛Ē➰ā˛ŋ➚ā˛ŋ➤ (%1$s) ++ 0,25 x ++ 0,5 x ++ 0,75 x ++ Normalno ++ 1,25 x ++ 1,5 x ++ 2 x ++ ++ Premotavanje %d sekundu naprijed ++ Premotavanje %d sekunde naprijed ++ Premotavanje %d sekundi naprijed ++ ++ Premotavanje %d sekundu nazad ++ Premotavanje %d sekunde nazad ++ Premotavanje %d sekundi nazad ++ Omogućavanje titlovaOnemogućavanje titlovaPremotavanje unaprijedPrikaz preko cijelog ekranaIsključ. prikaza preko cijelog ekranaSakrij kontrole plejeraNaprijedSakrivanje dodatnih postavkiPrikaz dodatnih postavkiPauzaReproduciranjeBrzinaNazadTrenutni način: Ponovi sve. Uklj./isklj. ponavlj.Trenutni način: Ne ponavljaj. Uklj./isklj. ponavlj.Trenutni način: Ponovi jedno. Uklj./isklj. ponavlj.Premotavanje unazadNapredak reprodukcijePostavkePrikaÅži kontrole plejeraOmogućavanje nasumičnog načina radaOnemogućavanje nasumičnog načina radaZaustavljanjeVR način rada%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativni zapisTitloviKomentariDodatni zapisAutomatskiNiÅĄtaZvukStereoProstorno ozvučenjeProstorno ozvučenje 5.1Prostorno ozvučenje 7.1NepoznatoNepoznato (%1$s) ++ ၀.၂၅ ဆ ++ ၀.၅ ဆ ++ ၀.၇၅ ဆ ++ ပုá€ļမှနá€ē ++ ၁.၂၅ ဆ ++ ၁.၅ ဆ ++ ၂ ဆ ++ ++ á€›á€žá€ąá€ˇá€žá€­á€¯á€ˇ %d စက္ကန့á€ēရစá€ēရနá€ē ++ á€›á€žá€ąá€ˇá€žá€­á€¯á€ˇ %d စက္ကန့á€ēရစá€ēရနá€ē ++ ++ နေá€Ŧကá€ēá€žá€­á€¯á€ˇ %d စက္ကန့á€ēရစá€ēရနá€ē ++ နေá€Ŧကá€ēá€žá€­á€¯á€ˇ %d စက္ကန့á€ēရစá€ēရနá€ē ++ စá€Ŧတနá€ēးထိုး ဖá€Ŋင့á€ēပá€Ģစá€Ŧတနá€ēးထိုး ပိတá€ēပá€Ģá€›á€žá€ąá€ˇá€žá€­á€¯á€ˇ အမá€ŧနá€ēသá€Ŋá€Ŧးရနá€ēဖနá€ēသá€Ŧးပá€ŧငá€ēအပá€ŧည့á€ēá€žá€­á€¯á€ˇ ဝငá€ēရေá€Ŧကá€ēပá€Ģဖနá€ēသá€Ŧးပá€ŧငá€ēအပá€ŧည့á€ēမှ ထá€Ŋကá€ēရနá€ēပလေယá€Ŧ ခလုတá€ēမá€ģá€Ŧးကို ဝှကá€ēရနá€ēá€›á€žá€ąá€ˇá€žá€­á€¯á€ˇá€”á€ąá€Ŧကá€ēထပá€ēဆကá€ēတငá€ēမá€ģá€Ŧးကို ဖá€ģေá€Ŧကá€ēသညá€ēနေá€Ŧကá€ēထပá€ēဆကá€ēတငá€ēမá€ģá€Ŧးကို ပá€ŧသညá€ēခဏရပá€ēရနá€ēဖá€Ŋင့á€ēရနá€ēမá€ŧနá€ēနသုနá€ēးယခငá€ēလကá€ēရသိမုဒá€ē- အá€Ŧးလုá€ļးပá€ŧနá€ēကá€ģေá€Ŧ့ရနá€ē။ ပá€ŧနá€ēကá€ģေá€Ŧá€ˇá€™á€¯á€’á€ē ပá€ŧေá€Ŧငá€ēးရနá€ē။လကá€ēရသိမုဒá€ē- ပá€ŧနá€ēမကá€ģေá€Ŧ့ပá€Ģနှင့á€ē။ ပá€ŧနá€ēကá€ģေá€Ŧá€ˇá€™á€¯á€’á€ē ပá€ŧေá€Ŧငá€ēးရနá€ē။လကá€ēရသိမုဒá€ē- တစá€ēခုပá€ŧနá€ēကá€ģေá€Ŧ့ရနá€ē။ ပá€ŧနá€ēကá€ģေá€Ŧá€ˇá€™á€¯á€’á€ē ပá€ŧေá€Ŧငá€ēးရနá€ē။ပá€ŧနá€ēရစá€ēရနá€ēဖá€Ŋင့á€ēသည့á€ē အနေအထá€Ŧးဆကá€ēတငá€ēမá€ģá€Ŧးပလေယá€Ŧ ခလုတá€ēမá€ģá€Ŧးကို ပá€ŧရနá€ēရေá€Ŧသမမá€Ŋá€žá€ąá€™á€¯á€’á€ē ဖá€Ŋင့á€ēရနá€ēရေá€Ŧသမမá€Ŋá€žá€ąá€™á€¯á€’á€ē ပိတá€ēရနá€ēရပá€ēရနá€ēVR မုဒá€ē%1$s၊ %2$s%1$.2f Mbpsမိုနို%1$d × %2$dအရနá€ēCCထငá€ēမá€ŧငá€ēသုá€ļးသပá€ēခá€ģကá€ēနေá€Ŧကá€ēဆကá€ēတá€Ŋá€˛á€Ąá€œá€­á€¯á€Ąá€œá€ģေá€Ŧကá€ēမရှိအသá€ļစတဎရဎယိုပတá€ēလညá€ē အသá€ļစနစá€ē5.1 ပတá€ēလညá€ē အသá€ļစနစá€ē7.1 ပတá€ēလညá€ē အသá€ļစနစá€ēအမညá€ēမသိအမá€ģá€­á€¯á€¸á€Ąá€™á€Šá€ēမသိ (%1$s) ++ ØŖØŗØąØš Ø¨Ų€ 0.25 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų€ 0.5 Ų…ØąØ§ØĒ ++ ØŖØŗØąØš Ø¨Ų€ 0.75 Ų…ØąØŠ ++ ØšØ§Ø¯ŲŠØŠ ++ ØŖØŗØąØš Ø¨Ų€ 1.25 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų€ 1.5 Ų…ØąØŠ ++ ØŖØŗØąØš Ø¨Ų…ØąØĒŲŠŲ† ++ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØŠ ŲˆØ§Ø­Ø¯ØŠ (%d) ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØĒŲŽŲŠŲ† (%d) ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢŲˆØ§Ų†Ų ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØš Ų„Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØŠ ŲˆØ§Ø­Ø¯ØŠ (%d) ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą ØĢØ§Ų†ŲŠØĒŲŽŲŠŲ† (%d) ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢŲˆØ§Ų†Ų ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒØąØŦŲŠØš Ø§Ų„ŲŲŠØ¯ŲŠŲˆ Ø¨Ų…Ų‚Ø¯Ø§Øą %d ØĢØ§Ų†ŲŠØŠ ++ ØĒŲØšŲŠŲ„ Ø§Ų„ØĒØąØŦŲ…ØŠØĨŲŠŲ‚Ø§Ų Ø§Ų„ØĒØąØŦŲ…ØŠØĒŲ‚Ø¯ŲŠŲ… ØŗØąŲŠØšØ¯ØŽŲˆŲ„ ØĨŲ„Ų‰ ؈ØļØš Ų…Ų„ØĄ Ø§Ų„Ø´Ø§Ø´ØŠØŽØąŲˆØŦ Ų…Ų† ؈ØļØš Ų…Ų„ØĄ Ø§Ų„Ø´Ø§Ø´ØŠØĨØŽŲØ§ØĄ ØšŲ†Ø§ØĩØą Ø§Ų„ØĒØ­ŲƒŲ… Ø¨Ø§Ų„Ų…Ø´ØēŲ‘Ų„Ø§Ų„ØĒØ§Ų„ŲŠØĨØŽŲØ§ØĄ Ø§Ų„ØĨؚداداØĒ Ø§Ų„ØĨØļØ§ŲŲŠØŠØšØąØļ Ø§Ų„ØĨؚداداØĒ Ø§Ų„ØĨØļØ§ŲŲŠØŠØĨŲŠŲ‚Ø§Ų Ų…Ø¤Ų‚ØĒØĒØ´ØēŲŠŲ„Ø§Ų„ØŗØąØšØŠØ§Ų„ØŗØ§Ø¨Ų‚Ø§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: ØĒŲƒØąØ§Øą Ø§Ų„ŲƒŲ„. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§ØąØ§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: ØšØ¯Ų… Ø§Ų„ØĒŲƒØąØ§Øą. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§ØąØ§Ų„ŲˆØļØš Ø§Ų„Ø­Ø§Ų„ŲŠ: Ø§Ų„ØĒŲƒØąØ§Øą Ų…ØąØŠ ŲˆØ§Ø­Ø¯ØŠ. ØĒØ¨Ø¯ŲŠŲ„ ؈ØļØš Ø§Ų„ØĒŲƒØąØ§ØąØĒØąØŦŲŠØšŲ…ØŗØĒŲˆŲ‰ ØĒŲ‚Ø¯Ų‘ŲŲ… Ø§Ų„ØĒØ´ØēŲŠŲ„Ø§Ų„ØĨؚداداØĒØšØąØļ ØšŲ†Ø§ØĩØą Ø§Ų„ØĒØ­ŲƒŲ… Ø¨Ø§Ų„Ų…Ø´ØēŲ‘Ų„ØĒŲØšŲŠŲ„ ؈ØļØš Ø§Ų„ØĒØąØĒŲŠØ¨ Ø§Ų„ØšØ´ŲˆØ§ØĻ؊ØĨŲŠŲ‚Ø§Ų ؈ØļØš Ø§Ų„ØĒØąØĒŲŠØ¨ Ø§Ų„ØšØ´ŲˆØ§ØĻ؊ØĨŲŠŲ‚Ø§ŲŲˆØļØš VR%1$s، %2$s%1$.2f Ų…ŲŠØēابØĒ ؁؊ Ø§Ų„ØĢØ§Ų†ŲŠØŠŲ‚Ų†Ø§ØŠ ØŖØ­Ø§Ø¯ŲŠØŠ%1$d × %2$dØ¨Ø¯ŲŠŲ„Ø§Ų„ØĒØąØŦŲ…ØŠ ŲˆØ§Ų„Ø´ØąØ­Ø§Ų„ØĒØšŲ„ŲŠŲ‚Ø§ØĒØĒŲƒŲ…ŲŠŲ„ŲŠØĒŲ„Ų‚Ø§ØĻŲŠØ¨Ø¯ŲˆŲ† ا؎ØĒŲŠØ§ØąØĩ؈ØĒØ§ØŗØĒØąŲŠŲˆØĩ؈ØĒ Ų…ØŦØŗŲ‘Ų…Øĩ؈ØĒ Ų…ØŦØŗŲ‘Ų… 5.1Øĩ؈ØĒ Ų…ØŦØŗŲ‘Ų… 7.1ØēŲŠØą Ų…ØšØąŲˆŲØēŲŠØą Ų…ØšØąŲˆŲ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Normal ++ 1.25x ++ 1.5x ++ 2x ++ ++ Adelantar %d segundo ++ Adelantar %d segundos ++ ++ Retroceder %d segundo ++ Retroceder %d segundos ++ Habilitar subtítulosInhabilitar subtítulosAvanzarIniciar pantalla completaSalir de pantalla completaOcultar controles del reproductorSiguienteOcultar configuraciÃŗn adicionalMostrar configuraciÃŗn adicionalPausarReproducirVelocidadAnteriorAhora: rep. todo. Cambia modo.Ahora: no repite. Cambia modo.Ahora: repetir 1. Cambia modo.RetrocederReproducciÃŗn en cursoConfiguraciÃŗnMostrar controles del reproductorHabilitar reproducciÃŗn aleatoriaInhabilitar reproducciÃŗn aleatoriaDetenerModo RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativaCCComentariosComplementariaAutomÃĄticaNingunaAudioEstÊreoSonido envolventeSonido envolvente 5.1Sonido envolvente 7.1DesconocidoDesconocido (%1$s) ++ x 0,25 ++ x 0,5 ++ x 0,75 ++ Normal ++ x 1,25 ++ x 1,5 ++ x 2 ++ ++ Avanza rapidamente %d segundo ++ Avanza rapidamente %d segundos ++ ++ Rebobina %d segundo ++ Rebobina %d segundos ++ Activa os subtítulosDesactiva os subtítulosAvance rÃĄpidoAcceder a pantalla completaSaír de pantalla completaOcultar controis do reprodutorSeguinteOculta a configuraciÃŗn adicionalMostra a configuraciÃŗn adicionalPausarReproducirVelocidadeAnteriorModo actual: Repetir todas as pistas. Alternar modo de repeticiÃŗn.Modo actual: Non repetir. Alternar modo de repeticiÃŗn.Modo actual: Repetir unha pista. Alternar modo de repeticiÃŗn.RetrocederProgreso da reproduciÃŗnConfiguraciÃŗnMostrar controis do reprodutorActivar modo de reproduciÃŗn aleatoriaDesactivar modo de reproduciÃŗn aleatoriaDeterModo RV%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dAlternativaSubtítulosComentariosComplementariaPista automÃĄticaNingunha pistaAudioEstÊreoSon envolventeSon envolvente 5.1Son envolvente 7.1DescoÃąecidoDescoÃąecido (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normal ++ 1,25x ++ 1,5x ++ 2x ++ ++ Avançar %d segundo ++ Avançar %d segundos ++ ++ Voltar %d segundo ++ Voltar %d segundos ++ Ativar legendasDesativar legendasAvançarEntrar no modo de tela cheiaSair do modo de tela cheiaOcultar controles do playerAvançarOcultar configuraçÃĩes extrasExibir configuraçÃĩes extrasPausarReproduzirVelocidadeAnteriorModo atual: repetir tudo. Alternar modo de repetiÃ§ÃŖo.Modo atual: nÃŖo repetir. Alternar modo de repetiÃ§ÃŖo.Modo atual: repetir um item. Alternar modo de repetiÃ§ÃŖo.VoltarAndamento da reproduÃ§ÃŖoConfiguraçÃĩesMostrar controles do playerAtivar o modo de ordem aleatÃŗriaDesativar o modo de ordem aleatÃŗriaPararModo RV%1$s, %2$s%1$.2f MbpsMono%1$d × %2$dAlternativaCCComentÃĄriosComplementarAutomÃĄticaNenhumaÁudioEstÊreoSistema surroundSistema surround 5.1Sistema surround 7.1DesconhecidoDesconhecido (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Đ—Đ˛Đ¸Ņ‡Đ°ĐšĐŊа ++ 1,25x ++ 1,5x ++ 2x ++ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ вĐŋĐĩŅ€ĐĩĐ´ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ вĐŋĐĩŅ€ĐĩĐ´ ĐŊа %d ҁĐĩĐē҃ĐŊди ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ вĐŋĐĩŅ€ĐĩĐ´ ĐŊа %d ҁĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ вĐŋĐĩŅ€ĐĩĐ´ ĐŊа %d ҁĐĩĐē҃ĐŊди ++ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ ĐŊаСад ĐŊа %d ҁĐĩĐē҃ĐŊĐ´Ņƒ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ ĐŊаСад ĐŊа %d ҁĐĩĐē҃ĐŊди ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ ĐŊаСад ĐŊа %d ҁĐĩĐē҃ĐŊĐ´ ++ ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ ĐŊаСад ĐŊа %d ҁĐĩĐē҃ĐŊди ++ ĐŖĐ˛Ņ–ĐŧĐēĐŊŅƒŅ‚Đ¸ ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸Đ’Đ¸ĐŧĐēĐŊŅƒŅ‚Đ¸ ŅŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸ĐŸĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ вĐŋĐĩŅ€ĐĩдПĐĩŅ€ĐĩĐšŅ‚Đ¸ в ĐŋОвĐŊĐžĐĩĐēŅ€Đ°ĐŊĐŊиК Ņ€ĐĩĐļиĐŧĐ’Đ¸ĐšŅ‚Đ¸ С ĐŋОвĐŊĐžĐĩĐēŅ€Đ°ĐŊĐŊĐžĐŗĐž Ņ€ĐĩĐļиĐŧŅƒĐĄŅ…ĐžĐ˛Đ°Ņ‚Đ¸ ĐĩĐģĐĩĐŧĐĩĐŊŅ‚Đ¸ ĐēĐĩŅ€ŅƒĐ˛Đ°ĐŊĐŊŅ ĐŋŅ€ĐžĐŗŅ€Đ°Đ˛Đ°Ņ‡ĐĩĐŧДаĐģŅ–ĐĄŅ…ĐžĐ˛Đ°Ņ‚Đ¸ Đ´ĐžĐ´Đ°Ņ‚ĐēĐžĐ˛Ņ– ĐŊаĐģĐ°ŅˆŅ‚ŅƒĐ˛Đ°ĐŊĐŊŅĐŸĐžĐēĐ°ĐˇĐ°Ņ‚Đ¸ Đ´ĐžĐ´Đ°Ņ‚ĐēĐžĐ˛Ņ– ĐŊаĐģĐ°ŅˆŅ‚ŅƒĐ˛Đ°ĐŊĐŊŅĐŸŅ€Đ¸ĐˇŅƒĐŋиĐŊĐ¸Ņ‚Đ¸Đ’Ņ–Đ´Ņ‚Đ˛ĐžŅ€Đ¸Ņ‚Đ¸Đ¨Đ˛Đ¸Đ´ĐēŅ–ŅŅ‚ŅŒĐĐ°ĐˇĐ°Đ´ĐŸĐžŅ‚ĐžŅ‡ĐŊиК Ņ€ĐĩĐļиĐŧ: ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŽĐ˛Đ°Ņ‚Đ¸ Đ˛ŅĐĩ. ПĐĩŅ€ĐĩĐŧĐēĐŊŅƒŅ‚Đ¸ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€ĐĩĐŊĐŊŅ.ĐŸĐžŅ‚ĐžŅ‡ĐŊиК Ņ€ĐĩĐļиĐŧ: ĐŊĐĩ ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŽĐ˛Đ°Ņ‚Đ¸. ПĐĩŅ€ĐĩĐŧĐēĐŊŅƒŅ‚Đ¸ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€ĐĩĐŊĐŊŅ.ĐŸĐžŅ‚ĐžŅ‡ĐŊиК Ņ€ĐĩĐļиĐŧ: ĐŋĐžĐ˛Ņ‚ĐžŅ€ŅŽĐ˛Đ°Ņ‚Đ¸ ОдиĐŊ ĐŧĐĩĐ´Ņ–Đ°Ņ„Đ°ĐšĐģ. ПĐĩŅ€ĐĩĐŧĐēĐŊŅƒŅ‚Đ¸ Ņ€ĐĩĐļиĐŧ ĐŋĐžĐ˛Ņ‚ĐžŅ€ĐĩĐŊĐŊŅ.ПĐĩŅ€ĐĩĐŧĐžŅ‚Đ°Ņ‚Đ¸ ĐŊĐ°ĐˇĐ°Đ´ĐŸŅ€ĐžĐŗŅ€Đĩҁ Đ˛Ņ–Đ´Ņ‚Đ˛ĐžŅ€ĐĩĐŊĐŊŅĐĐ°ĐģĐ°ŅˆŅ‚ŅƒĐ˛Đ°ĐŊĐŊŅĐŸĐžĐēĐ°ĐˇŅƒĐ˛Đ°Ņ‚Đ¸ ĐĩĐģĐĩĐŧĐĩĐŊŅ‚Đ¸ ĐēĐĩŅ€ŅƒĐ˛Đ°ĐŊĐŊŅ ĐŋŅ€ĐžĐŗŅ€Đ°Đ˛Đ°Ņ‡ĐĩĐŧĐŖĐ˛Ņ–ĐŧĐēĐŊŅƒŅ‚Đ¸ Ņ€ĐĩĐļиĐŧ ĐŋĐĩŅ€ĐĩĐŧŅ–ŅˆŅƒĐ˛Đ°ĐŊĐŊŅĐ’Đ¸ĐŧĐēĐŊŅƒŅ‚Đ¸ Ņ€ĐĩĐļиĐŧ ĐŋĐĩŅ€ĐĩĐŧŅ–ŅˆŅƒĐ˛Đ°ĐŊĐŊŅĐŸŅ€Đ¸ĐŋиĐŊĐ¸Ņ‚Đ¸Đ ĐĩĐļиĐŧ Đ˛Ņ–Ņ€Ņ‚ŅƒĐ°ĐģҌĐŊĐžŅ— Ņ€ĐĩаĐģҌĐŊĐžŅŅ‚Ņ–%1$s, %2$s%1$.2f ĐœĐąŅ–Ņ‚/ŅĐœĐžĐŊĐž%1$d × %2$dАĐģŅŒŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛ĐŊĐ°ĐĄŅƒĐąŅ‚Đ¸Ņ‚Ņ€Đ¸ĐšĐžĐŧĐĩĐŊŅ‚Đ°Ņ€Ņ–Đ”ĐžĐ´Đ°Ņ‚ĐēĐžĐ˛Đ°ĐĐ˛Ņ‚ĐžĐŧĐ°Ņ‚Đ¸Ņ‡ĐŊĐžĐŅ–Ņ‡ĐžĐŗĐžĐŅƒĐ´Ņ–ĐžĐĄŅ‚ĐĩŅ€ĐĩĐžĐžĐąâ€™Ņ”ĐŧĐŊиК ĐˇĐ˛ŅƒĐēĐžĐąâ€™Ņ”ĐŧĐŊиК ĐˇĐ˛ŅƒĐē ҃ Ņ„ĐžŅ€ĐŧĐ°Ņ‚Ņ– 5.1ĐžĐąâ€™Ņ”ĐŧĐŊиК ĐˇĐ˛ŅƒĐē ҃ Ņ„ĐžŅ€ĐŧĐ°Ņ‚Ņ– 7.1НĐĩĐ˛Ņ–Đ´ĐžĐŧоНĐĩĐ˛Ņ–Đ´ĐžĐŧĐž (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ ĐĐžŅ€ĐŧаĐģĐŊĐž ++ 1,25x ++ 1,5x ++ 2x ++ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊĐ´Ņƒ ҃ĐŊаĐŋŅ€ĐĩĐ´ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊĐ´Đĩ ҃ĐŊаĐŋŅ€ĐĩĐ´ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊди ҃ĐŊаĐŋŅ€ĐĩĐ´ ++ ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊĐ´Ņƒ ҃ĐŊаСад ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊĐ´Đĩ ҃ĐŊаСад ++ ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜Ņ‚Đĩ %d ҁĐĩĐē҃ĐŊди ҃ĐŊаСад ++ ОĐŧĐžĐŗŅƒŅ›Đ¸ Ņ‚Đ¸Ņ‚ĐģОвĐĩОĐŊĐĩĐŧĐžĐŗŅƒŅ›Đ¸ Ņ‚Đ¸Ņ‚ĐģОвĐĩĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜ ҃ĐŊаĐŋŅ€ĐĩĐ´ĐŸŅ€ĐĩŅ’Đ¸ ĐŊа ҆ĐĩĐž ĐĩĐēŅ€Đ°ĐŊĐ˜ĐˇĐ°Ņ’Đ¸ иС ҆ĐĩĐģĐžĐŗ ĐĩĐēŅ€Đ°ĐŊаХаĐēŅ€Đ¸Ņ˜ ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐĩ ĐŋĐģĐĩҘĐĩŅ€Đ°ĐĄĐģĐĩĐ´ĐĩŅ›Đ°ĐĄĐ°ĐēŅ€Đ¸Ņ˜ Đ´ĐžĐ´Đ°Ņ‚ĐŊа ĐŋОдĐĩŅˆĐ°Đ˛Đ°ŅšĐ°ĐŸŅ€Đ¸ĐēаĐļи Đ´ĐžĐ´Đ°Ņ‚ĐŊа ĐŋОдĐĩŅˆĐ°Đ˛Đ°ŅšĐ°ĐŸĐ°ŅƒĐˇĐ¸Ņ€Đ°Ņ˜ĐŸŅƒŅŅ‚Đ¸Đ‘Ņ€ĐˇĐ¸ĐŊĐ°ĐŸŅ€ĐĩŅ‚Ņ…ĐžĐ´ĐŊĐ°Đ’Đ°Ņˆ Ņ€ĐĩĐļиĐŧ: ПоĐŊОви ŅĐ˛Đĩ. ĐŖĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ/Đ¸ŅĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ.Đ’Đ°Ņˆ Ņ€ĐĩĐļиĐŧ: БĐĩС ĐŋĐžĐŊĐ°Đ˛Ņ™Đ°ŅšĐ°. ĐŖĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ/Đ¸ŅĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ.Đ’Đ°Ņˆ Ņ€ĐĩĐļиĐŧ: ПоĐŊОви ҘĐĩĐ´ĐŊĐž. ĐŖĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ/Đ¸ŅĐēŅ™ŅƒŅ‡Đ¸Ņ‚Đĩ.ĐŸŅ€ĐĩĐŧĐžŅ‚Đ°Ņ˜ ҃ĐŊазадНаĐŋŅ€ĐĩĐ´ĐžĐ˛Đ°ŅšĐĩ Ņ€ĐĩĐŋŅ€ĐžĐ´ŅƒĐēŅ†Đ¸Ņ˜ĐĩПодĐĩŅˆĐ°Đ˛Đ°ŅšĐ°ĐŸŅ€Đ¸ĐēаĐļи ĐēĐžĐŊŅ‚Ņ€ĐžĐģĐĩ ĐŋĐģĐĩҘĐĩŅ€Đ°ĐžĐŧĐžĐŗŅƒŅ›Đ¸Ņ‚Đĩ ĐŊĐ°ŅŅƒĐŧĐ¸Ņ‡ĐŊи Ņ€ĐĩĐļиĐŧОĐŊĐĩĐŧĐžĐŗŅƒŅ›Đ¸Ņ‚Đĩ ĐŊĐ°ŅŅƒĐŧĐ¸Ņ‡ĐŊи Ņ€ĐĩĐļиĐŧĐ—Đ°ŅƒŅŅ‚Đ°Đ˛Đ¸Đ’Đ  Ņ€ĐĩĐļиĐŧ%1$s, %2$s%1$.2f Mb/sМоĐŊĐž%1$d × %2$dАĐģŅ‚ĐĩŅ€ĐŊĐ°Ņ‚Đ¸Đ˛ĐŊĐžĐĸĐ¸Ņ‚ĐģКоĐŧĐĩĐŊŅ‚Đ°Ņ€Đ”ĐžĐ´Đ°Ņ‚ĐŊĐžĐŅƒŅ‚ĐžĐŧĐ°Ņ‚ŅĐēĐ¸ĐĐ¸Ņ˜ĐĩĐ´ĐŊĐ°ĐŅƒĐ´Đ¸ĐžĐĄŅ‚ĐĩŅ€ĐĩĐžĐŸŅ€ĐžŅŅ‚ĐžŅ€ĐŊи ĐˇĐ˛ŅƒĐēĐŸŅ€ĐžŅŅ‚ĐžŅ€ĐŊи ĐˇĐ˛ŅƒĐē 5.1ĐŸŅ€ĐžŅŅ‚ĐžŅ€ĐŊи ĐˇĐ˛ŅƒĐē 7.1НĐĩĐŋОСĐŊĐ°Ņ‚ĐžĐĐĩĐŋОСĐŊĐ°Ņ‚Đž (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ ā¨¸ā¨§ā¨žā¨°ā¨¨ ++ 1.25x ++ 1.5x ++ 2x ++ ++ ā¨¤āŠ‡ā¨œā¨ŧāŠ€ ā¨¨ā¨žā¨˛ %d ⍏⍕ā¨ŋāŠ°ā¨Ÿ ā¨…āŠąā¨—āŠ‡ ā¨•ā¨°āŠ‹ ++ ā¨¤āŠ‡ā¨œā¨ŧāŠ€ ā¨¨ā¨žā¨˛ %d ⍏⍕ā¨ŋāŠ°ā¨Ÿ ā¨…āŠąā¨—āŠ‡ ā¨•ā¨°āŠ‹ ++ ++ %d ⍏⍕ā¨ŋāŠ°ā¨Ÿ ā¨Ēā¨ŋāŠąā¨›āŠ‡ ā¨•ā¨°āŠ‹ ++ %d ⍏⍕ā¨ŋāŠ°ā¨Ÿ ā¨Ēā¨ŋāŠąā¨›āŠ‡ ā¨•ā¨°āŠ‹ ++ ⍉ā¨Ē⍏ā¨ŋā¨°ā¨˛āŠ‡ā¨–ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨šā¨žā¨˛āŠ‚ ā¨•ā¨°āŠ‹ā¨‰ā¨Ē⍏ā¨ŋā¨°ā¨˛āŠ‡ā¨–ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨ŦāŠ°ā¨Ļ ā¨•ā¨°āŠ‹ā¨¤āŠ‡āŠ›āŠ€ ā¨¨ā¨žā¨˛ ā¨…āŠąā¨—āŠ‡ ā¨•ā¨°āŠ‹ā¨ĒāŠ‚ā¨°āŠ€ ā¨¸ā¨•āŠā¨°āŠ€ā¨¨ ā¨Ļā¨žā¨–ā¨˛ ā¨•ā¨°āŠ‹ā¨ĒāŠ‚ā¨°āŠ€-ā¨¸ā¨•āŠā¨°āŠ€ā¨¨ ā¨¤āŠ‹ā¨‚ ā¨Ŧā¨žā¨šā¨° ā¨œā¨žā¨“ā¨Ēā¨˛āŠ‡ā¨…ā¨° ā¨•āŠ°ā¨Ÿā¨°āŠ‹ā¨˛ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨˛āŠā¨•ā¨žā¨“ā¨…āŠąā¨—āŠ‡ā¨ĩā¨§āŠ€ā¨• ā¨¸āŠˆā¨Ÿā¨ŋāŠ°ā¨—ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨˛āŠā¨•ā¨žā¨“ā¨ĩā¨§āŠ€ā¨• ā¨¸āŠˆā¨Ÿā¨ŋāŠ°ā¨—ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨Ļā¨ŋā¨–ā¨žā¨“ā¨°āŠ‹ā¨•āŠ‹ā¨šā¨˛ā¨žā¨“ā¨—ā¨¤āŠ€ā¨Ēā¨ŋāŠąā¨›āŠ‡ā¨ŽāŠŒā¨œāŠ‚ā¨Ļā¨ž ā¨ŽāŠ‹ā¨Ą: ⍏⍭ ā¨ĻāŠā¨šā¨°ā¨žā¨“āĨ¤ ā¨ĻāŠā¨šā¨°ā¨žā¨“ ā¨ŽāŠ‹ā¨Ą ā¨ŸāŠŒā¨—ā¨˛ ā¨•ā¨°āŠ‹āĨ¤ā¨ŽāŠŒā¨œāŠ‚ā¨Ļā¨ž ā¨ŽāŠ‹ā¨Ą: ⍕ā¨ŋā¨¸āŠ‡ ā¨¨āŠ‚āŠ° ā¨¨ā¨ž ā¨ĻāŠā¨šā¨°ā¨žā¨“āĨ¤ ā¨ĻāŠā¨šā¨°ā¨žā¨“ ā¨ŽāŠ‹ā¨Ą ā¨ŸāŠŒā¨—ā¨˛ ā¨•ā¨°āŠ‹āĨ¤ā¨ŽāŠŒā¨œāŠ‚ā¨Ļā¨ž ā¨ŽāŠ‹ā¨Ą: ā¨‡āŠąā¨• ā¨¨āŠ‚āŠ° ā¨ĻāŠā¨šā¨°ā¨žā¨“āĨ¤ ā¨ĻāŠā¨šā¨°ā¨žā¨“ ā¨ŽāŠ‹ā¨Ą ā¨ŸāŠŒā¨—ā¨˛ ā¨•ā¨°āŠ‹āĨ¤ā¨Ēā¨ŋāŠąā¨›āŠ‡ ā¨•ā¨°āŠ‹ā¨Ēā¨˛āŠ‡ā¨ŦāŠˆā¨• ā¨ĒāŠā¨°ā¨—ā¨¤āŠ€ā¨¸āŠˆā¨Ÿā¨ŋāŠ°ā¨—ā¨žā¨‚ā¨Ēā¨˛āŠ‡ā¨…ā¨° ā¨•āŠ°ā¨Ÿā¨°āŠ‹ā¨˛ā¨žā¨‚ ā¨¨āŠ‚āŠ° ā¨Ļā¨ŋā¨–ā¨žā¨“ā¨ŦāŠ‡ā¨¤ā¨°ā¨¤āŠ€ā¨Ŧ ā¨ŽāŠ‹ā¨Ą ā¨šā¨žā¨˛āŠ‚ ā¨•ā¨°āŠ‹ā¨ŦāŠ‡ā¨¤ā¨°ā¨¤āŠ€ā¨Ŧ ā¨ŽāŠ‹ā¨Ą ā¨ŦāŠ°ā¨Ļ ā¨•ā¨°āŠ‹ā¨ŦāŠ°ā¨Ļ ā¨•ā¨°āŠ‹VR ā¨ŽāŠ‹ā¨Ą%1$s, %2$s%1$.2f Mbpsā¨ŽāŠ‹ā¨¨āŠ‹%1$d × %2$dā¨ĩā¨Ÿā¨žā¨ĩā¨žā¨‚ā¨ŦāŠ°ā¨Ļ ā¨¸āŠāŠā¨°ā¨–āŠ€ā¨†ā¨‚ā¨•ā¨ŽāŠˆā¨‚ā¨Ÿā¨°āŠ€ā¨ĒāŠ‚ā¨°ā¨•ā¨¸ā¨ĩāŠˆā¨šā¨˛ā¨ŋā¨¤ā¨•āŠ‹ā¨ˆ ā¨¨ā¨šāŠ€ā¨‚ā¨†ā¨ĄāŠ€ā¨“ā¨¸ā¨ŸāŠ€ā¨°ā¨ŋā¨“ā¨¸ā¨°ā¨žā¨Šā¨‚ā¨Ą ā¨¸ā¨žā¨Šā¨‚ā¨Ą5.1 ā¨¸ā¨°ā¨žā¨Šā¨‚ā¨Ą ā¨¸ā¨žā¨Šā¨‚ā¨Ą7.1 ā¨¸ā¨°ā¨žā¨Šā¨‚ā¨Ą ā¨¸ā¨žā¨Šā¨‚ā¨Ąā¨…ā¨—ā¨ŋ⍆⍤⍅⍗ā¨ŋ⍆⍤ (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ āˇƒāˇāļ¸āˇāļąāˇŠâ€āļē ++ 1.25x ++ 1.5x ++ 2x ++ ++ āļ­āļ­āˇŠāļ´āļģ %dāļšāˇŠ āˇ€āˇšāļœāļē⎙āļąāˇŠ āļ‰āļ¯āˇ’āļģ⎒āļēāļ§ ++ āļ­āļ­āˇŠāļ´āļģ %dāļšāˇŠ āˇ€āˇšāļœāļē⎙āļąāˇŠ āļ‰āļ¯āˇ’āļģ⎒āļēāļ§ ++ ++ āļ­āļ­āˇŠāļ´āļģ %dāļšāˇŠ āļ†āļ´āˇƒāˇŠāˇƒāļ§ ++ āļ­āļ­āˇŠāļ´āļģ %dāļšāˇŠ āļ†āļ´āˇƒāˇŠāˇƒāļ§ ++ āļ‹āļ´āˇƒāˇ’āļģāˇāˇƒāˇ’ ⎃āļļāļŊ āļšāļģāļąāˇŠāļąāļ‹āļ´āˇƒāˇ’āļģāˇāˇƒāˇ’ āļ…āļļāļŊ āļšāļģāļąāˇŠāļąāˇ€āˇšāļœāļē⎙āļąāˇŠ āļ‰āļ¯āˇ’āļģ⎒āļēāļ§āļ´āˇ–āļģ⎊āļĢ āļ­āˇ’āļģāļēāļ§ āļ‡āļ­āˇ”⎅⎔ ⎀āļąāˇŠāļąāļ´āˇ–āļģ⎊āļĢ āļ­āˇ’āļģāļē⎙āļąāˇŠ āļ´āˇ’āļ§ āˇ€āļąāˇŠāļąāļ°āˇāˇ€āļš āļ´āˇāļŊāļą āˇƒāļŸāˇ€āļąāˇŠāļąāļŠāˇ…āļŸāļ…āļ­āˇ’āļģ⎚āļš āˇƒāˇāļšāˇƒāˇ“āļ¸āˇŠ ⎃āļŸāˇ€āļąāˇŠāļąāļ…āļ­āˇ’āļģ⎚āļš āˇƒāˇāļšāˇƒāˇ“āļ¸āˇŠ āļ´āˇ™āļąāˇŠāˇ€āļąāˇŠāļąāˇ€āˇ’āļģāˇāļ¸ āļšāļģāļąāˇŠāļąāļ°āˇāˇ€āļąāļē āļšāļģāļąāˇŠāļąāˇ€āˇšāļœāļēāļ´āˇ™āļģ⎀āļ­āˇŠāļ¸āļąāˇŠ āļ´āˇŠâ€āļģāļšāˇāļģāļē: āˇƒāˇ’āļēāļŊ⎊āļŊ āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļąāļē āļšāļģāļąāˇŠāļą. āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļą āļ´āˇŠâ€āļģāļšāˇāļģāļē āļ§āˇœāļœāļŊ āļšāļģāļąāˇŠāļą.⎀āļ­āˇŠāļ¸āļąāˇŠ āļ´āˇŠâ€āļģāļšāˇāļģāļē: āļšāˇ’āˇƒāˇ’āˇ€āļšāˇŠ āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļąāļē āļąāˇœāļšāļģāļąāˇŠāļą. āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļą āļ´āˇŠâ€āļģāļšāˇāļģāļē āļ§āˇœāļœāļŊ āļšāļģāļąāˇŠāļą.⎀āļ­āˇŠāļ¸āļąāˇŠ āļ´āˇŠâ€āļģāļšāˇāļģāļē: āļ‘āļšāļšāˇŠ āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļąāļē āļšāļģāļąāˇŠāļą. āļ´āˇ”āļąāļģāˇāˇ€āļģ⎊āļ­āļą āļ´āˇŠâ€āļģāļšāˇāļģāļē āļ§āˇœāļœāļŊ āļšāļģāļąāˇŠāļą.āļąāˇāˇ€āļ­ āļ”āļ­āļąāˇŠāļąāļ´āˇƒāˇ”āļ°āˇāˇ€āļą āļ´āˇŠâ€āļģāļœāļ­āˇ’āļē⎃⎐āļšāˇƒāˇ“āļ¸āˇŠāļ°āˇāˇ€āļš āļ´āˇāļŊāļą āļ´āˇ™āļąāˇŠāˇ€āļąāˇŠāļąāļšāˇ…⎀āļ¸āˇŠ āļ´āˇŠâ€āļģāļšāˇāļģāļē ⎃āļļāļŊ āļšāļģāļąāˇŠāļąāļšāˇ…⎀āļ¸āˇŠ āļ´āˇŠâ€āļģāļšāˇāļģāļē āļ…āļļāļŊ āļšāļģāļąāˇŠāļąāļąāˇ€āļ­āˇŠāˇ€āļąāˇŠāļąVR āļ´āˇŠâ€āļģāļšāˇāļģāļē%1$s, %2$s%1$.2f Mbpsāļ’āļšāļŊ%1$d × %2$d⎀⎒āļšāļŊ⎊āļ´āˇƒāˇ’āļģ⎃⎊āļ­āļŊ⎀āļģ⎊āļĢāļąāˇāļ´āļģ⎒āļ´āˇ–āļģāļšāˇƒāˇŠāˇ€āļēāļ‚āļšāˇ’āˇƒāˇ’āˇ€āļšāˇŠ āļąāˇāļ­āˇāˇŠâ€āļģāˇ€āˇŠâ€āļē⎃⎊āļ§āˇ“āļģ⎒āļēāˇāļ…⎀āļ§ āˇāļļ⎊āļ¯āļē5.1 āļ…⎀āļ§ āˇāļļ⎊āļ¯āļē7.1 āļ…⎀āļ§ āˇāļļ⎊āļ¯āļēāļąāˇœāļ¯āļąāˇ“āļąāˇœāļ¯āļąāˇŠāļąāˇ (%1$s) ++ 0,25x ++ 0,5x ++ 0,75x ++ Normalno ++ 1,25x ++ 1,5x ++ 2x ++ ++ Premotajte %d sekundu unapred ++ Premotajte %d sekunde unapred ++ Premotajte %d sekundi unapred ++ ++ Premotajte %d sekundu unazad ++ Premotajte %d sekunde unazad ++ Premotajte %d sekundi unazad ++ Omogucˁi titloveOnemogucˁi titlovePremotaj unapredPređi na ceo ekranIzađi iz celog ekranaSakrij kontrole plejeraSledecˁaSakrij dodatna podeÅĄavanjaPrikaÅži dodatna podeÅĄavanjaPauzirajPustiBrzinaPrethodnaVaÅĄ reÅžim: Ponovi sve. Uključite/isključite.VaÅĄ reÅžim: Bez ponavljanja. Uključite/isključite.VaÅĄ reÅžim: Ponovi jedno. Uključite/isključite.Premotaj unazadNapredovanje reprodukcijePodeÅĄavanjaPrikaÅži kontrole plejeraOmogucˁite nasumični reÅžimOnemogucˁite nasumični reÅžimZaustaviVR reÅžim%1$s, %2$s%1$.2f Mb/sMono%1$d × %2$dAlternativnoTitlKomentarDodatnoAutomatskiNijednaAudioStereoProstorni zvukProstorni zvuk 5.1Prostorni zvuk 7.1NepoznatoNepoznato (%1$s) ++ 0.25x ++ 0.5x ++ 0.75x ++ Okujwayelekile ++ 1.25x ++ 1.5x ++ 2x ++ ++ Dlulisela phambili ngamasekhondi angu-%d ++ Dlulisela phambili ngamasekhondi angu-%d ++ ++ Hlehlisa ngamasekhondi angu-%d ++ Hlehlisa ngamasekhondi angu-%d ++ Nika amandla imibhalo engezansiKhubaza imibhalo engezansiDlulisela phambiliFaka isikrini esigcwelePhuma kusikrini esigcweleFihla izilawuli zesidlaliOkulandelayoFihla izilungiselelo ezingeziweBonisa izilungiselelo ezingeziwePhumulaDlalaIsivininiOkwangaphambiliniImodi yamanje: Phinda konke. Guqula imodi yokuphinda.Imodeli yamanje: Ungaphindi lutho. Guqula imodi yokuphinda.Imodi yamanje: Phinda kanye. Guqula imodi yokuphinda.Buyisela emuvaInqubekela phambili yokudlalaAmasethingiBonisa izilawuli zesidlaliNika amandla imodi yokushovaKhubaza imodi yokushovaMisaInqubo ye-VR%1$s, %2$s%1$.2f MbpsOkukodwa%1$d × %2$dOkunyeCCAbahlaziyiOkungeziweOkuzenzakalelayoLuthoUmsindoI-StereoUmsindo ozungelezileUmsindo ozungelezile ongu-5.1Umsindo ozungelezile ongu-7.1AkwaziwaAkwaziwa (%1$s) ++ ++ ++ ++ ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navighează la ecranul de pornire""Navighează ÃŽn sus""Mai multe opțiuni""Gata""Afișează tot""Alege o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Cautăâ€Ļ""Șterge interogarea""Termen de căutare""Caută""Trimite interogarea""Căutare vocală""Trimite la""Trimite folosind %s""RestrÃĸnge""Caută""ā°šāą‹ā°Žāąâ€Œā°•āą ā°¨ā°žā°ĩā°ŋā°—āą‡ā°Ÿāą ā°šāą‡ā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°Ēāąˆā°•ā°ŋ ā°¨ā°žā°ĩā°ŋā°—āą‡ā°Ÿāą ā°šāą‡ā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°Žā°°ā°ŋā°¨āąā°¨ā°ŋ ā°†ā°Ēāąā°ˇā°¨āąâ€Œā°˛āą""ā°Ēāą‚ā°°āąā°¤ā°¯ā°ŋā°‚ā°Ļā°ŋ""ā°…ā°¨āąā°¨āą€ ā°šāą‚ā°Ąā°‚ā°Ąā°ŋ""ā°¯ā°žā°Ēāąâ€Œā°¨āą ā°Žā°‚ā°šāąā°•āą‹ā°‚ā°Ąā°ŋ""ā°†ā°Ģāą""ā°†ā°¨āą""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""ā°¸āąā°Ēāą‡ā°¸āą""Sym+""Menu+""ā°¸āą†ā°°āąā°šāą ā°šāą‡ā°¯ā°‚ā°Ąā°ŋâ€Ļ""ā°Ēāąā°°ā°ļāąā°¨ā°¨āą ā°¤āą€ā°¸ā°ŋā°ĩāą‡ā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°¸āą†ā°°āąā°šāą ā°•āąā°ĩāą†ā°°āą€""ā°¸āą†ā°°āąā°šāą""ā°Ēāąā°°ā°ļāąā°¨ā°¨ā°ŋ ā°¸ā°Žā°°āąā°Ēā°ŋā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°ĩā°žā°¯ā°ŋā°¸āą ā°¸āą†ā°°āąā°šāą""ā°ĩāą€ā°°ā°ŋā°¤āą‹ ā°ˇāą‡ā°°āą ā°šāą‡ā°¸āąā°¤āąā°‚ā°Ļā°ŋ""%sā°¤āą‹ ā°ˇāą‡ā°°āą ā°šāą‡ā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°•āąā°Ļā°ŋā°¸āąā°¤āąā°‚ā°Ļā°ŋ""ā°¸āą†ā°°āąā°šāą"0px"ПĐĩŅ€ĐĩĐšŅ‚Đ¸ ĐŊа ĐŗĐģавĐŊŅ‹Đš ŅĐēŅ€Đ°ĐŊ""ПĐĩŅ€ĐĩĐšŅ‚Đ¸ ввĐĩҀ҅""Đ•Ņ‰Ņ‘""Đ“ĐžŅ‚ĐžĐ˛Đž""ПоĐēĐ°ĐˇĐ°Ņ‚ŅŒ Đ˛ŅĐĩ""Đ’Ņ‹ĐąĐĩŅ€Đ¸Ņ‚Đĩ ĐŋŅ€Đ¸ĐģĐžĐļĐĩĐŊиĐĩ""ВĐĢКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""ĐŸŅ€ĐžĐąĐĩĐģ""Sym +""МĐĩĐŊŅŽÂ +""ВвĐĩĐ´Đ¸Ņ‚Đĩ СаĐŋŅ€ĐžŅ""ĐŖĐ´Đ°ĐģĐ¸Ņ‚ŅŒ СаĐŋŅ€ĐžŅ""ĐŸĐžĐ¸ŅĐēĐžĐ˛Ņ‹Đš СаĐŋŅ€ĐžŅ""ĐŸĐžĐ¸ŅĐē""ĐžŅ‚ĐŋŅ€Đ°Đ˛Đ¸Ņ‚ŅŒ СаĐŋŅ€ĐžŅ""ГоĐģĐžŅĐžĐ˛ĐžĐš ĐŋĐžĐ¸ŅĐē""ПодĐĩĐģĐ¸Ņ‚ŅŒŅŅ ҁ ĐŋĐžĐŧĐžŅ‰ŅŒŅŽ""ПодĐĩĐģĐ¸Ņ‚ŅŒŅŅ ҁ ĐŋĐžĐŧĐžŅ‰ŅŒŅŽ %s""ХвĐĩŅ€ĐŊŅƒŅ‚ŅŒ""ĐŸĐžĐ¸ŅĐē""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanapâ€Ļ""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""į€čĻŊéϖ頁""å‘ä¸Šį€čĻŊ""更多選項""厌成""æŸĨįœ‹å…¨éƒ¨""é¸æ“‡æ‡‰į”¨į¨‹åŧ""關閉""開啟""Alt +""Ctrl +""Delete éĩ""Enter éĩ""Fn +""Meta +""Shift +""įŠēæ ŧéĩ""Sym +""Menu +""搜尋â€Ļ""清除æŸĨčŠĸ""搜尋æŸĨčŠĸ""搜尋""提ä礿ŸĨčŠĸ""čĒžéŸŗæœå°‹""分äēĢå°čąĄ""čˆ‡ã€Œ%s」分äēĢ""æ”ļ合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cercaâ€Ļ""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""MÊs opcions""Fet""Mostra-ho tot""Selecciona una aplicaciÃŗ""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""FunciÃŗ+""Meta+""Maj+""Espai""Sym+""MenÃē+""Cercaâ€Ļ""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""SjÃĄ allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslÃĄ""Sym+""Valmynd+""Leitaâ€Ļ""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""DalÅĄÃ­ moÅžnosti""Hotovo""Zobrazit vÅĄe""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledatâ€Ļ""Smazat dotaz""Dotaz pro vyhledÃĄvÃĄní""Hledat""Odeslat dotaz""HlasovÊ vyhledÃĄvÃĄní""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""čŊŦ到éĻ–éĄĩ""čŊŦåˆ°ä¸Šä¸€åą‚įē§""æ›´å¤šé€‰éĄš""厌成""æŸĨįœ‹å…¨éƒ¨""选拊åē”ᔍ""å…ŗé—­""åŧ€å¯""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""įŠēæ ŧ键""Sym+""Menu+""搜į´ĸâ€Ļ""清除æŸĨč¯ĸ""搜į´ĸæŸĨč¯ĸ""搜į´ĸ""提ä礿ŸĨč¯ĸ""č¯­éŸŗæœį´ĸ""分äēĢå¯ščąĄ""与%s分äēĢ""æ”ļčĩˇ""搜į´ĸ""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lainnya""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホãƒŧムãĢæˆģる""前ãĢæˆģる""そぎäģ–ぎã‚Ēãƒ—ã‚ˇãƒ§ãƒŗ""厌äē†""すずãĻ襨į¤ē""ã‚ĸプãƒĒぎ選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検į´ĸâ€Ļ""検į´ĸキãƒŧワãƒŧドを削除""検į´ĸキãƒŧワãƒŧド""検į´ĸ""検į´ĸキãƒŧワãƒŧドを送äŋĄ""éŸŗåŖ°æ¤œį´ĸ""å…ąæœ‰""%sã¨å…ąæœ‰""折りたたむ""検į´ĸ""ΠÎģÎŋÎŽÎŗÎˇĪƒÎˇ ĪƒĪ„ÎˇÎŊ ÎąĪĪ‡ÎšÎēÎŽ ΃ÎĩÎģÎ¯Î´Îą""ΠÎģÎŋÎŽÎŗÎˇĪƒÎˇ ΀΁ÎŋĪ‚ Ī„Îą ÎĩĪ€ÎŦÎŊΉ""ΠÎĩĪÎšĪƒĪƒĪŒĪ„Îĩ΁ÎĩĪ‚ ÎĩĪ€ÎšÎģÎŋÎŗÎ­Ī‚""ΤέÎģÎŋĪ‚""ΕÎŧΆÎŦÎŊÎšĪƒÎˇ ΌÎģΉÎŊ""Î•Ī€ÎšÎģÎ­ÎžĪ„Îĩ ÎŧΚι ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ""Î‘Î Î•ÎÎ•ÎĄÎ“ÎŸÎ ÎŸÎ™Î—ÎŖÎ—""Î•ÎÎ•ÎĄÎ“ÎŸÎ ÎŸÎ™Î—ÎŖÎ—""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""δΚÎŦĪƒĪ„ÎˇÎŧÎą""Sym+""Menu+""ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇâ€Ļ""Î”ÎšÎąÎŗĪÎąĪ†ÎŽ ÎĩĪĪ‰Ī„ÎŽÎŧÎąĪ„ÎŋĪ‚""Î•ĪĪŽĪ„ÎˇÎŧÎą ÎąÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇĪ‚""ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ""ÎĨĪ€ÎŋβÎŋÎģÎŽ ÎĩĪĪ‰Ī„ÎŽÎŧÎąĪ„ÎŋĪ‚""ÎĻΉÎŊÎˇĪ„ÎšÎēÎŽ ÎąÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ""ΚÎŋΚÎŊÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ ΃Îĩ""ΚÎŋΚÎŊÎŋĪ€ÎŋÎ¯ÎˇĪƒÎˇ ĪƒĪ„ÎˇÎŊ ÎĩĪ†ÎąĪÎŧÎŋÎŗÎŽ %s""ÎŖĪÎŧĪ€Ī„Ī…ÎžÎˇ""ΑÎŊÎąÎļÎŽĪ„ÎˇĪƒÎˇ""ā¸™ā¸ŗā¸—ā¸˛ā¸‡āš„ā¸›ā¸Ģā¸™āš‰ā¸˛āšā¸Ŗā¸""⏁ā¸Ĩā¸ąā¸š""ā¸•ā¸ąā¸§āš€ā¸Ĩā¸ˇā¸­ā¸ā¸­ā¸ˇāšˆā¸™""āš€ā¸Ēā¸Ŗāš‡ā¸ˆ""ā¸”ā¸šā¸—ā¸ąāš‰ā¸‡ā¸Ģā¸Ąā¸”""āš€ā¸Ĩā¸ˇā¸­ā¸āšā¸­ā¸›""⏛⏴⏔""āš€ā¸›ā¸´ā¸”""Alt+""Ctrl+""ā¸Ĩ⏚""Enter""Function+""Meta+""Shift+""Space""Sym+""āš€ā¸Ąā¸™ā¸š+""ā¸„āš‰ā¸™ā¸Ģ⏞â€Ļ""ā¸Ĩāš‰ā¸˛ā¸‡ā¸„ā¸ŗā¸„āš‰ā¸™ā¸Ģ⏞""ā¸„ā¸ŗā¸„āš‰ā¸™ā¸Ģ⏞""ā¸„āš‰ā¸™ā¸Ģ⏞""ā¸Ēāšˆā¸‡ā¸„ā¸ŗā¸„āš‰ā¸™ā¸Ģ⏞""ā¸„āš‰ā¸™ā¸Ģā¸˛ā¸”āš‰ā¸§ā¸ĸāš€ā¸Ēā¸ĩā¸ĸ⏇""āšā¸Šā¸ŖāšŒā¸ā¸ąā¸š""āšā¸Šā¸ŖāšŒā¸—ā¸˛ā¸‡ %s""ā¸ĸ⏏⏚""ā¸„āš‰ā¸™ā¸Ģ⏞""ŲžÛŒŲ…Ø§ÛŒØ´ Ø¨Ų‡ ØĩŲØ­Ų‡ اØĩŲ„ÛŒ""ØąŲØĒŲ† Ø¨Ų‡ Ø¨Ø§Ų„Ø§""Ú¯Ø˛ÛŒŲ†Ų‡â€ŒŲ‡Ø§ÛŒ بیشØĒØą""ØĒŲ…Ø§Ų…""Ø¯ÛŒØ¯Ų† Ų‡Ų…Ų‡""Ø§Ų†ØĒ؎اب Ø¨ØąŲ†Ø§Ų…Ų‡""ØŽØ§Ų…ŲˆØ´""ØąŲˆØ´Ų†""‎Alt+‎""‎Ctrl+‎""Ø­Ø°Ų""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""ŲØ§ØĩŲ„Ų‡""‎Sym+‎""Ų…Ų†Ųˆ+""ØŦØŗØĒØŦ؈â€Ļ‏""ŲžØ§ÚŠ ÚŠØąØ¯Ų† ŲžŲØąØŗŲ…Ø§Ų†""Ø¯ØąØŽŲˆØ§ØŗØĒ ØŦØŗØĒØŦ؈""ØŦØŗØĒØŦ؈""Ø§ØąØŗØ§Ų„ ŲžŲØąØŗŲ…Ø§Ų†""ØŦØŗØĒØŦŲˆÛŒ Ú¯ŲØĒØ§ØąÛŒ""Ų‡Ų…â€ŒØąØŗØ§Ų†ÛŒ با""Ų‡Ų…â€ŒØąØŗØ§Ų†ÛŒ با %s""ÚŠŲˆÚ†ÚŠ ÚŠØąØ¯Ų†""ØŦØŗØĒØŦ؈""Eiti į pagrindinį puslapį""NarÅĄyti aukÅĄtyn""Daugiau parinkčiÅŗ""Atlikta""ÅŊr. viską""Pasirinkite programą""IÅ JUNGTI""ÄŽJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""IeÅĄkotiâ€Ļ""IÅĄvalyti uÅžklausą""PaieÅĄkos uÅžklausa""IeÅĄkoti""Pateikti uÅžklausą""PaieÅĄka balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""IeÅĄkoti""āŦšā­‹āŦŽāŦ•⭁ āŦ¨ā­‡āŦ­āŦŋāŦ—ā­‡āŦŸ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ‰āŦĒāŦ°āŦ•⭁ āŦ¨ā­‡āŦ­āŦŋāŦ—ā­‡āŦŸā­ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ…āŦ§āŦŋāŦ• āŦŦāŦŋāŦ•āŦŗā­āŦĒ""āŦšā­‹āŦ‡āŦ—āŦ˛āŦž""āŦ¸āŦŦ⭁ āŦĻā­‡āŦ–āŦ¨ā­āŦ¤ā­""āŦ—ā­‹āŦŸāŦŋāŦ āŦ†āŦĒā­â€ āŦŦāŦžāŦ›āŦ¨ā­āŦ¤ā­""āŦŦāŦ¨ā­āŦĻ""āŦšāŦžāŦ˛ā­ āŦ…āŦ›āŦŋ""Alt+""Ctrl+""āŦĄāŦŋāŦ˛āŦŋāŦŸ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦāŦŖā­āŦŸāŦ°ā­""Function+""Meta+""Shift+""āŦ¸ā­āŦĒā­‡āŦ¸ā­â€""Sym+""āŦŽā­‡āŦ¨ā­""āŦ¸āŦ°ā­āŦšā­āŦš āŦ•āŦ°āŦ¨ā­āŦ¤ā­â€Ļ""āŦ•ā­ā­ąā­‡āŦ°ā­€ āŦ–āŦžāŦ˛āŦŋ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ¸āŦ°ā­āŦšā­āŦš āŦ•ā­ā­ąā­‡āŦ°ā­€""āŦ¸āŦ°ā­āŦšā­āŦš āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ•ā­ā­ąā­‡āŦ°ā­€ āŦĻāŦžāŦ–āŦ˛ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ­āŦāŦ¸ āŦ¸āŦ°ā­āŦšā­āŦš""āŦāŦšāŦžāŦ™ā­āŦ• āŦ¸āŦš āŦ¸ā­‡ā­ŸāŦžāŦ°ā­â€Œ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""%s āŦ¸āŦš āŦ¸ā­‡ā­ŸāŦžāŦ°ā­â€ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ¸āŦ‚āŦ•⭁āŦšāŦŋāŦ¤ āŦ•āŦ°āŦ¨ā­āŦ¤ā­""āŦ¸āŦ°ā­āŦšā­āŦš āŦ•āŦ°āŦ¨ā­āŦ¤ā­""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatuâ€Ļ""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""āēāēąāēšāģ„āē›āģœāģ‰āē˛āēĢāēŧāēąāē""āģ€āēĨāēˇāģˆāē­āē™āē‚āēļāģ‰āē™āģ€āē—āē´āē‡""āē•āēģāē§āģ€āēĨāēˇāē­āēāģ€āēžāēĩāģˆāēĄāģ€āē•āēĩāēĄ""āģāēĨāģ‰āē§āģ†""āģ€āēšāē´āģˆāē‡āē—āēąāē‡āģāēģāē”""āģ€āēĨāēˇāē­āēāģāē­āēąāēš""āē›āē´āē”""āģ€āē›āēĩāē”""Alt+""Ctrl+""āēĨāēļāēš""enter""Function+""Meta+""Shift+""āēāē°āēĢāē§āģˆāē˛āē‡""Sym+""Menu+""āēŠāē­āēāēĢāē˛â€Ļ""āēĨāēļāēšāē‚āģāģ‰āē„āē§āē˛āēĄāēŠāē­āēāēĢāē˛""āē„āēŗāēĒāēŗāēĨāēąāēšāē„āēģāģ‰āē™āēĢāē˛""āēŠāē­āēāēĢāē˛""āēĒāēģāģˆāē‡āē‚āģāģ‰āēĄāēšāē™""āēŠāē­āēāēĢāē˛āē”āģ‰āē§āēāēĒāēŊāē‡""āģāēšāģˆāē‡āē›āēąāē™āēāēąāēš""āģāēšāģˆāē‡āē›āēąāē™āē”āģ‰āē§āē %s""āēĢāēāģāģ‰āēĨāēģāē‡""āēŠāē­āēāēĢāē˛""ניווט ×œ×“×Ŗ הבי×Ē""ניווט למ×ĸלה""×ĸוד אפשרויו×Ē""סיום""ה×Ļג×Ē ×”×›×•×œ""בחיר×Ē ××¤×œ×™×§×Ļיה""כבוי""מופ×ĸל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""×Ēפריט+""חיפושâ€Ļ""מחיק×Ē ×”×Š××™×œ×Ēה""שאיל×Ē×Ē ×—×™×¤×•×Š""חיפוש""שליח×Ē ×Š××™×œ×Ēה""חיפוש קולי""שי×Ēות ×ĸם""שי×Ēות ×ĸם %s""כיוו×Ĩ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Searchâ€Ļ""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylÃļs""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyÃļnti""Sym+""Valikko+""Hakuâ€Ļ""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaaâ€Ļ""Jaa: %s""Tiivistä""Haku"AlerteZone combinÊeTitreBouton, imageLienBarre de menuOption de menuBarre de progressionGroupe de boutons radioOngletBarre de dÊroulementBouton compteur circulaireen cours de traitementrÊduitagrandià double ÊtatdÊsactivÊactivÊdÊsÊlectionnÊRÊsumÊListe des ongletsMinuterieBarre d’outilsPole kombiNagÅ‚ÃŗwekObrazPrzycisk, obrazPasek menuPozycja menuPasek postępuGrupa przyciskÃŗw radiowychKartaPasek przewijaniaPrzycisk kręceniazajętezwinięterozwiniętemieszanewył.wł.nie wybranoPodsumowanieLista kartCzasomierzPasek narzędziThông bÃĄoÔ láģąa cháģnTiÃĒu đáģHÃŦnh áēŖnhNÃēt, HÃŦnh áēŖnhLiÃĒn káēŋtThanh menuMáģĨc trong menuThanh tiáēŋn đáģ™NhÃŗm nÃēt radioThanh cuáģ™nNÃēt quaybáē­nÄ‘ÃŖ thu gáģnÄ‘ÃŖ máģŸ ráģ™ngkáēŋt háģŖpđang táē¯tđang báē­tkhông đưáģŖc cháģnTÃŗm táē¯tDanh sÃĄch tabBáģ™ háēšn giáģThanh công cáģĨSinjalizimKuti kombinimiTitullImazhButon, imazhLidhjaMenyShiriti i menysÃĢArtikull i menysÃĢShiriti i ProgresitGrupi i RadiosSkedÃĢShiriti i lÃĢvizjesButoni i rrotullimitI zÃĢnÃĢpalosurzgjeruarpÃĢrzierjoaktivaktivei pazgjedhurPÃĢrmbledhjaLista e skedaveKohÃĢmatÃĢsiShiriti i mjeteveAviseringKombinationsrutaRubrikBildKnapp, bildLänkMenyMenyfältMenyobjektFÃļrloppsfältRadiogruppFlikBläddringslistRotationsknappupptagenminimeradutÃļkadblandadavpÃĨavmarkeradSammanfattningFliklistaVerktygsfältOpozoriloKombinirano poljeNaslovSlikaGumb, slikaPovezavaMeniMeniElement v menijuČrta napredkaRadio skupinaZavihekDrsnikVrtljivi gumbzasedenostrnjenorazÅĄirjenmeÅĄanoizključenovklopljenoneizbranoPovzetekSeznam z zavihkiČasovnikVrstica z orodjiUpozornenieKombinovanÊ poleNadpisObrÃĄzokTlačidlo, obrÃĄzokOdkazPonukaLiÅĄta s ponukouPoloÅžka ponukyIndikÃĄtor postupuSkupina tlačidiel na vÃŊberTabulÃĄtorLiÅĄta na posÃēvanieOtočnÊ tlačidloobsadenÊzbalenÊrozbalenÊzmieÅĄanÊvypnutÊzapnutÊnevybranÊSÃēhrnZoznam karietČasovačPanel s nÃĄstrojmiØ§Ų„ØąŲšÚŠŲˆŲ…Ø¨Ųˆ Ø¨Ø§ÚŠØŗØŗØąØŽÛŒØĒØĩŲˆÛŒØąØ¨ŲšŲ†ØŒ ØĒØĩŲˆÛŒØąŲ„Ų†ÚŠŲ…ÛŒŲ†ÛŒŲˆŲ…ÛŒŲ†ÛŒŲˆ Ø¨Ø§ØąŲ…ÛŒŲ†ÛŒŲˆ ØĸØĻŲšŲ…ŲžÛŒØ´ØąŲØĒ ÚŠÛŒ Ø¨Ø§ØąØąÛŒÚˆÛŒŲˆ Ú¯ØąŲˆŲžŲšÛŒØ¨ØŗÚŠØąŲˆŲ„ Ø¨Ø§ØąÚ¯ÚžŲ…Ø§Ų†Û’ ڊا Ø¨ŲšŲ†Ų…ØĩØąŲˆŲØŗÚŠÛŒÚ‘Ø§ گیاØĒŲˆØŗÛŒØš ڊیا Ú¯ÛŒØ§Ø§Ų…ØĒØ˛Ø§ØŦØĸ؁ ہےØĸŲ† ہےØēÛŒØą Ų…Ų†ØĒ؎ب ÚŠØąØ¯ÛØŽŲ„Ø§ØĩÛŲšÛŒØ¨ ÚŠÛŒ Ų„ØŗŲšŲšØ§ØĻŲ…ØąŲšŲˆŲ„ Ø¨Ø§ØąArifaKisanduku cha ComboKichwaPichaKitufe, PichaKiungoMenyuUpau wa MenyuKipengee cha MenyuUpau wa HatuaKundi la RedioKichupoMwambaa wa KubiringizaKitufe cha KuzungushashughuliniimekunjwaimepanuliwamchanganyikoimezimwaimewashwahaijateuliwaMuhtasariOrodha ya KichupoKipima mudaUpau wa ZanaAvisoCaixa de combinaÃ§ÃŖoTítuloImagemBotÃŖo, ImagemLigaÃ§ÃŖoBarra do menuItem do menuBarra de progressoGrupo de opçÃĩesSeparadorBarra de deslocamentoBotÃŖo giratÃŗrioocupadofechadoexpandidomistodesativadoativadonÃŖo selecionadoResumoLista de separadoresTemporizadorBarra de ferramentasUyarÄąKarma KutuBaşlÄąkGÃļrselDÃŧğme, GÃļrselBağlantÄąMenÃŧMenÃŧ ÇubuğuMenÃŧ Seçeneğiİlerleme ÇubuğuRadyo GrubuSekmeKaydÄąrma ÇubuğuDÃļndÃŧrme DÃŧğmesimeşguldaraltÄąlmÄąÅŸgenişletilmişkarÄąÅŸÄąkkapalÄąaÃ§Äąkseçili değilÖzetSekme ListesiZamanlayÄącÄąAraç ÇubuğuāŽ¨āŽŋāŽŠā¯ˆāŽĩā¯‚āŽŸā¯āŽŸāŽ˛ā¯āŽ•āŽžāŽŽā¯āŽĒ❋ āŽĒā¯†āŽŸā¯āŽŸāŽŋāŽ¤āŽ˛ā¯ˆāŽĒā¯āŽĒ❁āŽĒāŽŸāŽŽā¯āŽĒā¯ŠāŽ¤ā¯āŽ¤āŽžāŽŠā¯, āŽĒāŽŸāŽŽā¯āŽ‡āŽŖā¯ˆāŽĒā¯āŽĒā¯āŽŽā¯†āŽŠā¯āŽŽā¯†āŽŠā¯ āŽĒāŽŸā¯āŽŸāŽŋāŽŽā¯†āŽŠā¯ āŽĒā¯ŠāŽ°ā¯āŽŗā¯āŽĒā¯‹āŽ•ā¯āŽ•ā¯ āŽĒāŽŸā¯āŽŸāŽŋāŽ°ā¯‡āŽŸāŽŋāŽ¯ā¯‹ āŽ•ā¯āŽ´ā¯āŽĒāŽŋāŽ°āŽŋāŽĩā¯āŽ‰āŽ°ā¯āŽŸā¯āŽŸā¯āŽĒā¯āŽĒāŽŸā¯āŽŸāŽŋāŽ¸ā¯āŽĒāŽŋāŽŠā¯ āŽĒāŽŸā¯āŽŸāŽŠā¯āŽĒāŽŖāŽŋāŽŽāŽŋāŽ•ā¯āŽ¤āŽŋāŽšā¯āŽ°ā¯āŽ•ā¯āŽ•āŽĒā¯āŽĒāŽŸā¯āŽŸāŽ¤ā¯āŽĩāŽŋāŽ°āŽŋāŽĩāŽžāŽ•ā¯āŽ•āŽĒā¯āŽĒāŽŸā¯āŽŸāŽ¤ā¯āŽ•āŽ˛āŽ¨ā¯āŽ¤ā¯āŽŗā¯āŽŗāŽ¤ā¯āŽ†āŽƒāŽĒā¯āŽ†āŽŠā¯āŽ¤ā¯‡āŽ°ā¯āŽĩā¯āŽ¨ā¯€āŽ•ā¯āŽ•āŽĒā¯āŽĒāŽŸā¯āŽŸāŽ¤ā¯āŽšā¯āŽ°ā¯āŽ•ā¯āŽ•āŽŽā¯āŽĒāŽŋāŽ°āŽŋāŽĩ❁āŽĒā¯ āŽĒāŽŸā¯āŽŸāŽŋāŽ¯āŽ˛ā¯āŽŸā¯ˆāŽŽāŽ°ā¯āŽ•āŽ°ā¯āŽĩāŽŋāŽĒā¯āŽĒāŽŸā¯āŽŸāŽŋā¸ā¸˛ā¸Ŗāšā¸ˆāš‰ā¸‡āš€ā¸•ā¸ˇā¸­ā¸™ā¸ā¸Ĩāšˆā¸­ā¸‡ā¸„ā¸­ā¸Ąāš‚ā¸šā¸Ēāšˆā¸§ā¸™ā¸Ģā¸ąā¸§ā¸Ŗā¸šā¸›ā¸ ā¸˛ā¸žā¸›ā¸¸āšˆā¸Ą, ā¸Ŗā¸šā¸›ā¸ ā¸˛ā¸žā¸Ĩā¸´ā¸‡ā¸āšŒāš€ā¸Ąā¸™ā¸šāšā¸–ā¸šāš€ā¸Ąā¸™ā¸šā¸Ŗā¸˛ā¸ĸā¸ā¸˛ā¸Ŗāšƒā¸™āš€ā¸Ąā¸™ā¸šāšā¸–ā¸šā¸„ā¸§ā¸˛ā¸Ąā¸„ā¸ˇā¸šā¸Ģā¸™āš‰ā¸˛ā¸ā¸Ĩā¸¸āšˆā¸Ąā¸›ā¸¸āšˆā¸Ąā¸•ā¸ąā¸§āš€ā¸Ĩā¸ˇā¸­ā¸āšā¸—āš‡ā¸šāšā¸–ā¸šāš€ā¸Ĩā¸ˇāšˆā¸­ā¸™ā¸›ā¸¸āšˆā¸Ąāš€ā¸žā¸´āšˆā¸Ą/ā¸Ĩā¸”āš„ā¸Ąāšˆā¸§āšˆā¸˛ā¸‡ā¸ĸā¸¸ā¸šāšā¸Ĩāš‰ā¸§ā¸‚ā¸ĸ⏞ā¸ĸāšā¸Ĩāš‰ā¸§ā¸œā¸Ēā¸Ąā¸ā¸ąā¸™ā¸›ā¸´ā¸”ā¸­ā¸ĸā¸šāšˆāš€ā¸›ā¸´ā¸”ā¸­ā¸ĸā¸šāšˆāš„ā¸Ąāšˆāš„ā¸”āš‰āš€ā¸Ĩ⏎⏭⏁ā¸Ē⏪⏏⏛⏪⏞ā¸ĸā¸ā¸˛ā¸Ŗāšā¸—āš‡ā¸šā¸•ā¸ąā¸§ā¸ˆā¸ąā¸šāš€ā¸§ā¸Ĩā¸˛āšā¸–ā¸šāš€ā¸„ā¸Ŗā¸ˇāšˆā¸­ā¸‡ā¸Ąā¸ˇā¸­Ų‡Ø´Ø¯Ø§ØąØŦØšØ¨Ų‡ Ú¯ŲØĒÚ¯ŲˆØŗØąâ€ŒØĩŲØ­Ų‡ØĒØĩŲˆÛŒØąØ¯ÚŠŲ…Ų‡ØŒ ØĒØĩŲˆÛŒØąŲžÛŒŲˆŲ†Ø¯Ų…Ų†ŲˆŲ†ŲˆØ§Øą Ų…Ų†ŲˆŲ…ŲˆØąØ¯ Ų…Ų†ŲˆŲ†ŲˆØ§Øą ŲžÛŒØ´ØąŲØĒÚ¯ØąŲˆŲ‡ ØąØ§Ø¯ÛŒŲˆÛŒÛŒØ¨ØąÚ¯Ų‡Ų†ŲˆØ§Øą ŲžÛŒŲ…Ø§ÛŒØ´Ø¯ÚŠŲ…Ų‡ Ú†ØąØŽØ´Ų…Ø´ØēŲˆŲ„ÚŠŲˆÚ†ÚŠâ€ŒØ´Ø¯Ų‡Ø¨Ø˛ØąÚ¯â€ŒØ´Ø¯Ų‡ØĒØąÚŠÛŒØ¨â€ŒØ´Ø¯Ų‡ØŽØ§Ų…ŲˆØ´ØąŲˆØ´Ų†Ų„Øē؈ Ø§Ų†ØĒ؎اب Ø´Ø¯ØŽŲ„Ø§ØĩŲ‡ŲŲ‡ØąØŗØĒ Ø¨ØąÚ¯Ų‡Ø˛Ų…Ø§Ų†â€ŒØŗŲ†ØŦŲ†ŲˆØ§Øą Ø§Ø¨Ø˛Ø§ØąÄŽspėjimasSudėtinis laukelisAntraÅĄtėVaizdasMygtukas, vaizdasNuorodaMeniuMeniu juostaMeniu elementasEigos juostaAkučiÅŗ grupėSkirtukasSlinkimo juostaSukimo mygtukasnaudojamasutrauktaiÅĄskleistamiÅĄrusiÅĄjungtaįjungtapasirinkimas atÅĄauktasSuvestinėSkirtukÅŗ sąraÅĄasLaikmatisÄŽrankiÅŗ juostaāēāģˆāē­āē‡āē„āē­āēĄāģ‚āēšāēŽāēšāēšāēžāē˛āēšāē›āē¸āģˆāēĄ, āēŽāēšāēšāēžāē˛āēšāēĨāē´āģ‰āē‡āģ€āēĄāē™āēšāē›āē´āē”āģ€āē›āēĩāē”×”×Ēראה×Ēיבה משולב×Ēכו×Ēר×Ē×Ēמונהלח×Ļן, ×Ēמונהקישור×Ēפריטסרגל ×Ēפריטיםפריט ב×Ēפריטסרגל ה×Ēקדמו×Ēקבו×Ļ×Ē ×¨×“×™×•×œ×Š×•× ×™×Ēסרגל גלילהלח×Ļן מס×Ēובב×Ēפוסמ×Ļומ×Ļםמורחבמשולבכבוימופ×ĸלהבחירה בוטלהסיכוםרשימ×Ē ×œ×Š×•× ×™×•×Ēטיימרסרגל כליםCombo boxButton, imageMenu barMenu itemProgress barRadio groupScroll barSpin buttonTab listTool barHälytysYhdistelmäruutuOtsikkoKuvaPainike, kuvaLinkkiValikkoValikkopalkkiValikkokohdeEdistymispalkkiValintanappiryhmäVälilehtiVierityspalkkiPyÃļrityspainikevarattupienennettylaajennettuyhdistettyei käytÃļssäkäytÃļssäei valittuYhteenvetoVälilehtilistaAjastinTyÃļkalupalkkiAlerteListe dÊroulanteTitreBouton, imageLienBarre de menuÉlÊment du menuBarre de progressionGroupe de boutons radioOngletBarre de dÊfilementToupieopÊration en coursrÊduitagrandimixtedÊsactivÊactivÊdÊsÊlectionnÊ(s)RÊcapitulatifListe d’ongletsMinuteurBarre d’outilsAlertaCuadro combinadoEncabezadoImagenBotÃŗn, imagenEnlaceMenÃēBarra de menÃēsElemento de menÃēBarra de progresoGrupo de botones de opciÃŗnPestaÃąaBarra de desplazamientoBotÃŗn de nÃēmeroocupadocontraídoexpandidomixtodesactivadoactivadono seleccionadoResumenLista de pestaÃąasTemporizadorBarra de herramientasHoiatusLiitboksPealkiriPiltNupp, piltMenÃŧÃŧMenÃŧÃŧribaMenÃŧÃŧ-ÃŧksusEdenemisribaRaadionuppude gruppVahekaartKerimisribaPÃļÃļramisnupphÃĩivatudahendatudlaiendatudmiksitudväljasseesvalimataKokkuvÃĩteVahekaartide loendTaimerTÃļÃļriistaribaUpozorenjeKombinirani okvirZaglavljeSlikaGumb, slikaVezaIzbornikTraka izbornikaStavka izbornikaTraka napretkaGrupa izbornih gumbaKarticaTraka za pomicanjeGumb za vrtnjuzauzetosaÅžetoproÅĄirenomjeÅĄovitoisključenouključenoponiÅĄten odabirSaÅžetakPopis karticaMjerač vremenaTraka s alatimaFigyelmeztetÊsKombinÃĄlt listaCímsorKÊpGomb, kÊpHivatkozÃĄsMenÃŧMenÃŧsorMenÃŧelemFolyamatjelzőVÃĄlasztÃŗgomb-csoportLapfÃŧlGÃļrgetősÃĄvForgÃŗ gombelfoglaltÃļsszecsukvakibontvavegyeskibenincs kivÃĄlasztvaÖsszegzÊsLapfÃŧlek listÃĄjaIdőmÊrőEszkÃļztÃĄrWaarschuwingCombivakKopAfbeeldingKnop, afbeeldingMenubalkMenu-itemVoortgangsbalkKeuzegroepTabbladScrollbalkDraaiknopbezigsamengevouwenuitgevouwengemengduitaangedeselecteerdSamenvattingLijst met tabbladenWerkbalkĐĄĐ¸ĐŗĐŊаĐģКоĐŧйиĐŊĐ¸Ņ€Đ°ĐŊа ĐēŅƒŅ‚Đ¸ŅĐ—Đ°ĐŗĐģавиĐĩĐ˜ĐˇĐžĐąŅ€Đ°ĐļĐĩĐŊиĐĩĐ‘ŅƒŅ‚ĐžĐŊ, Đ¸ĐˇĐžĐąŅ€Đ°ĐļĐĩĐŊиĐĩĐ’Ņ€ŅŠĐˇĐēаМĐĩĐŊŅŽĐ›ĐĩĐŊŅ‚Đ° ҁ ĐŧĐĩĐŊŅŽŅ‚Đ°Đ•ĐģĐĩĐŧĐĩĐŊŅ‚ ĐžŅ‚ ĐŧĐĩĐŊŅŽĐ›ĐĩĐŊŅ‚Đ° Са ĐŊаĐŋŅ€ĐĩĐ´ŅŠĐēРадиО ĐŗŅ€ŅƒĐŋаРаСдĐĩĐģЛĐĩĐŊŅ‚Đ° Са ĐŋŅ€ĐĩĐ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩĐ‘ŅƒŅ‚ĐžĐŊ Са ĐˇĐ°Đ˛ŅŠŅ€Ņ‚Đ°ĐŊĐĩСаĐĩŅ‚ĐžŅĐ˛Đ¸Ņ‚ĐžŅ€Đ°ĐˇŅˆĐ¸Ņ€ĐĩĐŊĐžŅĐŧĐĩҁĐĩĐŊОиСĐēĐģŅŽŅ‡ĐĩĐŊОвĐēĐģŅŽŅ‡ĐĩĐŊĐžĐŊĐĩĐ¸ĐˇĐąŅ€Đ°ĐŊĐžĐžĐąĐžĐąŅ‰ĐĩĐŊиĐĩĐĄĐŋĐ¸ŅŅŠĐē ҁ Ņ€Đ°ĐˇĐ´ĐĩĐģиĐĸаКĐŧĐĩŅ€Đ›ĐĩĐŊŅ‚Đ° ҁ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Đ¸āĻ…ā§āϝāĻžāϞāĻžāĻ°ā§āϟāĻ•āĻŽā§āĻŦā§‹ āĻŦāĻ•ā§āϏāĻļāĻŋāϰ⧋āύāĻžāĻŽāχāĻŽā§‡āϜāĻŦā§‹āϤāĻžāĻŽ, āĻ›āĻŦāĻŋāϞāĻŋāĻ™ā§āĻ•āĻŽā§‡āύ⧁āĻŽā§‡āύ⧁ āĻŦāĻžāϰāĻŽā§‡āύ⧁ āφāχāĻŸā§‡āĻŽāĻĒā§āϰ⧋āĻ—ā§āϰ⧇āϏ āĻŦāĻžāϰāϰ⧇āĻĄāĻŋāĻ“ āĻ—ā§āϰ⧁āĻĒāĻŸā§āϝāĻžāĻŦāĻ¸ā§āĻ•ā§āϰ⧋āϞ āĻŦāĻžāϰāĻ¸ā§āĻĒāĻŋāύ āĻŦā§‹āϤāĻžāĻŽāĻŦā§āϝāĻ¸ā§āϤāϛ⧋āϟ āĻ•āϰāĻž āĻšāϝāĻŧ⧇āϛ⧇āĻŦāĻžāĻĄāĻŧāĻžāύ⧋ āĻšāϝāĻŧ⧇āϛ⧇āĻŽāĻŋāĻļā§āϰāĻŦāĻ¨ā§āϧ āφāϛ⧇āϚāĻžāϞ⧁ āφāϛ⧇āφāύāϏāĻŋāϞ⧇āĻ•ā§āϟ āĻ•āϰāĻž āĻšāϝāĻŧ⧇āϛ⧇āϏāĻžāϰāϏāĻ‚āĻ•ā§āώ⧇āĻĒāĻŸā§āϝāĻžāĻŦ āϞāĻŋāĻ¸ā§āϟāϟāĻžāχāĻŽāĻžāϰāϟ⧁āϞ āĻŦāĻžāĻ°ā¤•ā¤ŽāĨā¤ŦāĨ‹ ā¤Ŧ⤕āĨā¤¸ā¤ĢāĨ‹ā¤ŸāĨ‹ā¤Ŧ⤟⤍, ā¤ĢāĨ‹ā¤ŸāĨ‹ā¤˛ā¤ŋ⤙āĨā¤•ā¤ŽāĨ‡ā¤¨āĨā¤…ā¤Ģ⤅⤍OpletnotaKombinasiekassieOpskrifPrentKnoppie, prentSkakelKieslysKieslysbalkKieslysitemVorderingbalkRadiogroepOortjieRolleesbalkTolknoppiebesigis ingevouis uitgevouis gemengafaanontkiesOpsommingOortjielysAftellerNutsbalk⤅⤞⤰āĨā¤Ÿā¤•āĨ‰ā¤ŽāĨā¤ŦāĨ‹ ā¤ŦāĨ‰ā¤•āĨā¤¸ā¤ļāĨ€ā¤°āĨā¤ˇā¤•ā¤Ģā¤ŧāĨ‹ā¤ŸāĨ‹ā¤Ŧ⤟⤍, ā¤Ģā¤ŧāĨ‹ā¤ŸāĨ‹ā¤˛ā¤ŋā¤‚ā¤•ā¤ŽāĨ‡ā¤¨āĨ‚ā¤ŽāĨ‡ā¤¨āĨ‚ ā¤Ŧā¤žā¤°ā¤ŽāĨ‡ā¤¨āĨ‚ ā¤†ā¤‡ā¤Ÿā¤Žā¤ĒāĨā¤°āĨ‹ā¤—āĨā¤°āĨ‡ā¤¸ ā¤Ŧā¤žā¤°ā¤°āĨ‡ā¤Ąā¤ŋ⤝āĨ‹ ⤗āĨā¤°āĨā¤Ē⤟āĨˆā¤Ŧ⤏āĨā¤•āĨā¤°āĨ‰ā¤˛ ā¤Ŧā¤žā¤°ā¤¸āĨā¤Ēā¤ŋ⤍ ā¤Ŧ⤟⤍ā¤ĩāĨā¤¯ā¤¸āĨā¤¤ā¤›āĨ‹ā¤Ÿā¤ž ⤕ā¤ŋā¤¯ā¤ž ā¤—ā¤¯ā¤žā¤Ŧā¤Ąā¤ŧā¤ž ⤕ā¤ŋā¤¯ā¤ž ā¤—ā¤¯ā¤žā¤Žā¤ŋ⤕āĨā¤¸ā¤Ŧ⤂ā¤Ļ ā¤šāĨˆā¤šā¤žā¤˛āĨ‚ ā¤šāĨˆā¤¨ā¤šāĨ€ā¤‚ ⤚āĨā¤¨āĨ‡ ā¤—ā¤ā¤¸ā¤žā¤°ā¤žā¤‚ā¤ļ⤟āĨˆā¤Ŧ ⤞ā¤ŋ⤏āĨā¤Ÿā¤Ÿā¤žā¤‡ā¤Žā¤°ā¤ŸāĨ‚⤞ ā¤Ŧā¤žā¤°áƒ’áƒáƒ¤áƒ áƒ—áƒŽáƒ˜áƒšáƒ”áƒ‘áƒáƒĄáƒáƒ—áƒáƒŖáƒ áƒ˜áƒ’áƒáƒ›áƒáƒĄáƒáƒŽáƒŖáƒšáƒ”áƒ‘áƒáƒĻილაკი, áƒ’áƒáƒ›áƒáƒĄáƒáƒŽáƒŖáƒšáƒ”áƒ‘áƒáƒ‘áƒ›áƒŖáƒšáƒ˜áƒ›áƒ”áƒœáƒ˜áƒŖáƒ›áƒ”áƒœáƒ˜áƒŖáƒĄ áƒ–áƒáƒšáƒ˜áƒ›áƒ”áƒœáƒ˜áƒŖáƒĄ áƒ”áƒ áƒ—áƒ”áƒŖáƒšáƒ˜áƒžáƒ áƒáƒ’áƒ áƒ”áƒĄáƒ˜áƒĄ ზოლირადიო áƒ¯áƒ’áƒŖáƒ¤áƒ˜áƒŠáƒáƒœáƒáƒ áƒ—áƒ˜áƒ’áƒáƒ“áƒáƒáƒ“áƒ’áƒ˜áƒšáƒ”áƒ‘áƒ˜áƒĄ პანელიდაáƒĸრიალების áƒĻáƒ˜áƒšáƒáƒ™áƒ˜áƒ“áƒáƒ™áƒáƒ•áƒ”áƒ‘áƒŖáƒšáƒ˜áƒáƒ™áƒ”áƒĒáƒ˜áƒšáƒ˜áƒ’áƒáƒ¨áƒšáƒ˜áƒšáƒ˜áƒ¨áƒ”áƒ áƒ”áƒŖáƒšáƒ˜áƒ’áƒáƒ›áƒáƒ áƒ—áƒŖáƒšáƒ˜áƒáƒŠáƒáƒ áƒ—áƒŖáƒšáƒ˜áƒáƒŖáƒ áƒŠáƒ”áƒ•áƒ”áƒšáƒ˜áƒ¨áƒ”áƒ¯áƒáƒ›áƒ”áƒ‘áƒáƒŠáƒáƒœáƒáƒ áƒ—áƒ”áƒ‘áƒ˜áƒĄ ქიაáƒĸაიმერიხელსაáƒŦყოების ზოლიWarnhinweisKombinationsfeldÜberschriftBildButton, BildMenÃŧMenÃŧleisteMenÃŧpunktStatusanzeigeGruppe von ButtonsScroll-LeisteAuswahl-Buttonin Gebrauchausgeblendeteingeblendetgemischtauseinnicht ausgewähltÜbersichtTab-ListeSymbolleisteKombo siyahÄąsÄąÅžÉ™kilDÃŧymə, şəkilKeçidMenyudeaktivaktivdirė•ŒëĻŧėŊ¤ëŗ´ ėƒėžė œëĒŠė´ë¯¸ė§€ë˛„íŠŧ, ė´ë¯¸ė§€ë§íŦ메뉴메뉴 í‘œė‹œė¤„ëŠ”ë‰´ 항ëĒŠė§„í–‰ëĨ  í‘œė‹œė¤„ëŧë””ė˜¤ ęˇ¸ëŖšíƒ­ėŠ¤íŦ륤 ë°”íšŒė „ 버íŠŧ래ëĻŦ ė¤‘ėˆ¨ę˛¨ė§í™•ëŒ€ë¨í˜ŧí•Ší•´ė œė„¤ė •ė„ íƒë˜ė§€ ė•ŠėŒėš”ė•Ŋ탭 ëĻŦėŠ¤íŠ¸íƒ€ė´ë¨¸ë„ęĩŦ í‘œė‹œė¤„ā´…ā´˛āĩ‡āĩŧⴟāĩā´Ÿāĩā´•āĩ‹ā´‚ā´Ŧāĩ‹ ā´Ŧāĩ‹ā´•āĩâ€Œā´¸āĩā´¤ā´˛ā´•āĩā´•āĩ†ā´Ÿāĩā´Ÿāĩā´šā´ŋā´¤āĩā´°ā´‚ā´Ŧⴟāĩā´Ÿāĩē, ⴚā´ŋā´¤āĩā´°ā´‚ā´˛ā´ŋā´™āĩā´•āĩā´Žāĩ†ā´¨āĩā´Žāĩ†ā´¨āĩ ā´Ŧā´žāĩŧā´Žāĩ†ā´¨āĩ ⴇⴍⴂā´Ēāĩā´°āĩ‹ā´—ā´¤ā´ŋ ā´Ŧā´žāĩŧā´ąāĩ‡ā´Ąā´ŋā´¯āĩ‹ ā´—āĩā´°āĩ‚ā´Ēāĩā´Ēāĩā´Ÿā´žā´Ŧāĩā´¸āĩâ€Œā´•āĩā´°āĩ‹āĩž ā´Ŧā´žāĩŧā´•ā´ąā´•āĩā´•āĩā´• ā´Ŧⴟāĩā´Ÿāĩēā´¤ā´ŋā´°ā´•āĩā´•ā´ŋā´˛ā´žā´Ŗāĩā´šāĩā´°āĩā´•āĩā´•ā´ŋā´ĩā´ŋā´Ēāĩā´˛āĩ€ā´•ā´°ā´ŋⴚāĩā´šāĩā´Žā´ŋā´ļāĩā´°ā´ŋⴤⴂⴓā´Ģā´žā´Ŗāĩā´“ā´Ŗā´žā´Ŗāĩā´¤ā´ŋā´°ā´žāĩā´žāĩ†ā´Ÿāĩā´¤āĩā´¤ā´¤āĩ ā´Žā´žā´ąāĩā´ąā´ŋⴏⴂⴗāĩā´°ā´šā´‚ā´Ÿā´žā´Ŧāĩ ā´˛ā´ŋā´¸āĩâ€Œā´ąāĩā´ąāĩā´Ÿāĩˆā´Žāĩŧⴟāĩ‚āĩž ā´Ŧā´žāĩŧĐŸŅ€ĐĩĐ´ŅƒĐŋŅ€ĐĩĐ´ŅƒĐ˛Đ°ŅšĐĩКоĐŧйиĐŊĐ¸Ņ€Đ°ĐŊĐž ĐŋĐžĐģĐĩĐ—Đ°ĐŗĐģавиĐĩĐĄĐģиĐēаКоĐŋ҇Đĩ, ҁĐģиĐēĐ°Đ’Ņ€ŅĐēаМĐĩĐŊиМĐĩĐŊи ĐģĐĩĐŊŅ‚Đ°ĐŸŅ€ĐžĐ¸ĐˇĐ˛ĐžĐ´ ĐŊа ĐŧĐĩĐŊиЛĐĩĐŊŅ‚Đ° Са ĐŊаĐŋŅ€ĐĩĐ´ĐžĐēРадиО ĐŗŅ€ŅƒĐŋĐ°ĐšĐ°Ņ€Ņ‚Đ¸Ņ‡ĐēаЛĐĩĐŊŅ‚Đ° Са ĐģĐ¸ĐˇĐŗĐ°ŅšĐĩКоĐŋ҇Đĩ Са Đ˛Ņ€Ņ‚ĐĩҚĐĩĐˇĐ°Ņ„Đ°Ņ‚ĐĩĐŊĐžŅĐžĐąŅ€Đ°ĐŊĐžĐŋŅ€ĐžŅˆĐ¸Ņ€ĐĩĐŊĐžĐŧĐĩŅˆĐ°ĐŊĐžĐ¸ŅĐēĐģŅƒŅ‡ĐĩĐŊОвĐēĐģŅƒŅ‡ĐĩĐŊĐžĐ¸ĐˇĐąĐžŅ€ĐžŅ‚ Đĩ ĐŋĐžĐŊĐ¸ŅˆŅ‚ĐĩĐŊĐ ĐĩСиĐŧĐĩĐĄĐŋĐ¸ŅĐžĐē ŅĐž ĐēĐ°Ņ€Ņ‚Đ¸Ņ‡ĐēиĐĸĐ°Ņ˜ĐŧĐĩŅ€Đ›ĐĩĐŊŅ‚Đ° ŅĐž аĐģĐ°Ņ‚ĐēĐ¸ā˛Žā˛šāŗā˛šā˛°ā˛ŋā˛•āŗ†ā˛•āŗŠā˛‚ā˛Ŧ⺊ ā˛Ŧā˛žā˛•āŗā˛¸āŗā˛ļā˛ŋā˛°āŗ‹ā˛˛āŗ‡ā˛–ā˛šā˛ŋā˛¤āŗā˛°ā˛Ŧā˛Ÿā˛¨āŗ, ➚ā˛ŋā˛¤āŗā˛°ā˛˛ā˛ŋā˛‚ā˛•āŗā˛Žāŗ†ā˛¨āŗā˛Žāŗ†ā˛¨āŗ ā˛Ŧā˛žā˛°āŗā˛Žāŗ†ā˛¨āŗ ā˛ā˛Ÿā˛‚ā˛Ēāŗā˛°āŗ‹ā˛—āŗā˛°āŗ†ā˛¸āŗ ā˛Ŧā˛žā˛°āŗā˛°āŗ‡ā˛Ąā˛ŋ➝⺋ ➗⺁➂ā˛Ēāŗā˛Ÿāŗā˛¯ā˛žā˛Ŧāŗā˛¸āŗā˛•āŗā˛°ā˛žā˛˛āŗ ā˛Ŧā˛žā˛°āŗā˛¸āŗā˛Ēā˛ŋā˛¨āŗ ā˛Ŧā˛Ÿā˛¨āŗā˛•ā˛žā˛°āŗā˛¯ā˛¨ā˛ŋā˛°ā˛¤ā˛Žāŗā˛šāŗā˛šā˛ŋā˛Ļāŗ†ā˛ĩā˛ŋā˛¸āŗā˛¤ā˛°ā˛ŋā˛¸ā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ†ā˛Ŧ➗⺆ā˛Ŧ➗⺆➝➆ā˛Ģāŗā˛†ā˛¨āŗā˛†ā˛¯āŗā˛•āŗ† ➰ā˛Ļāŗā˛Ļāŗā˛Žā˛žā˛Ąā˛˛ā˛žā˛—ā˛ŋā˛Ļāŗ†ā˛¸ā˛žā˛°ā˛žā˛‚ā˛ļā˛Ÿāŗā˛¯ā˛žā˛Ŧāŗ ā˛Ēā˛Ÿāŗā˛Ÿā˛ŋā˛Ÿāŗˆā˛Žā˛°āŗā˛Ÿāŗ‚ā˛˛āŗ ā˛Ŧā˛žā˛°āŗá€žá€á€­á€•á€ąá€¸á€á€ģကá€ēရá€Ŋေးရနá€ēအကá€Ŋကá€ēခေá€Ģငá€ēးစီးဓá€Ŧတá€ēပုá€ļခလုတá€ē၊ ဓá€Ŧတá€ēပုá€ļလင့á€ēခá€ēမီနူးမီနူး ဘá€Ŧးတနá€ēးမီနူး အကá€ŧေá€Ŧငá€ēးအရá€Ŧပá€ŧဎးစဎးမသုပá€ŧ ဘá€Ŧးတနá€ēá€¸á€›á€ąá€’á€Žá€šá€­á€¯á€Ąá€¯á€•á€ēစုတကá€ēဘá€ēရá€Ŋှေ့ဆá€Ŋဲကá€ŧည့á€ēရနá€ē ဘá€Ŧးတနá€ēးလှည့á€ēရနá€ē ခလုတá€ēလုပá€ēဆေá€Ŧငá€ēနေဆဲခေá€Ģကá€ēသိမá€ēးထá€Ŧးပá€Ģတယá€ēခá€ģဲ့ထá€Ŧးပá€ŧီးရေá€Ŧစပá€ēထá€Ŧးပá€ŧီးပိတá€ēဖá€Ŋင့á€ēရá€Ŋေးမထá€Ŧးပá€Ģအနှစá€ēခá€ģုပá€ēတကá€ēဘá€ēစá€Ŧရငá€ēးအခá€ģိနá€ēတိုငá€ēးစကá€ēကိရိယá€Ŧ ဘá€Ŧးတနá€ēးØĒŲ†Ø¨ŲŠŲ‡Ų…ØąØ¨Øš ØĒØ­ØąŲŠØą ŲˆØŗØąØ¯Ø§Ų„ØšŲ†ŲˆØ§Ų†ØĩŲˆØąØŠØ˛ØąØŒ ØĩŲˆØąØŠØąØ§Ø¨ØˇØ§Ų„Ų‚Ø§ØĻŲ…ØŠØ´ØąŲŠØˇ Ø§Ų„Ų‚Ø§ØĻŲ…ØŠØšŲ†ØĩØą Ø§Ų„Ų‚Ø§ØĻŲ…ØŠØ´ØąŲŠØˇ Ø§Ų„ØĒŲ‚Ø¯Ų…Ų…ØŦŲ…ŲˆØšØŠ ØŖØ˛ØąØ§Øą ا؎ØĒŲŠØ§ØąØšŲ„Ø§Ų…ØŠ Ø§Ų„ØĒØ¨ŲˆŲŠØ¨Ø´ØąŲŠØˇ Ø§Ų„ØĒŲ…ØąŲŠØąØ˛Øą Ø˛ŲŠØ§Ø¯ØŠ ŲˆŲ†Ų‚ØĩØ§Ų†Ų…Ø´ØēŲˆŲ„Ų…ØˇŲˆŲŠŲ…ŲˆØŗØšŲ…ØŽØĒŲ„ØˇØĨŲŠŲ‚Ø§Ų ØĒØ´ØēŲŠŲ„ØĒØ´ØēŲŠŲ„ØēŲŠØą Ų…Ø­Ø¯ŲŽØ¯Ų…Ų„ØŽØĩŲ‚Ø§ØĻŲ…ØŠ ØšŲ„Ø§Ų…Ø§ØĒ Ø§Ų„ØĒØ¨ŲˆŲŠØ¨Ų…Ø¤Ų‚ŲØĒØ´ØąŲŠØˇ Ø§Ų„ØŖØ¯ŲˆØ§ØĒAlertaCaixa de combinaÃ§ÃŖoTítuloImagemBotÃŖo, imagemLinkMenuBarra do menuItem do menuBarra de progressoBotÃŖo de grupo de opçÃĩesAbaBarra de rolamentoBotÃŖo de rotaÃ§ÃŖoocupadorecolhidoexpandidomistodesativadoativadodesmarcadosResumoLista de abasTemporizadorBarra de ferramentasĐĄĐŋĐžĐ˛Ņ–Ņ‰ĐĩĐŊĐŊŅĐšĐžĐŧĐąŅ–ĐŊОваĐŊиК ҁĐŋĐ¸ŅĐžĐēĐ—Đ°ĐŗĐžĐģОвОĐēĐ—ĐžĐąŅ€Đ°ĐļĐĩĐŊĐŊŅĐšĐŊĐžĐŋĐēа, ĐˇĐžĐąŅ€Đ°ĐļĐĩĐŊĐŊŅĐŸĐžŅĐ¸ĐģаĐŊĐŊŅĐœĐĩĐŊŅŽĐ ŅĐ´ĐžĐē ĐŧĐĩĐŊŅŽĐžĐą\'Ņ”ĐēŅ‚ ĐŧĐĩĐŊŅŽĐ†ĐŊдиĐēĐ°Ņ‚ĐžŅ€ ĐŋŅ€ĐžĐŗŅ€ĐĩŅŅƒĐ“Ņ€ŅƒĐŋа ĐŋĐĩŅ€ĐĩĐŧиĐēĐ°Ņ‡Ņ–Đ˛Đ’ĐēĐģадĐēĐ°ĐŸŅ€ĐžĐēŅ€ŅƒŅ‡ŅƒĐ˛Đ°ĐŊĐŊŅĐšĐŊĐžĐŋĐēа ОйĐĩŅ€Ņ‚Đ°ĐŊĐŊŅĐˇĐ°ĐšĐŊŅŅ‚ĐžĐˇĐŗĐžŅ€ĐŊŅƒŅ‚ĐžŅ€ĐžĐˇĐŗĐžŅ€ĐŊŅƒŅ‚ĐžĐˇĐŧŅ–ŅˆĐ°ĐŊоВиĐŧĐē.ĐŖĐ˛Ņ–ĐŧĐē.ĐŊĐĩ Đ˛Đ¸ĐąŅ€Đ°ĐŊоЗвĐĩĐ´ĐĩĐŊĐŊŅĐĄĐŋĐ¸ŅĐžĐē вĐēĐģадОĐēĐĸаКĐŧĐĩŅ€ĐŸĐ°ĐŊĐĩĐģҌ Ņ–ĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Ņ–Đ˛ĐžĐąĐ°Đ˛ĐĩŅˆŅ‚ĐĩҚĐĩКоĐŧйиĐŊОваĐŊĐž ĐŋĐžŅ™ĐĩĐ—Đ°ĐŗĐģĐ°Đ˛Ņ™ĐĩĐĄĐģиĐēĐ°Đ”ŅƒĐŗĐŧĐĩ, ҁĐģиĐēаВĐĩзаМĐĩĐŊиĐĸŅ€Đ°Đēа ŅĐ° ĐŧĐĩĐŊĐ¸Ņ˜ĐĩĐŧĐĄŅ‚Đ°Đ˛Đēа иС ĐŧĐĩĐŊĐ¸Ņ˜Đ°ĐĸŅ€Đ°Đēа ŅĐ° ĐŊаĐŋŅ€ĐĩŅ‚ĐēĐžĐŧĐ“Ņ€ŅƒĐŋа Са Ņ€Đ°Đ´Đ¸ĐžĐšĐ°Ņ€Ņ‚Đ¸Ņ†Đ°ĐĸŅ€Đ°Đēа Са ĐŋĐžĐŧĐĩŅ€Đ°ŅšĐĩĐ”ŅƒĐŗĐŧĐĩ Са ĐžĐēŅ€ĐĩŅ‚Đ°ŅšĐĩĐˇĐ°ŅƒĐˇĐĩŅ‚ĐžŅĐē҃ĐŋŅ™ĐĩĐŊĐžĐŋŅ€ĐžŅˆĐ¸Ņ€ĐĩĐŊĐžĐŧĐĩŅˆĐ°ĐŊĐžĐ¸ŅĐēŅ™ŅƒŅ‡ĐĩĐŊĐžŅƒĐēŅ™ŅƒŅ‡ĐĩĐŊĐžĐ¸ĐˇĐąĐžŅ€ ĐžĐŋОСваĐŊĐ ĐĩСиĐŧĐĩĐ›Đ¸ŅŅ‚Đ° ĐēĐ°Ņ€Ņ‚Đ¸Ņ†Đ°ĐĸĐ°Ņ˜ĐŧĐĩŅ€ĐĸŅ€Đ°Đēа ŅĐ° аĐģĐ°Ņ‚ĐēаĐŧĐ°ā¨¸āŠā¨šāŠ‡ā¨¤ā¨¨ā¨žā¨•āŠ‹ā¨‚ā¨ŦāŠ‹ ā¨Ŧā¨žā¨•ā¨¸ā¨¸ā¨ŋā¨°ā¨˛āŠ‡ā¨–ā¨šā¨ŋāŠąā¨¤ā¨°ā¨Ŧ⍟⍍, ⍚ā¨ŋāŠąā¨¤ā¨°ā¨˛ā¨ŋāŠ°ā¨•ā¨ŽāŠ€ā¨¨āŠ‚ā¨ŽāŠ€ā¨¨āŠ‚ ā¨Ŧā¨žā¨°ā¨ŽāŠ€ā¨¨āŠ‚ ā¨†ā¨ˆā¨Ÿā¨Žā¨ĒāŠā¨°āŠ‹ā¨—ā¨°āŠˆāŠąā¨¸ ā¨Ŧā¨žā¨°ā¨°ā¨ĄāŠ€ā¨“ ā¨—ā¨°āŠāŠąā¨Ēā¨ŸāŠˆā¨Ŧā¨¸ā¨•āŠā¨°āŠ‹ā¨˛ ā¨Ŧā¨žā¨°\'ā¨˜āŠāŠ°ā¨Žā¨žā¨“\' ā¨Ŧ⍟⍍ā¨ĩā¨ŋā¨…ā¨¸ā¨¤ā¨¸ā¨ŽāŠ‡ā¨Ÿā¨ŋ⍆ ⍗ā¨ŋ⍆ā¨ĩā¨ŋā¨¸ā¨¤ā¨žā¨° ā¨•āŠ€ā¨¤ā¨ž ⍗ā¨ŋā¨†ā¨Žā¨ŋā¨•ā¨¸ā¨Ąā¨ŦāŠ°ā¨Ļā¨šā¨žā¨˛āŠ‚ā¨šāŠ‹ā¨Ŗ ā¨šā¨Ÿā¨žā¨ˆ ā¨—ā¨ˆā¨¸ā¨žā¨°ā¨ŸāŠˆā¨Ŧ ā¨¸āŠ‚ā¨šāŠ€ā¨Ÿā¨žā¨ˆā¨Žā¨°ā¨ŸāŠ‚ā¨˛ ā¨Ŧā¨žā¨°āļ‡āļŸāˇ€āˇ“āļ¸āˇƒāļ‚āļē⎔āļšāˇŠāļ­ āļ´āˇ™āļ§āˇŠāļ§āˇ’āļēāˇƒāˇ’āļģ⎃⎊āļ­āļŊāļēāļģ⎖āļ´āļē‍āļļ⎜āļ­āˇŠāļ­āļ¸, āļģ⎖āļ´āļē⎃āļļ⎐āļŗāˇ’āļēāļ¸āˇ™āļąāˇ”⎀āļ¸āˇ™āļąāˇ” āļ­āˇ“āļģāˇ”āˇ€â€āļ¸āˇ™āļąāˇ” āļ…āļē⎒āļ­āļ¸āļēāļ´āˇŠâ€āļģāļœāļ­āˇ’ āļ­āˇ“āļģ⎔⎀āļœāˇ”⎀āļąāˇŠāˇ€āˇ’āļ¯āˇ”āļŊ⎒ ⎃āļ¸āˇ–⎄āļēāļ§āˇāļļāļēāļ…āļąāˇ”āļ āļŊāļą āļ­āˇ“āļģāˇ”āˇ€āˇ€āˇšāļœāļē⎙āļąāˇŠ āļšāļģāļšāˇ€āļą āļļ⎜āļ­āˇŠāļ­āļ¸āļšāˇāļģ⎊āļēāļļ⎄⎔āļŊāļē⎒⎄āļšāˇ”⎅āļą āļŊāļ¯āˇ“⎀⎒⎄⎒āļ¯āˇ”⎀āļą āļŊāļ¯āˇ’āļ¸āˇ’āˇāˇŠâ€āļģ āļšāˇ…āļ…āļšāˇŠâ€āļģ⎒āļēāļē⎒āļšāˇŠâ€āļģ⎒āļēāˇāļ­āˇŠāļ¸āļšāļē⎒āļ­āˇšāļģ⎓āļ¸ āļ‰āˇ€āļ­āˇŠ āļšāļģāļą āļŊāļ¯āˇƒāˇāļģāˇāļ‚⎁āļēāļ§āˇāļļ āļŊ⎐āļēāˇ’āˇƒāˇŠāļ­āˇ”⎀āļšāˇāļŊ āļœāļĢāļšāļēāļ¸āˇ™āˇ€āļŊāļ¸āˇŠ āļ­āˇ“āļģ⎔⎀#FFBEBEBE#00000000#FFFFFF#FF00004dp4dp12dp4dp4dp50dp26dp30dp14spThis device does not provide a decoder for %1$sThis device does not provide a secure decoder for %1$sUnable to query device decodersUnable to instantiate decoder %1$sProtected content not supported on API levels below 18Unrecognized media formatThis device does not support the required DRM schemeAn unknown DRM error occurredSettingsPlayback SpeedSelect Playback SpeedMedia playbackPreparing playback ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties +new file mode 100644 +index 0000000..05361d0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties +@@ -0,0 +1,5 @@ ++#Fri Mar 13 09:38:44 IST 2026 ++com.brentvatne.react.react-native-video-main-5\:/layout/exo_legacy_player_control_view.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/release/packageReleaseResources/layout/exo_legacy_player_control_view.xml ++com.brentvatne.react.react-native-video-main-5\:/layout/exo_player_view_surface.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/release/packageReleaseResources/layout/exo_player_view_surface.xml ++com.brentvatne.react.react-native-video-main-5\:/drawable/circle.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/release/packageReleaseResources/drawable/circle.xml ++com.brentvatne.react.react-native-video-main-5\:/layout/exo_player_view_texture.xml=/Users/nayifnoushad/Documents/Projects/NuvioStreaming/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/packaged_res/release/packageReleaseResources/layout/exo_player_view_texture.xml +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..e8dd9e4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merged.dir/values/values.xml +@@ -0,0 +1,33 @@ ++ ++ ++ #00000000 ++ #FF0000 ++ #FFBEBEBE ++ #FFFFFF ++ 4dp ++ 4dp ++ 30dp ++ 12dp ++ 4dp ++ 14sp ++ 50dp ++ 26dp ++ 4dp ++ Protected content not supported on API levels below 18 ++ An unknown DRM error occurred ++ This device does not support the required DRM scheme ++ Unable to instantiate decoder %1$s ++ This device does not provide a decoder for %1$s ++ This device does not provide a secure decoder for %1$s ++ Unable to query device decoders ++ Preparing playback ++ Media playback ++ Playback Speed ++ Select Playback Speed ++ Settings ++ Unrecognized media format ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merger.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merger.xml +new file mode 100644 +index 0000000..10caa27 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/incremental/release/packageReleaseResources/merger.xml +@@ -0,0 +1,5 @@ ++ ++#FFBEBEBE#00000000#FFFFFF#FF00004dp4dp12dp4dp4dp50dp26dp30dp14spThis device does not provide a decoder for %1$sThis device does not provide a secure decoder for %1$sUnable to query device decodersUnable to instantiate decoder %1$sProtected content not supported on API levels below 18Unrecognized media formatThis device does not support the required DRM schemeAn unknown DRM error occurredSettingsPlayback SpeedSelect Playback SpeedMedia playbackPreparing playback +\ No newline at end of file diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-video_debug.kotlin_module b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-video_debug.kotlin_module new file mode 100644 index 0000000..1698483 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-video_debug.kotlin_module differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-video_release.kotlin_module b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-video_release.kotlin_module +new file mode 100644 +index 0000000..1698483 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/java_res/release/processReleaseJavaRes/out/META-INF/react-native-video_release.kotlin_module differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.class new file mode 100644 index 0000000..b019110 @@ -366,6 +27780,38 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..2f92e20 Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class +new file mode 100644 +index 0000000..a005160 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class +new file mode 100644 +index 0000000..404afb0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class +new file mode 100644 +index 0000000..04de2b1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class +new file mode 100644 +index 0000000..da24b66 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class +new file mode 100644 +index 0000000..c05990c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class +new file mode 100644 +index 0000000..d41b4c8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class +new file mode 100644 +index 0000000..f9301e2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class +new file mode 100644 +index 0000000..4c5c87e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdError.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdError.class new file mode 100644 index 0000000..0a9b7a7 @@ -402,6 +27848,3511 @@ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda new file mode 100644 index 0000000..a4cef0d Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.class +new file mode 100644 +index 0000000..b019110 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader$Builder.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader.class +new file mode 100644 +index 0000000..5e16e53 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaAdsLoader.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.class +new file mode 100644 +index 0000000..426cee4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader$Builder.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.class +new file mode 100644 +index 0000000..49c2648 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$AdsLoader.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.class +new file mode 100644 +index 0000000..ca2a4e6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource$Factory.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.class +new file mode 100644 +index 0000000..663e8c2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionMediaSource.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.class +new file mode 100644 +index 0000000..fb160cd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/ima/ImaServerSideAdInsertionUriBuilder.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.class +new file mode 100644 +index 0000000..b08faeb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource$Factory.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource.class +new file mode 100644 +index 0000000..2f92e20 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/media3/exoplayer/rtsp/RtspMediaSource.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class +new file mode 100644 +index 0000000..a005160 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$1.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class +new file mode 100644 +index 0000000..404afb0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$2.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class +new file mode 100644 +index 0000000..04de2b1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$3.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class +new file mode 100644 +index 0000000..da24b66 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$4.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class +new file mode 100644 +index 0000000..c05990c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$OnAudioFocusChangedListener.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class +new file mode 100644 +index 0000000..d41b4c8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView$RNVLoadControl.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class +new file mode 100644 +index 0000000..f9301e2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/exoplayer/ReactExoplayerView.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class +new file mode 100644 +index 0000000..e58b515 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/brentvatne/react/BuildConfig.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdError.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdError.class +new file mode 100644 +index 0000000..0a9b7a7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdError.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.class +new file mode 100644 +index 0000000..1380a05 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent$AdErrorListener.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent.class +new file mode 100644 +index 0000000..07ab3fa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdErrorEvent.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.class +new file mode 100644 +index 0000000..dbe9984 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent$AdEventListener.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent.class +new file mode 100644 +index 0000000..88ae34c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/AdEvent.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.class +new file mode 100644 +index 0000000..a3184b3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkFactory.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.class +new file mode 100644 +index 0000000..264cd83 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ConcreteImaSdkSettings.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.class +new file mode 100644 +index 0000000..46cea81 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkFactory.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.class b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.class +new file mode 100644 +index 0000000..a4cef0d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/javac/release/compileReleaseJavaWithJavac/classes/com/google/ads/interactivemedia/v3/api/ImaSdkSettings.class differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt +new file mode 100644 +index 0000000..f34882b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint-cache/lintVitalAnalyzeRelease/lint-cache-version.txt +@@ -0,0 +1 @@ ++Cache for Android Lint31.11.0 +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/module.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/module.xml +new file mode 100644 +index 0000000..093c787 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml +new file mode 100644 +index 0000000..3fe032e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-dependencies.xml +@@ -0,0 +1,557 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml +new file mode 100644 +index 0000000..c767554 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release-artifact-libraries.xml +@@ -0,0 +1,1055 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release.xml +new file mode 100644 +index 0000000..141f6c8 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model/release/generateReleaseLintModel/release.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties +new file mode 100644 +index 0000000..93fa728 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_model_metadata/release/writeReleaseLintModelMetadata/lint-model-metadata.properties +@@ -0,0 +1,3 @@ ++mavenArtifactId=react-native-video ++mavenGroupId=Nuvio ++mavenVersion=unspecified +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml +new file mode 100644 +index 0000000..093c787 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/module.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml +new file mode 100644 +index 0000000..3fe032e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-dependencies.xml +@@ -0,0 +1,557 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml +new file mode 100644 +index 0000000..c767554 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release-artifact-libraries.xml +@@ -0,0 +1,1055 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml +new file mode 100644 +index 0000000..3e95085 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_lint_model/release/generateReleaseLintVitalModel/release.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml +new file mode 100644 +index 0000000..ca3e563 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/lint_vital_partial_results/release/lintVitalAnalyzeRelease/out/lint-resources.xml +@@ -0,0 +1 @@ ++http://schemas.android.com/apk/res-auto;;${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/values/colors.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/values/dimens.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/drawable/circle.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/layout/exo_legacy_player_control_view.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/layout/exo_player_view_surface.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/layout/exo_player_view_texture.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/values/strings.xml,${\:react-native-video*release*MAIN*sourceProvider*0*resDir*0}/values/styles.xml,+color:player_overlay_color,0,V400030067,380003009b,;"#00000000";red,0,V4000500c8,25000500e9,;"#FF0000";white,0,V4000400a0,27000400c3,;"#FFFFFF";silver_gray,0,V400020037,2f00020062,;"#FFBEBEBE";+dimen:seekBar_height,1,V4000b01c6,2d000b01ef,;"26dp";position_duration_horizontal_padding,1,V400060100,420006013e,;"4dp";position_duration_text_size,1,V4000f0239,3a000f026f,;"14sp";seekBar_wrapper_margin_top,1,V400040090,38000400c4,;"4dp";controller_wrapper_padding_top,1,V400030053,3c0003008b,;"4dp";live_wrapper_margin_top,1,V4000500c9,36000500fb,;"12dp";full_screen_margin,1,V400070143,300007016f,;"4dp";full_screen_size,1,V4000c01f4,2f000c021f,;"30dp";position_duration_width,1,V4000a018f,36000a01c1,;"50dp";+drawable:circle,2,F;+id:exo_play_pause_container,3,F;exo_rew,3,F;exo_pause,3,F;exo_ffwd,3,F;exo_live_icon,3,F;exo_play,3,F;exo_next,3,F;exo_progress,3,F;exo_settings,3,F;exo_prev,3,F;exo_position,3,F;exo_live_container,3,F;exo_duration,3,F;exo_live_label,3,F;exo_fullscreen,3,F;+layout:exo_legacy_player_control_view,3,F;exo_player_view_surface,4,F;exo_player_view_texture,5,F;+string:settings,6,V2001303b9,2b001303e2,;"Settings";unrecognized_media_format,6,V2000d02b2,4d000d02fd,;"Unrecognized media format";select_playback_speed,6,V20017041f,4500170462,;"Select Playback Speed";error_drm_not_supported,6,V2000b0248,68000b02ae,;"Protected content not supported on API levels below 18";error_no_secure_decoder,6,V2000500e8,8a00050170,;"This device does not provide a secure decoder for ${mime_type}"This device does not provide a secure decoder for %1$s;error_drm_unknown,6,V20011036e,49001103b5,;"An unknown DRM error occurred";error_no_decoder,6,V20003006a,7c000300e4,;"This device does not provide a decoder for ${mime_type}"This device does not provide a decoder for %1$s;playback_speed,6,V2001503e6,370015041b,;"Playback Speed";error_querying_decoders,6,V200070174,51000701c3,;"Unable to query device decoders";error_drm_unsupported_scheme,6,V2000f0301,6b000f036a,;"This device does not support the required DRM scheme";media_playback_notification_title,6,V200190466,4a001904ae,;"Media playback";media_playback_notification_text,6,V2001b04b2,4d001b04fd,;"Preparing playback";error_instantiating_decoder,6,V2000901c7,7d00090242,;"Unable to instantiate decoder ${decoder_name}"Unable to instantiate decoder %1$s;+style:ExoMediaButton.FullScreen,7,V400020066,c0005016f,PrivateResource;Nandroid\:src:@drawable/exo_icon_fullscreen_enter,android\:contentDescription:@string/exo_controls_fullscreen_enter_description,; +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_aar_for_lint/release/out.aar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_aar_for_lint/release/out.aar +new file mode 100644 +index 0000000..f6fd1f8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_aar_for_lint/release/out.aar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt new file mode 100644 index 0000000..2cad9fe @@ -456,6 +31407,60 @@ index 0000000..2cad9fe +string settings +string unrecognized_media_format +style ExoMediaButton.FullScreen +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt +new file mode 100644 +index 0000000..2cad9fe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/local_only_symbol_list/release/parseReleaseLocalResources/R-def.txt +@@ -0,0 +1,48 @@ ++R_DEF: Internal format may change without notice ++local ++color player_overlay_color ++color red ++color silver_gray ++color white ++dimen controller_wrapper_padding_top ++dimen full_screen_margin ++dimen full_screen_size ++dimen live_wrapper_margin_top ++dimen position_duration_horizontal_padding ++dimen position_duration_text_size ++dimen position_duration_width ++dimen seekBar_height ++dimen seekBar_wrapper_margin_top ++drawable circle ++id exo_duration ++id exo_ffwd ++id exo_fullscreen ++id exo_live_container ++id exo_live_icon ++id exo_live_label ++id exo_next ++id exo_pause ++id exo_play ++id exo_play_pause_container ++id exo_position ++id exo_prev ++id exo_progress ++id exo_rew ++id exo_settings ++layout exo_legacy_player_control_view ++layout exo_player_view_surface ++layout exo_player_view_texture ++string error_drm_not_supported ++string error_drm_unknown ++string error_drm_unsupported_scheme ++string error_instantiating_decoder ++string error_no_decoder ++string error_no_secure_decoder ++string error_querying_decoders ++string media_playback_notification_text ++string media_playback_notification_title ++string playback_speed ++string select_playback_speed ++string settings ++string unrecognized_media_format ++style ExoMediaButton.FullScreen diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..2300097 @@ -469,6 +31474,23 @@ index 0000000..2300097 +5 +6 +7 +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt +new file mode 100644 +index 0000000..2300097 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/manifest_merge_blame_file/release/processReleaseManifest/manifest-merger-blame-release-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-video.jar b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-video.jar +new file mode 100644 +index 0000000..87e4a09 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_java_res/release/mergeReleaseJavaResource/feature-react-native-video.jar differ diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml new file mode 100644 index 0000000..728c5a9 @@ -483,6 +31505,55228 @@ index 0000000..728c5a9 + + \ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..728c5a9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_manifest/release/processReleaseManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim-v21/fragment_fast_out_extra_slow_in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim-v21/fragment_fast_out_extra_slow_in.xml +new file mode 100644 +index 0000000..97b9de9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim-v21/fragment_fast_out_extra_slow_in.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_in.xml +new file mode 100644 +index 0000000..da7ee29 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_in.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_out.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_out.xml +new file mode 100644 +index 0000000..c81b39a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_fade_out.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_grow_fade_in_from_bottom.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_grow_fade_in_from_bottom.xml +new file mode 100644 +index 0000000..79d02d4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_grow_fade_in_from_bottom.xml +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_enter.xml +new file mode 100644 +index 0000000..91664da +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_exit.xml +new file mode 100644 +index 0000000..db7e807 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_popup_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_shrink_fade_out_from_bottom.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_shrink_fade_out_from_bottom.xml +new file mode 100644 +index 0000000..9a23cd2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_shrink_fade_out_from_bottom.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_bottom.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_bottom.xml +new file mode 100644 +index 0000000..1afa8fe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_bottom.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_top.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_top.xml +new file mode 100644 +index 0000000..ab824f2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_in_top.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_bottom.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_bottom.xml +new file mode 100644 +index 0000000..b309fe8 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_bottom.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_top.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_top.xml +new file mode 100644 +index 0000000..e84d1c7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_slide_out_top.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_enter.xml +new file mode 100644 +index 0000000..134d9d7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_exit.xml +new file mode 100644 +index 0000000..67f6af8 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/abc_tooltip_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml +new file mode 100644 +index 0000000..8d892c1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml +new file mode 100644 +index 0000000..57fc365 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml +@@ -0,0 +1,49 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_icon_null_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_icon_null_animation.xml +new file mode 100644 +index 0000000..a6ef064 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_checked_icon_null_animation.xml +@@ -0,0 +1,47 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml +new file mode 100644 +index 0000000..0f13aaf +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml +@@ -0,0 +1,49 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml +new file mode 100644 +index 0000000..188e706 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_icon_null_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_icon_null_animation.xml +new file mode 100644 +index 0000000..8b63d01 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_checkbox_to_unchecked_icon_null_animation.xml +@@ -0,0 +1,47 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_dot_group_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_dot_group_animation.xml +new file mode 100644 +index 0000000..22bb845 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_dot_group_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml +new file mode 100644 +index 0000000..51154c1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml +@@ -0,0 +1,66 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml +new file mode 100644 +index 0000000..c889ae6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_dot_group_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_dot_group_animation.xml +new file mode 100644 +index 0000000..f0b9d7d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_dot_group_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml +new file mode 100644 +index 0000000..3269f8b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml +new file mode 100644 +index 0000000..0215835 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_in.xml +new file mode 100644 +index 0000000..7fe329f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_in.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_out.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_out.xml +new file mode 100644 +index 0000000..4919eda +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_fade_out.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_in.xml +new file mode 100644 +index 0000000..aef91bc +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_in.xml +@@ -0,0 +1,13 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_out.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_out.xml +new file mode 100644 +index 0000000..790e275 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_push_up_out.xml +@@ -0,0 +1,13 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_down.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_down.xml +new file mode 100644 +index 0000000..01876e5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_down.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_up.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_up.xml +new file mode 100644 +index 0000000..6c96f69 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/anim/catalyst_slide_up.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_enter.xml +new file mode 100644 +index 0000000..1408ac6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_enter.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_exit.xml +new file mode 100644 +index 0000000..4c50d20 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_close_exit.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_enter.xml +new file mode 100644 +index 0000000..b948a22 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_exit.xml +new file mode 100644 +index 0000000..841049d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_fade_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_enter.xml +new file mode 100644 +index 0000000..01bd5c0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_enter.xml +@@ -0,0 +1,44 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_exit.xml +new file mode 100644 +index 0000000..dc27998 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/animator/fragment_open_exit.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_borderless_text_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_borderless_text_material.xml +new file mode 100644 +index 0000000..468b155 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_borderless_text_material.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_text_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_text_material.xml +new file mode 100644 +index 0000000..74170d6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_btn_colored_text_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_color_highlight_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_color_highlight_material.xml +new file mode 100644 +index 0000000..8d53611 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_color_highlight_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_btn_checkable.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_btn_checkable.xml +new file mode 100644 +index 0000000..e82eff4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_btn_checkable.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_default.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_default.xml +new file mode 100644 +index 0000000..abe3880 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_default.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_edittext.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_edittext.xml +new file mode 100644 +index 0000000..0e05e07 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_edittext.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_seek_thumb.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_seek_thumb.xml +new file mode 100644 +index 0000000..4fc9626 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_seek_thumb.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_spinner.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_spinner.xml +new file mode 100644 +index 0000000..0e05e07 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_spinner.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_switch_track.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_switch_track.xml +new file mode 100644 +index 0000000..e663772 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color-v23/abc_tint_switch_track.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_dark.xml +new file mode 100644 +index 0000000..e016076 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_light.xml +new file mode 100644 +index 0000000..290faf1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_background_cache_hint_selector_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_dark.xml +new file mode 100644 +index 0000000..fe86872 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_dark.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_light.xml +new file mode 100644 +index 0000000..1bef5af +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_hint_foreground_material_light.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_dark.xml +new file mode 100644 +index 0000000..724c255 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_light.xml +new file mode 100644 +index 0000000..7395e68 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_disable_only_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_dark.xml +new file mode 100644 +index 0000000..7d66d02 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_light.xml +new file mode 100644 +index 0000000..105b643 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_primary_text_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_search_url_text.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_search_url_text.xml +new file mode 100644 +index 0000000..0631d5d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_search_url_text.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_dark.xml +new file mode 100644 +index 0000000..6399b1d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_light.xml +new file mode 100644 +index 0000000..87c015a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/abc_secondary_text_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_dark.xml +new file mode 100644 +index 0000000..6153382 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_light.xml +new file mode 100644 +index 0000000..94d7114 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/color/switch_thumb_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_edit_mode_logo.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_edit_mode_logo.xml +new file mode 100644 +index 0000000..80ff184 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_edit_mode_logo.xml +@@ -0,0 +1,44 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_audiotrack.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_audiotrack.xml +new file mode 100644 +index 0000000..7ee298e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_audiotrack.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_check.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_check.xml +new file mode 100644 +index 0000000..ad5d63a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_check.xml +@@ -0,0 +1,28 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_left.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_left.xml +new file mode 100644 +index 0000000..d614a9e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_left.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_right.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_right.xml +new file mode 100644 +index 0000000..9b25426 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_chevron_right.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_default_album_image.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_default_album_image.xml +new file mode 100644 +index 0000000..d95f42a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_default_album_image.xml +@@ -0,0 +1,29 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_forward.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_forward.xml +new file mode 100644 +index 0000000..dd023b2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_forward.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_enter.xml +new file mode 100644 +index 0000000..f0faf4d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_enter.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_exit.xml +new file mode 100644 +index 0000000..73d3527 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_fullscreen_exit.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_pause_circle_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_pause_circle_filled.xml +new file mode 100644 +index 0000000..6789374 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_pause_circle_filled.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_play_circle_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_play_circle_filled.xml +new file mode 100644 +index 0000000..f00f85f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_play_circle_filled.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_rewind.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_rewind.xml +new file mode 100644 +index 0000000..487a178 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_rewind.xml +@@ -0,0 +1,31 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_settings.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_settings.xml +new file mode 100644 +index 0000000..2dab2c0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_settings.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_next.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_next.xml +new file mode 100644 +index 0000000..183434e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_next.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_previous.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_previous.xml +new file mode 100644 +index 0000000..363b94f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_skip_previous.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_speed.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_speed.xml +new file mode 100644 +index 0000000..fd1fd8e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_speed.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_off.xml +new file mode 100644 +index 0000000..ea6819e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_off.xml +@@ -0,0 +1,34 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_on.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_on.xml +new file mode 100644 +index 0000000..b1d36cd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_ic_subtitle_on.xml +@@ -0,0 +1,28 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fastforward.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fastforward.xml +new file mode 100644 +index 0000000..4b86e10 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fastforward.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_enter.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_enter.xml +new file mode 100644 +index 0000000..db11f29 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_enter.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_exit.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_exit.xml +new file mode 100644 +index 0000000..782d9ff +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_fullscreen_exit.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_next.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_next.xml +new file mode 100644 +index 0000000..6305bcb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_next.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_pause.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_pause.xml +new file mode 100644 +index 0000000..45cd68b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_pause.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_play.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_play.xml +new file mode 100644 +index 0000000..c8c4cdb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_play.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_previous.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_previous.xml +new file mode 100644 +index 0000000..9564a2a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_previous.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_all.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_all.xml +new file mode 100644 +index 0000000..dad37fa +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_all.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_off.xml +new file mode 100644 +index 0000000..132eae0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_off.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_one.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_one.xml +new file mode 100644 +index 0000000..d510105 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_repeat_one.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_rewind.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_rewind.xml +new file mode 100644 +index 0000000..976b706 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_rewind.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_off.xml +new file mode 100644 +index 0000000..283ce30 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_off.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_on.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_on.xml +new file mode 100644 +index 0000000..123c06c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_shuffle_on.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_stop.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_stop.xml +new file mode 100644 +index 0000000..2e1e40c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/exo_icon_stop.xml +@@ -0,0 +1,13 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer.xml +new file mode 100644 +index 0000000..da8a42f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_low.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_low.xml +new file mode 100644 +index 0000000..89e62a5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_low.xml +@@ -0,0 +1,33 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video.xml +new file mode 100644 +index 0000000..243ca3c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video.xml +@@ -0,0 +1,29 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video_low.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video_low.xml +new file mode 100644 +index 0000000..24b6942 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_answer_video_low.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline.xml +new file mode 100644 +index 0000000..be9593c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline.xml +@@ -0,0 +1,38 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline_low.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline_low.xml +new file mode 100644 +index 0000000..990af5f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/ic_call_decline_low.xml +@@ -0,0 +1,35 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_album.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_album.xml +new file mode 100644 +index 0000000..0675dbf +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_album.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_artist.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_artist.xml +new file mode 100644 +index 0000000..70f6b59 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_artist.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_block.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_block.xml +new file mode 100644 +index 0000000..c668f75 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_block.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_filled.xml +new file mode 100644 +index 0000000..c721395 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_unfilled.xml +new file mode 100644 +index 0000000..d5eb109 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_bookmark_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_filled.xml +new file mode 100644 +index 0000000..475abe1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_unfilled.xml +new file mode 100644 +index 0000000..3dce145 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_check_circle_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions.xml +new file mode 100644 +index 0000000..bf20dec +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions_off.xml +new file mode 100644 +index 0000000..835b049 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_closed_captions_off.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_fast_forward.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_fast_forward.xml +new file mode 100644 +index 0000000..0fc49b7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_fast_forward.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_feed.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_feed.xml +new file mode 100644 +index 0000000..5615008 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_feed.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_filled.xml +new file mode 100644 +index 0000000..a8840a9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_filled.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_unfilled.xml +new file mode 100644 +index 0000000..605cc9a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_flag_unfilled.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_filled.xml +new file mode 100644 +index 0000000..475a38e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_unfilled.xml +new file mode 100644 +index 0000000..67caeda +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_heart_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus.xml +new file mode 100644 +index 0000000..1d8a812 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_filled.xml +new file mode 100644 +index 0000000..0acb2cd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_unfilled.xml +new file mode 100644 +index 0000000..4460267 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_minus_circle_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_next.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_next.xml +new file mode 100644 +index 0000000..8311011 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_next.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_pause.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_pause.xml +new file mode 100644 +index 0000000..1742b0a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_pause.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_play.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_play.xml +new file mode 100644 +index 0000000..e8074cd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_play.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed.xml +new file mode 100644 +index 0000000..a2ab387 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_5.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_5.xml +new file mode 100644 +index 0000000..b326d62 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_5.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_8.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_8.xml +new file mode 100644 +index 0000000..701e1ec +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_0_8.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_0.xml +new file mode 100644 +index 0000000..2b31699 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_0.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_2.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_2.xml +new file mode 100644 +index 0000000..7cd316a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_2.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_5.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_5.xml +new file mode 100644 +index 0000000..d3c1ff4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_5.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_8.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_8.xml +new file mode 100644 +index 0000000..f2e3d01 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_1_8.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_2_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_2_0.xml +new file mode 100644 +index 0000000..59945c0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playback_speed_2_0.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_add.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_add.xml +new file mode 100644 +index 0000000..19e1b71 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_add.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_remove.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_remove.xml +new file mode 100644 +index 0000000..4bf573a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_playlist_remove.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus.xml +new file mode 100644 +index 0000000..3581895 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_filled.xml +new file mode 100644 +index 0000000..add0779 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_unfilled.xml +new file mode 100644 +index 0000000..9d91486 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_plus_circle_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_previous.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_previous.xml +new file mode 100644 +index 0000000..6f6f5c6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_previous.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_quality.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_quality.xml +new file mode 100644 +index 0000000..642fe5f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_quality.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_add.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_add.xml +new file mode 100644 +index 0000000..721f79d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_add.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_next.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_next.xml +new file mode 100644 +index 0000000..ebb4e93 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_next.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_remove.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_remove.xml +new file mode 100644 +index 0000000..b9d84fe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_queue_remove.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_radio.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_radio.xml +new file mode 100644 +index 0000000..348da8a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_radio.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_all.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_all.xml +new file mode 100644 +index 0000000..f1d9ab9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_all.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_off.xml +new file mode 100644 +index 0000000..6033841 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_off.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_one.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_one.xml +new file mode 100644 +index 0000000..99c65e7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_repeat_one.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_rewind.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_rewind.xml +new file mode 100644 +index 0000000..d1c60e7 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_rewind.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_settings.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_settings.xml +new file mode 100644 +index 0000000..e4868b0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_settings.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_share.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_share.xml +new file mode 100644 +index 0000000..6e97280 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_share.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_off.xml +new file mode 100644 +index 0000000..3d70083 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_off.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_on.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_on.xml +new file mode 100644 +index 0000000..dc32cb1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_on.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_star.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_star.xml +new file mode 100644 +index 0000000..6d114fa +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_shuffle_star.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_signal.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_signal.xml +new file mode 100644 +index 0000000..c9327fe +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_signal.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back.xml +new file mode 100644 +index 0000000..0263058 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_10.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_10.xml +new file mode 100644 +index 0000000..5d95499 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_10.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_15.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_15.xml +new file mode 100644 +index 0000000..543a13e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_15.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_30.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_30.xml +new file mode 100644 +index 0000000..bc7f1ad +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_30.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_5.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_5.xml +new file mode 100644 +index 0000000..a28ac0d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_back_5.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward.xml +new file mode 100644 +index 0000000..c04f93b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_10.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_10.xml +new file mode 100644 +index 0000000..3f38e94 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_10.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_15.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_15.xml +new file mode 100644 +index 0000000..aa61362 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_15.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_30.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_30.xml +new file mode 100644 +index 0000000..0c75329 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_30.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_5.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_5.xml +new file mode 100644 +index 0000000..1f622d5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_skip_forward_5.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_filled.xml +new file mode 100644 +index 0000000..9c99def +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_unfilled.xml +new file mode 100644 +index 0000000..583bc5f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_star_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_stop.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_stop.xml +new file mode 100644 +index 0000000..a2bd219 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_stop.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles.xml +new file mode 100644 +index 0000000..cbfd2e2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles_off.xml +new file mode 100644 +index 0000000..174ab51 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_subtitles_off.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_sync.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_sync.xml +new file mode 100644 +index 0000000..a338129 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_sync.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_filled.xml +new file mode 100644 +index 0000000..d67829f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_unfilled.xml +new file mode 100644 +index 0000000..f2084e6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_down_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_filled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_filled.xml +new file mode 100644 +index 0000000..aa1e558 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_filled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_unfilled.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_unfilled.xml +new file mode 100644 +index 0000000..c34cc1f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_thumb_up_unfilled.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_down.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_down.xml +new file mode 100644 +index 0000000..065008d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_down.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_off.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_off.xml +new file mode 100644 +index 0000000..8cf1079 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_off.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_up.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_up.xml +new file mode 100644 +index 0000000..22b80bb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-anydpi-v21/media3_icon_volume_up.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4d9f861 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9911008 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..69ff9dd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9218981 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..a588576 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..4657a25 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..3fd617b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..2264398 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..65ccd8f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..c09ec90 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..62fbd2c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..2f6ef91 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..863ce95 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..b6d4677 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..60081db +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..abb52c9 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..9d8451a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..d8d6d7f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..30c1c1e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..1f1cdad +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ffb0096 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..e54950e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..0da5b1d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..f8063b2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4b0b10a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..d3556a8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..183c9ac +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..9b67079 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5b13bc1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5440b1a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..05d6920 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..6282df4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..4911934 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..f034030 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..8b00900 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..136a2f1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..5524979 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..a6fe957 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..9a060ba +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..0916a67 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..175037d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..9c78d75 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..4233b9d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..46d4827 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..1ff7835 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..0351aa8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..a730d2f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..eb3aa47 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..ef03dfb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..deda835 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..ecf3df3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fastforward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fastforward.png +new file mode 100644 +index 0000000..5699614 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fastforward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_enter.png +new file mode 100644 +index 0000000..9b81311 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_exit.png +new file mode 100644 +index 0000000..159bea7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_next.png +new file mode 100644 +index 0000000..303e896 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_pause.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_pause.png +new file mode 100644 +index 0000000..f49aed7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_pause.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_play.png +new file mode 100644 +index 0000000..5a3e037 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_previous.png +new file mode 100644 +index 0000000..2c3b3af +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_all.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_all.png +new file mode 100644 +index 0000000..2824e78 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_all.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_off.png +new file mode 100644 +index 0000000..0b92f58 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_one.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_one.png +new file mode 100644 +index 0000000..232aa2b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_repeat_one.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_rewind.png +new file mode 100644 +index 0000000..d9e2792 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_off.png +new file mode 100644 +index 0000000..b693422 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_on.png +new file mode 100644 +index 0000000..52a805a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_shuffle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_stop.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_stop.png +new file mode 100644 +index 0000000..3ad2c9c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_stop.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_vr.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_vr.png +new file mode 100644 +index 0000000..90948eb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/exo_icon_vr.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..7aca1a1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..7aca1a1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..8eafb01 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..8eafb01 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..4d9cfdc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..4d9cfdc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_resume.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_resume.png +new file mode 100644 +index 0000000..e76d925 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/ic_resume.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..af91f5e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..1602ab8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..6ebed8b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..6193822 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_oversize_large_icon_bg.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_oversize_large_icon_bg.png +new file mode 100644 +index 0000000..383433d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notification_oversize_large_icon_bg.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..6f37a22 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..5945184 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..d4cbf83 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..cef4663 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..c471afc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..b6a718f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..c8e5a07 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..74d8a00 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..e5cca64 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..d1b24e8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..cc9962a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..40fb18a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..d93dddc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..1d45348 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..5847a7e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..b89a941 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..22e8535 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..f4ced43 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..10bcaa3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..e5104fc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fastforward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fastforward.png +new file mode 100644 +index 0000000..e63921a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fastforward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_enter.png +new file mode 100644 +index 0000000..1af1f68 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_exit.png +new file mode 100644 +index 0000000..db03f46 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_next.png +new file mode 100644 +index 0000000..78f9bed +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_pause.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_pause.png +new file mode 100644 +index 0000000..1818039 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_pause.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_play.png +new file mode 100644 +index 0000000..f0b0570 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_previous.png +new file mode 100644 +index 0000000..4d2eccf +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_all.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_all.png +new file mode 100644 +index 0000000..5c91a47 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_all.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_off.png +new file mode 100644 +index 0000000..a94abd8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_one.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_one.png +new file mode 100644 +index 0000000..a59a985 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_repeat_one.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_rewind.png +new file mode 100644 +index 0000000..8cd1daa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_off.png +new file mode 100644 +index 0000000..2353dd4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_on.png +new file mode 100644 +index 0000000..80ec43a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_shuffle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_stop.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_stop.png +new file mode 100644 +index 0000000..836f4db +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_stop.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_vr.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_vr.png +new file mode 100644 +index 0000000..6e21960 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/exo_icon_vr.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..ad1fefc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..ad1fefc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..0242aa7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..0242aa7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..3d1f421 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..3d1f421 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..ddbec8b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..c888ee0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..588161e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..7cf976d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..4c0f0b3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..fa0ed8f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..7a9fcbc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..8e6c271 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9f0d2c8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..6e18d40 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..d0a41a5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..bebb1e2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..038e000 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..6086f9c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..addb54a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..5fcd5b2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..251b989 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..01efec0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..f1d1b61 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..10851f6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..15c1ebb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..5f55cd5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..1bff7fa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..9280f82 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..21bffc6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..8878129 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..869c8b0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..ed75cb8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ab8460f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..12b0a79 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..e243fd8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..55b8b36 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..e6eff09 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..3ffa251 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5d7ad2f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..0c766f3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4f66d7a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..fc0243b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..5bd2902 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..9eacd7f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..36da4e6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..fc4f4ef +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..8d4b133 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..9afa617 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..6039e3c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..23c3eb5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..cafa79d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..027bc11 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..02980c5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..10448d3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..f6be472 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..7dc4a41 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..040ba0a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..eea21c2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..51df304 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..7242e1f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fastforward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fastforward.png +new file mode 100644 +index 0000000..1b42a53 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fastforward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_enter.png +new file mode 100644 +index 0000000..4423c7c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_exit.png +new file mode 100644 +index 0000000..364bad0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_next.png +new file mode 100644 +index 0000000..a93aae0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_pause.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_pause.png +new file mode 100644 +index 0000000..3e150b5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_pause.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_play.png +new file mode 100644 +index 0000000..692d8c2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_previous.png +new file mode 100644 +index 0000000..ea83907 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_all.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_all.png +new file mode 100644 +index 0000000..97f7e1c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_all.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_off.png +new file mode 100644 +index 0000000..6a02321 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_one.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_one.png +new file mode 100644 +index 0000000..59bac33 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_repeat_one.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_rewind.png +new file mode 100644 +index 0000000..231bcee +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_off.png +new file mode 100644 +index 0000000..a55d716 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_on.png +new file mode 100644 +index 0000000..0924b2c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_shuffle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_stop.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_stop.png +new file mode 100644 +index 0000000..2aeffbb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_stop.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_vr.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_vr.png +new file mode 100644 +index 0000000..02063a7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/exo_icon_vr.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..1b1d00b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..1b1d00b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..64aacd7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..64aacd7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..a72e078 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..a72e078 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_resume.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_resume.png +new file mode 100644 +index 0000000..f010087 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/ic_resume.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..62de9d7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..eaabd93 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..aa239b3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..62d8622 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..c286875 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_action_bar_item_background_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_action_bar_item_background_material.xml +new file mode 100644 +index 0000000..595c56c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_action_bar_item_background_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_btn_colored_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_btn_colored_material.xml +new file mode 100644 +index 0000000..10251aa +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_btn_colored_material.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_dialog_material_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_dialog_material_background.xml +new file mode 100644 +index 0000000..7ef438b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_dialog_material_background.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_edit_text_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_edit_text_material.xml +new file mode 100644 +index 0000000..d98b008 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_edit_text_material.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_list_divider_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_list_divider_material.xml +new file mode 100644 +index 0000000..5ed2121 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/abc_list_divider_material.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/notification_action_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/notification_action_background.xml +new file mode 100644 +index 0000000..a9ea90a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v21/notification_action_background.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v23/abc_control_background_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v23/abc_control_background_material.xml +new file mode 100644 +index 0000000..0b54039 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v23/abc_control_background_material.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v29/autofill_inline_suggestion_chip_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v29/autofill_inline_suggestion_chip_background.xml +new file mode 100644 +index 0000000..9637062 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-v29/autofill_inline_suggestion_chip_background.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-watch-v20/abc_dialog_material_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-watch-v20/abc_dialog_material_background.xml +new file mode 100644 +index 0000000..242761b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-watch-v20/abc_dialog_material_background.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..6284eaa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..4902520 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..59a683a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..03bf49c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..342323b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..1d29f9a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..92b43ba +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..600178a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..ca303fd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..67c25ae +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..17c34a1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..988548a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..15fcf6a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..65275b3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..ee95ed4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..99cf6de +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..d8cc7d3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..c08ec90 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..0486af1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..20079d8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..fb4e42a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..44b9a14 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..bcf6b7f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..7c56175 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..2242d2f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..529d550 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..1f8cc88 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..6c8f6a4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..8ff3a83 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..e7e693a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..819171a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4def8c8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..ee42e23 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..ae4cc46 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..1f58c69 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..32ce426 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..2f47653 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..201f6ff +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..fdacfa9 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..4423c7c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..364bad0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..06f9368 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..c978556 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..d9b2a4e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..23358ae +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..974ee29 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..eb08953 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..ace3e43 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..820c798 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..2b5bf9f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..dd31d60 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fastforward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fastforward.png +new file mode 100644 +index 0000000..ab7e1fd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fastforward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_enter.png +new file mode 100644 +index 0000000..c1dcfb2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_exit.png +new file mode 100644 +index 0000000..ef360fe +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_next.png +new file mode 100644 +index 0000000..f3552d7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_pause.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_pause.png +new file mode 100644 +index 0000000..1c868f1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_pause.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_play.png +new file mode 100644 +index 0000000..381eabd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_previous.png +new file mode 100644 +index 0000000..0a2ddd5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_all.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_all.png +new file mode 100644 +index 0000000..2baaede +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_all.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_off.png +new file mode 100644 +index 0000000..2468f92 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_one.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_one.png +new file mode 100644 +index 0000000..4e1d53d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_repeat_one.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_rewind.png +new file mode 100644 +index 0000000..a798fee +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_off.png +new file mode 100644 +index 0000000..2b67cab +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_on.png +new file mode 100644 +index 0000000..ede80c9 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_shuffle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_stop.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_stop.png +new file mode 100644 +index 0000000..8727a93 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_stop.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_vr.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_vr.png +new file mode 100644 +index 0000000..ff243ef +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/exo_icon_vr.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..1e29937 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..1e29937 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..cbad0c4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..cbad0c4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..8edb3fc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..8edb3fc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_resume.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_resume.png +new file mode 100644 +index 0000000..5d03ade +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/ic_resume.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..8c884de +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..32e00be +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..bdf477b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..5c4da74 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..9128e62 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4eae28f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..d934b60 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..8c82ec3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..8fc0a9b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..3038d70 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..c079867 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..3b9dc7c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..f6d2f32 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..fe826b7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..987b2bc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..8b050e8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..00e370a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..719c7b5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..75bd580 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..4f3b147 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..224a081 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..b5ceeac +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..4727a7d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..4657815 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..4aa0a34 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..6178c45 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..3d9b961 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..56a69df +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..7924000 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ba5abaa +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..eeb74c8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..d6a8790 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..de00185 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..d186a5b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4d3d3a4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c5acb84 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..30328ae +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..bc21142 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..bd2e9e6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..da5609f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..338d25f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..955e078 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..32ec519 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..d3901f6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..96eebf8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..9652e51 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..5fb4d7b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..92af725 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..352b28a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..46bf418 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..01cbd16 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..59f5bc3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..381625d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..628c753 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..35968f8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..1770a0d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..56ed071 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fastforward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fastforward.png +new file mode 100644 +index 0000000..1e8db0e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fastforward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_enter.png +new file mode 100644 +index 0000000..a0a1b4d +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_exit.png +new file mode 100644 +index 0000000..b7f4133 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_next.png +new file mode 100644 +index 0000000..131a531 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_pause.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_pause.png +new file mode 100644 +index 0000000..ac8d4fc +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_pause.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_play.png +new file mode 100644 +index 0000000..365b3df +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_previous.png +new file mode 100644 +index 0000000..884cbdd +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_all.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_all.png +new file mode 100644 +index 0000000..d7207eb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_all.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_off.png +new file mode 100644 +index 0000000..4d6253e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_one.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_one.png +new file mode 100644 +index 0000000..d577f4e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_repeat_one.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_rewind.png +new file mode 100644 +index 0000000..4bab545 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_off.png +new file mode 100644 +index 0000000..22209d1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_on.png +new file mode 100644 +index 0000000..4c5e141 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_shuffle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_stop.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_stop.png +new file mode 100644 +index 0000000..5239336 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_stop.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_vr.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_vr.png +new file mode 100644 +index 0000000..7c03388 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/exo_icon_vr.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..949da2b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..949da2b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..35e3bc8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..35e3bc8 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..15aeec0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..15aeec0 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_resume.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_resume.png +new file mode 100644 +index 0000000..732b8f4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxhdpi-v4/ic_resume.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..e40fa4e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..4e18de2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..5fa3266 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..c11cb2e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..639e6cb +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..355d5b7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..7dfaf7c +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..fe8f2e4 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..752cb57 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..40255c3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..0210ad1 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..565f0b2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..894c734 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_edit_mode_logo.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_edit_mode_logo.png +new file mode 100644 +index 0000000..0e9df1b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_edit_mode_logo.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_audiotrack.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_audiotrack.png +new file mode 100644 +index 0000000..b346872 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_audiotrack.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_check.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_check.png +new file mode 100644 +index 0000000..bce3233 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_check.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_left.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_left.png +new file mode 100644 +index 0000000..92e6ea5 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_left.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_right.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_right.png +new file mode 100644 +index 0000000..a7aa4c7 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_chevron_right.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_default_album_image.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_default_album_image.png +new file mode 100644 +index 0000000..25a59d6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_default_album_image.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_forward.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_forward.png +new file mode 100644 +index 0000000..669a9d3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_forward.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_enter.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_enter.png +new file mode 100644 +index 0000000..c1dcfb2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_enter.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_exit.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_exit.png +new file mode 100644 +index 0000000..ef360fe +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_fullscreen_exit.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_pause_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_pause_circle_filled.png +new file mode 100644 +index 0000000..0143694 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_pause_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_play_circle_filled.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_play_circle_filled.png +new file mode 100644 +index 0000000..f4ab8b2 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_play_circle_filled.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_rewind.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_rewind.png +new file mode 100644 +index 0000000..a85aa70 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_rewind.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_settings.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_settings.png +new file mode 100644 +index 0000000..b87c23e +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_settings.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_next.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_next.png +new file mode 100644 +index 0000000..2368f14 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_next.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_previous.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_previous.png +new file mode 100644 +index 0000000..412ae6a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_skip_previous.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_speed.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_speed.png +new file mode 100644 +index 0000000..a9b4560 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_speed.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_off.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_off.png +new file mode 100644 +index 0000000..3a2398f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_off.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_on.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_on.png +new file mode 100644 +index 0000000..5178e3a +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_ic_subtitle_on.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_icon_circular_play.png +new file mode 100644 +index 0000000..eabf12f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/exo_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer.png +new file mode 100644 +index 0000000..5c060f6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_low.png +new file mode 100644 +index 0000000..5c060f6 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video.png +new file mode 100644 +index 0000000..4e0e0de +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video_low.png +new file mode 100644 +index 0000000..4e0e0de +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_answer_video_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline.png +new file mode 100644 +index 0000000..c6b5be3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline_low.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline_low.png +new file mode 100644 +index 0000000..c6b5be3 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_call_decline_low.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_resume.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_resume.png +new file mode 100644 +index 0000000..6f48a9b +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable-xxxhdpi-v4/ic_resume.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_borderless_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_borderless_material.xml +new file mode 100644 +index 0000000..f389460 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_borderless_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material.xml +new file mode 100644 +index 0000000..f6e938f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material_anim.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material_anim.xml +new file mode 100644 +index 0000000..ce7a968 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_check_material_anim.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_default_mtrl_shape.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_default_mtrl_shape.xml +new file mode 100644 +index 0000000..c50d4b1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_default_mtrl_shape.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material.xml +new file mode 100644 +index 0000000..6e9f9cf +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material_anim.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material_anim.xml +new file mode 100644 +index 0000000..64cebc2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_btn_radio_material_anim.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_internal_bg.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_internal_bg.xml +new file mode 100644 +index 0000000..9faf60a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_internal_bg.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_top_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_top_material.xml +new file mode 100644 +index 0000000..0922395 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_cab_background_top_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_ab_back_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_ab_back_material.xml +new file mode 100644 +index 0000000..5a89523 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_ab_back_material.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_arrow_drop_right_black_24dp.xml +new file mode 100644 +index 0000000..68547eb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_arrow_drop_right_black_24dp.xml +@@ -0,0 +1,33 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_clear_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_clear_material.xml +new file mode 100644 +index 0000000..e6d106b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_clear_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_go_search_api_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_go_search_api_material.xml +new file mode 100644 +index 0000000..0c88119 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_go_search_api_material.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml +new file mode 100644 +index 0000000..60ebf76 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_cut_mtrl_alpha.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_cut_mtrl_alpha.xml +new file mode 100644 +index 0000000..592bd60 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_cut_mtrl_alpha.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_overflow_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_overflow_material.xml +new file mode 100644 +index 0000000..1420edd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_overflow_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml +new file mode 100644 +index 0000000..5404374 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_selectall_mtrl_alpha.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_selectall_mtrl_alpha.xml +new file mode 100644 +index 0000000..d0de4ae +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_selectall_mtrl_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_share_mtrl_alpha.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_share_mtrl_alpha.xml +new file mode 100644 +index 0000000..597a1b3 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_menu_share_mtrl_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_search_api_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_search_api_material.xml +new file mode 100644 +index 0000000..b4cba34 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_search_api_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_voice_search_api_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_voice_search_api_material.xml +new file mode 100644 +index 0000000..143db55 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ic_voice_search_api_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_dark.xml +new file mode 100644 +index 0000000..72162c2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_dark.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_light.xml +new file mode 100644 +index 0000000..1c180b2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_item_background_holo_light.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_dark.xml +new file mode 100644 +index 0000000..0add58c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_light.xml +new file mode 100644 +index 0000000..0c1d3e6 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_background_transition_holo_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_dark.xml +new file mode 100644 +index 0000000..1fb5fc4 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_dark.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_light.xml +new file mode 100644 +index 0000000..8d24047 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_list_selector_holo_light.xml +@@ -0,0 +1,28 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_indicator_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_indicator_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_indicator_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_small_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_small_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_ratingbar_small_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_thumb_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_thumb_material.xml +new file mode 100644 +index 0000000..7fea83b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_thumb_material.xml +@@ -0,0 +1,35 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_tick_mark_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_tick_mark_material.xml +new file mode 100644 +index 0000000..e2d86c9 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_tick_mark_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_track_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_track_material.xml +new file mode 100644 +index 0000000..e68ac03 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_seekbar_track_material.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_spinner_textfield_background_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_spinner_textfield_background_material.xml +new file mode 100644 +index 0000000..d0f46a8 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_spinner_textfield_background_material.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_black_48dp.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_black_48dp.xml +new file mode 100644 +index 0000000..4f380aa +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_black_48dp.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_half_black_48dp.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_half_black_48dp.xml +new file mode 100644 +index 0000000..ba1dc57 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_star_half_black_48dp.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_switch_thumb_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_switch_thumb_material.xml +new file mode 100644 +index 0000000..ee96ec2 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_switch_thumb_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_tab_indicator_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_tab_indicator_material.xml +new file mode 100644 +index 0000000..1a8de1b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_tab_indicator_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_text_cursor_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_text_cursor_material.xml +new file mode 100644 +index 0000000..885670c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_text_cursor_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_textfield_search_material.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_textfield_search_material.xml +new file mode 100644 +index 0000000..0887396 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_textfield_search_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_vector_test.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_vector_test.xml +new file mode 100644 +index 0000000..d5da2cb +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/abc_vector_test.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_mtrl.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_mtrl.xml +new file mode 100644 +index 0000000..464a450 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_mtrl.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml +new file mode 100644 +index 0000000..77d5418 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_mtrl.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_mtrl.xml +new file mode 100644 +index 0000000..f21429f +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_mtrl.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml +new file mode 100644 +index 0000000..9d30913 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_mtrl.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_mtrl.xml +new file mode 100644 +index 0000000..170e82d +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_mtrl.xml +@@ -0,0 +1,46 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_to_on_mtrl_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_to_on_mtrl_animation.xml +new file mode 100644 +index 0000000..84561d0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_off_to_on_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_mtrl.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_mtrl.xml +new file mode 100644 +index 0000000..ce2116a +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_mtrl.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_to_off_mtrl_animation.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_to_off_mtrl_animation.xml +new file mode 100644 +index 0000000..2108cf1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/btn_radio_on_to_off_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/circle.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/circle.xml +new file mode 100644 +index 0000000..9f06d7c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/circle.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/exo_rounded_rectangle.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/exo_rounded_rectangle.xml +new file mode 100644 +index 0000000..c5bbb6e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/exo_rounded_rectangle.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media3_icon_circular_play.png b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media3_icon_circular_play.png +new file mode 100644 +index 0000000..eabf12f +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media3_icon_circular_play.png differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media_session_service_notification_ic_music_note.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media_session_service_notification_ic_music_note.xml +new file mode 100644 +index 0000000..697a0de +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/media_session_service_notification_ic_music_note.xml +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg.xml +new file mode 100644 +index 0000000..1232b4c +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg_low.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg_low.xml +new file mode 100644 +index 0000000..72e58ae +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_bg_low.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_icon_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_icon_background.xml +new file mode 100644 +index 0000000..490a797 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_icon_background.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_tile_bg.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_tile_bg.xml +new file mode 100644 +index 0000000..8eee7ef +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/notification_tile_bg.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_background.xml +new file mode 100644 +index 0000000..5f1b880 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_background.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_dialog_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_dialog_background.xml +new file mode 100644 +index 0000000..d6e1967 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/paused_in_debugger_dialog_background.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/redbox_top_border_background.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/redbox_top_border_background.xml +new file mode 100644 +index 0000000..84ca146 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/redbox_top_border_background.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/ripple_effect.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/ripple_effect.xml +new file mode 100644 +index 0000000..a972afd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/ripple_effect.xml +@@ -0,0 +1,10 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/test_level_drawable.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/test_level_drawable.xml +new file mode 100644 +index 0000000..41dadfd +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/test_level_drawable.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_dark.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_dark.xml +new file mode 100644 +index 0000000..43c2f99 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_dark.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_light.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_light.xml +new file mode 100644 +index 0000000..20966d5 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/drawable/tooltip_frame_light.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/font/roboto_medium_numbers.ttf b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/font/roboto_medium_numbers.ttf +new file mode 100644 +index 0000000..b61ac79 +Binary files /dev/null and b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/font/roboto_medium_numbers.ttf differ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..3db122b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml +new file mode 100644 +index 0000000..47f65a0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..3db122b +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml +new file mode 100644 +index 0000000..47f65a0 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..956d389 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..956d389 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/fast_out_slow_in.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/fast_out_slow_in.xml +new file mode 100644 +index 0000000..14950d3 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/interpolator/fast_out_slow_in.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action.xml +new file mode 100644 +index 0000000..7199c25 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action.xml +@@ -0,0 +1,41 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action_tombstone.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action_tombstone.xml +new file mode 100644 +index 0000000..7ef38fa +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_action_tombstone.xml +@@ -0,0 +1,48 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_custom_big.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_custom_big.xml +new file mode 100644 +index 0000000..9e3666e +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_custom_big.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_icon_group.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_icon_group.xml +new file mode 100644 +index 0000000..8fadd67 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v21/notification_template_icon_group.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v23/exo_player_control_ffwd_button.xml b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v23/exo_player_control_ffwd_button.xml +new file mode 100644 +index 0000000..7a667e1 +--- /dev/null ++++ b/node_modules/react-native-video/android/buildOutput_a15d4dee7fc4eda61b91308cbb6a2e72/intermediates/merged_res/release/mergeReleaseResources/layout-v23/exo_player_control_ffwd_button.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++