This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #EXTM3U | |
| #EXTINF:-1 tvg-id="156" tvg-name="+ Listas en M3U.CL" tvg-logo="https://cdn.m3u.cl/logo/156___Listas_en_M3U_CL.png" x-source="AR | BO | BR | CL | CO | DO | EC | ES | MX | PE | PY | VE | musica | total",+ Listas en M3U.CL ✪ | CL | |
| https://scl.edge.grupoz.cl/transmision/live/playlist.m3u8?PlaylistM3UCL | |
| #EXTINF:-1 tvg-id="858" tvg-name="Canal 5 del Pueblo" tvg-logo="https://cdn.m3u.cl/logo/858_Canal_5_del_Pueblo.png" x-source="AR | total",Canal 5 del Pueblo ✪ | AR | |
| https://stmv4.voxtvhd.com.br/canal5pueblo/canal5pueblo/playlist.m3u8?PlaylistM3UCL | |
| #EXTINF:-1 tvg-id="219" tvg-name="Crossing TV" tvg-logo="https://cdn.m3u.cl/logo/219_Crossing_TV.png" x-source="AR | telechancho-infinity | total",Crossing TV ✪ | AR | |
| https://stmv6.voxtvhd.com.br/crossingtv/crossingtv/playlist.m3u8?PlaylistM3UCL | |
| #EXTINF:-1 tvg-id="768" tvg-name="Milennio TV" tvg-logo="https://cdn.m3u.cl/logo/768_Milennio_TV.png" x-source="AR | total",Milennio TV ✪ | AR | |
| https://stmvideo6.livecastv.com/milennio/milennio/playlist.m3u8?PlaylistM3UCL |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.os.Bundle | |
| import androidx.lifecycle.Lifecycle | |
| import androidx.lifecycle.LifecycleRegistry | |
| import androidx.savedstate.SavedStateRegistry | |
| import androidx.savedstate.SavedStateRegistryController | |
| import androidx.savedstate.SavedStateRegistryOwner | |
| internal class MyLifecycleOwner : SavedStateRegistryOwner { | |
| private var mLifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this) | |
| private var mSavedStateRegistryController: SavedStateRegistryController = SavedStateRegistryController.create(this) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.swipeablecards | |
| import androidx.compose.animation.core.* | |
| import androidx.compose.animation.splineBasedDecay | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.gestures.awaitFirstDown | |
| import androidx.compose.foundation.gestures.verticalDrag | |
| import androidx.compose.foundation.layout.* | |
| import androidx.compose.foundation.shape.CircleShape | |
| import androidx.compose.foundation.shape.RoundedCornerShape |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.testborrarbeta | |
| import android.graphics.RenderEffect | |
| import android.graphics.RuntimeShader | |
| import android.os.Build | |
| import android.os.Bundle | |
| import androidx.activity.ComponentActivity | |
| import androidx.activity.compose.setContent | |
| import androidx.annotation.RequiresApi | |
| import androidx.compose.animation.core.Animatable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- | |
| Copyright 2017 Google Inc. | |
| Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
| in compliance with the License. You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software distributed under the License |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //detecta pulgadas para saber si es tablet | |
| double size = 0; | |
| DisplayMetrics metrics = getResources().getDisplayMetrics(); | |
| float screenWidth = metrics.widthPixels / metrics.xdpi; | |
| float screenHeight = metrics.heightPixels / metrics.ydpi; | |
| size = Math.sqrt(Math.pow(screenWidth, 2) + Math.pow(screenHeight, 2)); | |
| if (size > 6) { | |
| Toast.makeText(this, "ES TABLET" , Toast.LENGTH_LONG).show(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void enableHTML5AppCache() { | |
| webView.getSettings().setDomStorageEnabled(true); | |
| // Set cache size to 8 mb by default. should be more than enough | |
| webView.getSettings().setAppCacheMaxSize(1024*1024*8); | |
| // This next one is crazy. It's the DEFAULT location for your app's cache | |
| // But it didn't work for me without this line | |
| webView.getSettings().setAppCachePath("/data/data/"+ getPackageName() +"/cache"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ------------------------------------------------------------------------------------------------- | |
| // Framework | |
| // ------------------------------------------------------------------------------------------------- | |
| /** Simple typeclass for turning Strings into things */ | |
| trait Mapper[A] extends (String => A) | |
| /** define all the Mapper typeclass instances and generators we need */ | |
| object Mapper { | |
| implicit val StringMapper = new Mapper[String] { | |
| def apply(s: String) = s |