fix: crash al arrancar + icono correcto
All checks were successful
Build & Deploy Farolero / Análisis de código (push) Successful in 9s
Build & Deploy Farolero / Build APK + AAB release (push) Successful in 1m7s

- MainActivity movida de es.freetimelab.el_impostor → es.freetimelab.farolero
- minSdk forzado a 24 (requerido por nearby_connections)
- Iconos regenerados con PIL (AAPT-compatible)
- Adaptive icon con foreground/background
- Feature graphic actualizado
- Refs a elimpostor limpiadas en servicio_nearby
This commit is contained in:
ShanaiaBot
2026-04-04 02:22:18 +02:00
parent 469293d31b
commit c4b4ef86e9
21 changed files with 9 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ class ServicioNearby extends ChangeNotifier {
// onConnectionInitiated: _onConexionIniciada,
// onConnectionResult: _onResultadoConexion,
// onDisconnected: _onDesconexion,
// serviceId: 'es.freetimelab.elimpostor',
// serviceId: 'es.freetimelab.farolero',
// );
// _esHost = true;
// _endpointId = nombreSala;
@@ -96,7 +96,7 @@ class ServicioNearby extends ChangeNotifier {
// );
// },
// onEndpointLost: (id) {},
// serviceId: 'es.freetimelab.elimpostor',
// serviceId: 'es.freetimelab.farolero',
// );
// return true;
// } catch (e) {
@@ -139,7 +139,7 @@ class ServicioNearby extends ChangeNotifier {
/// Genera los datos para el código QR de conexión
String generarDatosQR(String nombreSala) {
return json.encode({
'app': 'elimpostor',
'app': 'farolero',
'endpoint': _endpointId,
'sala': nombreSala,
});