Files
app/dashboard/public/index.html
renato97 0a1d6f295f Segunda revisión completa: fixes críticos aplicados
- StrictMode solo en DEBUG mode
- ExecutorService con shutdown apropiado
- DNSSetter NetworkCallback unregister
- DiffUtil en ChannelAdapter y EventAdapter
- minifyEnabled=true y shrinkResources=true para release
- Validación en constructores (StreamChannel)
- Strings externalizadas
- ProGuard rules completas
- Testing dependencies agregadas
- Removed Firebase (uso personal)
- JavaDoc documentación agregada
- Android SDK configurado localmente

Compilado exitosamente: StreamPlayer v9.4.2 debug APK (11MB)
2026-01-11 19:24:28 -03:00

43 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>StreamPlayer Device Dashboard</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Control de Dispositivos StreamPlayer</h1>
<p>Visualiza instalaciones activas y bloquea acceso con un clic.</p>
</header>
<section class="actions">
<button id="refreshBtn">Actualizar listado</button>
<span id="statusMessage"></span>
</section>
<section class="table-wrapper">
<table>
<thead>
<tr>
<th>Alias / Nombre</th>
<th>Device ID</th>
<th>Modelo</th>
<th>Versión app</th>
<th>IP Pública</th>
<th>País</th>
<th>Verificación</th>
<th>Última vez visto</th>
<th>Estado</th>
<th>Acciones</th>
</tr>
</thead>
<tbody id="devicesTable">
<tr>
<td colspan="7" class="empty">No hay datos aún</td>
</tr>
</tbody>
</table>
</section>
<script src="app.js"></script>
</body>
</html>