1 Commits

Autor SHA1 Mensaje Fecha
ale
5792e3ef4f fix lint
Algunas comprobaciones han fallado
Build & Publish APK Release / build (push) Failing after 5m1s
Signed-off-by: ale <ale@manalejandro.com>
2026-01-25 17:24:58 +01:00
Se han modificado 2 ficheros con 27 adiciones y 22 borrados

Ver fichero

@@ -144,8 +144,9 @@ private fun ImageViewer(
} }
/** /**
* Video viewer component with Media3 ExoPlayer * Video viewer using ExoPlayer (Media3)
*/ */
@androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class)
@Composable @Composable
private fun VideoViewer( private fun VideoViewer(
url: String, url: String,

Ver fichero

@@ -1,28 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="utf-8"?>
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg"> <vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="512dp"
android:viewportWidth="512"
android:viewportHeight="512">
<!-- Background circle --> <!-- Background circle -->
<circle cx="256" cy="256" r="240" fill="#2B90D9"/> <path
android:fillColor="#2B90D9"
android:pathData="M256,256m-240,0a240,240 0,1 1,480 0a240,240 0,1 1,-480 0"/>
<!-- Outer ring --> <!-- Outer ring -->
<circle cx="256" cy="256" r="240" fill="none" stroke="#1A6DA8" stroke-width="8"/> <path
android:strokeColor="#1A6DA8"
android:strokeWidth="8"
android:fillColor="#00000000"
android:pathData="M256,256m-240,0a240,240 0,1 1,480 0a240,240 0,1 1,-480 0"/>
<!-- Inner glow effect --> <!-- Inner glow effect -->
<circle cx="256" cy="256" r="220" fill="#3AA4E8" opacity="0.3"/> <path
android:fillColor="#3AA4E8"
android:fillAlpha="0.3"
android:pathData="M256,256m-220,0a220,220 0,1 1,440 0a220,220 0,1 1,-440 0"/>
<!-- MyAP Text --> <!-- Fediverse star symbol (centered) -->
<text x="256" y="280" <path
font-family="Arial, Helvetica, sans-serif" android:fillColor="#FFFFFF"
font-size="140" android:fillAlpha="0.9"
font-weight="bold" android:pathData="M 256,115 L 263,132 L 281,132 L 266,143 L 272,160 L 256,149 L 240,160 L 246,143 L 231,132 L 249,132 Z"/>
fill="#FFFFFF" </vector>
text-anchor="middle">
MyAP
</text>
<!-- Small ActivityPub icon/symbol (fediverse star) -->
<g transform="translate(256, 140)">
<path d="M 0,-25 L 7,-8 L 25,-8 L 10,3 L 16,20 L 0,9 L -16,20 L -10,3 L -25,-8 L -7,-8 Z"
fill="#FFFFFF"
opacity="0.9"/>
</g>
</svg>

Antes

Anchura:  |  Altura:  |  Tamaño: 901 B

Después

Anchura:  |  Altura:  |  Tamaño: 1.0 KiB