Files
keevault/MyPass/MyPassApp.swift
T
krissandClaude Sonnet 5 6279488416 chore: wire up AutoFill extension target and rebrand bundle prefix
Adds the AutoFill Credential Provider Extension target (App Group +
Keychain Sharing capabilities, autofill-credential-provider
entitlement), removes the leftover SwiftData bootstrap from
MyPassApp.swift now that Item.swift is gone, and switches the bundle
ID / App Group / Keychain group prefix from com.christophevila to
org.antiloop222 to match the project's existing identifier.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01WYqycDFsynHH9VnnK7LNSf
2026-09-19 15:33:23 +02:00

18 lines
226 B
Swift

//
// MyPassApp.swift
// MyPass
//
// Created by Christophe Vila on 21/05/2026.
//
import SwiftUI
@main
struct MyPassApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}