feat: initialize Android project structure with Gradle and basic UI/data architecture

This commit is contained in:
2026-06-11 22:41:02 +01:00
parent 70ae9230ca
commit f8f3be36ee
54 changed files with 3961 additions and 3 deletions
@@ -0,0 +1,12 @@
package com.example.esp32aldldashboard.data
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.flow
interface DataRepository {
val data: Flow<List<String>>
}
class DefaultDataRepository : DataRepository {
override val data: Flow<List<String>> = flow { emit(listOf("Android")) }
}