Aggiunge app Android nativa da zero su branch dedicato.

Nuovo progetto Compose in native/android con API, auth, streaming RTMP e schermate base; nessun codice copiato dalla app Flutter.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-06 15:36:36 +02:00
co-authored by Cursor
parent 854738b46d
commit 499aee8988
41 changed files with 2168 additions and 0 deletions
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#FF2D2D"
android:pathData="M54,8 L100,100 H8 Z" />
<path
android:fillColor="#FFFFFF"
android:pathData="M54,28 L78,88 H30 Z" />
</vector>
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FF2D2D"
android:pathData="M4,4h16v16H4z" />
</vector>
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Match Live TV</string>
<string name="streaming_notification_channel">Diretta in corso</string>
<string name="streaming_notification_channel_desc">Notifica durante lo streaming live</string>
<string name="streaming_notification_title">Match Live TV</string>
<string name="streaming_notification_active">Preparazione diretta…</string>
<string name="streaming_notification_connecting">Connessione RTMP…</string>
<string name="streaming_notification_streaming">In diretta</string>
<string name="streaming_notification_reconnecting">Riconnessione…</string>
<string name="streaming_notification_error">Errore streaming</string>
<string name="streaming_notification_stop">Termina</string>
</resources>
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.MatchLiveTv" parent="android:Theme.Material.Light.NoActionBar" />
</resources>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true">
<trust-anchors>
<certificates src="system" />
</trust-anchors>
</base-config>
</network-security-config>