Mercurial > public > geoquiz
view GeoQuiz/GeoQuizApp.swift @ 25:b3df0f5dc750
remove audio from UIBackgroundModes
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Fri, 28 Oct 2022 18:58:24 +0200 |
parents | e281791e0494 |
children |
line wrap: on
line source
// // GeoQuizApp.swift // GeoQuiz // // Created by Dennis Concepción Martín on 4/9/22. // import SwiftUI import RevenueCat @main struct GeoQuizApp: App { let persistenceController = PersistenceController.shared init() { Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") } var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }