Mercurial > public > geoquiz
view GeoQuiz/GeoQuizApp.swift @ 11:039b26a99a48
implementing RevenueCat
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sun, 09 Oct 2022 17:02:34 +0200 |
parents | 413e2d21333e |
children | ce7ea84f67f5 |
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 { init() { Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") } var body: some Scene { WindowGroup { ContentView() .onAppear(perform: testRevenueCat) } } private func testRevenueCat() { Purchases.shared.getOfferings { (offerings, error) in if let packages = offerings?.current?.availablePackages { // Display packages for sale print(packages) } } } }