Restructured the Sample app target in the Xcode project and added its unit tests target as well.

This commit is contained in:
2026-07-05 15:45:09 +02:00
parent 21d86cdc33
commit 8576d6bac6
7 changed files with 665 additions and 51 deletions
+21
View File
@@ -0,0 +1,21 @@
import SwiftUI
/// The entry point of the Attendi sample app.
///
/// The app is a thin shell over the `Features` package. It showcases the Recording feature attached to its real audio services
/// recording audio from the device's microphone, transcribing it on device in a locale picked from a toolbar menu, and presenting
/// the result in a modal sheet while the speech model assets of every picked locale preinstall in the background, with their
/// download events reported through the Notifying feature's transient in-app notifications.
@main
struct AttendiApp: App {
// MARK: Body
/// The content of the app: a single window group showing the ``ContentView``.
var body: some Scene {
WindowGroup {
ContentView()
}
}
}