Mercurial > public > geoquiz
annotate GeoQuiz/GeoQuizApp.swift @ 13:bdfff35dd43c
implement RevenueCat
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 12 Oct 2022 11:47:29 +0200 |
parents | ce7ea84f67f5 |
children | f1967f8cc67b |
rev | line source |
---|---|
0 | 1 // |
2 // GeoQuizApp.swift | |
3 // GeoQuiz | |
4 // | |
5 // Created by Dennis Concepción Martín on 4/9/22. | |
6 // | |
7 | |
8 import SwiftUI | |
11 | 9 import RevenueCat |
0 | 10 |
11 @main | |
12 struct GeoQuizApp: App { | |
11 | 13 |
14 init() { | |
15 Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") | |
16 } | |
17 | |
0 | 18 var body: some Scene { |
19 WindowGroup { | |
20 ContentView() | |
21 } | |
22 } | |
23 } |