Mercurial > public > geoquiz
annotate GeoQuiz.xcodeproj/project.pbxproj @ 20:e281791e0494
finish implementation
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sun, 23 Oct 2022 11:48:39 +0100 |
parents | f140bb277c96 |
children | b145c408f791 |
rev | line source |
---|---|
0 | 1 // !$*UTF8*$! |
2 { | |
3 archiveVersion = 1; | |
4 classes = { | |
5 }; | |
6 objectVersion = 55; | |
7 objects = { | |
8 | |
9 /* Begin PBXBuildFile section */ | |
20 | 10 95030CEA28D1BA4D001AA3A1 /* AnswerButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95030CE928D1BA4D001AA3A1 /* AnswerButton.swift */; }; |
6 | 11 9509A8DE28E5A19A00CFCDBA /* countries.json in Resources */ = {isa = PBXBuildFile; fileRef = 9509A8DD28E5A19A00CFCDBA /* countries.json */; }; |
7 | 12 9509A8E228E5A3D700CFCDBA /* GuessThePopulationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9509A8E128E5A3D700CFCDBA /* GuessThePopulationView.swift */; }; |
11 | 13 950C535328F2FA3300179C78 /* BuyPremiumModalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950C535228F2FA3300179C78 /* BuyPremiumModalView.swift */; }; |
14 950C535628F3172C00179C78 /* RevenueCat in Frameworks */ = {isa = PBXBuildFile; productRef = 950C535528F3172C00179C78 /* RevenueCat */; }; | |
15 950C535928F3178B00179C78 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 950C535828F3178B00179C78 /* StoreKit.framework */; }; | |
19 | 16 95197EFD28F339AE00FE67E9 /* StoreKitController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95197EFC28F339AE00FE67E9 /* StoreKitController.swift */; }; |
6 | 17 951AFAEA28E5655C00A4A4BD /* cities.json in Resources */ = {isa = PBXBuildFile; fileRef = 951AFAE828E5655C00A4A4BD /* cities.json */; }; |
18 951AFAED28E5657500A4A4BD /* CityModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951AFAEC28E5657500A4A4BD /* CityModel.swift */; }; | |
19 951AFAEF28E565FE00A4A4BD /* CountryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951AFAEE28E565FE00A4A4BD /* CountryModel.swift */; }; | |
19 | 20 951AFAF128E5735400A4A4BD /* CityGameController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951AFAF028E5735400A4A4BD /* CityGameController.swift */; }; |
0 | 21 951B630228D1A87C004F9877 /* GuessTheCapitalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951B630128D1A87C004F9877 /* GuessTheCapitalView.swift */; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
22 951D197328D485E000671FAD /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951D197228D485E000671FAD /* ColorExtension.swift */; }; |
3 | 23 952E41E928DC521200198643 /* GameAlertsModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 952E41E828DC521200198643 /* GameAlertsModifier.swift */; }; |
5 | 24 952E41ED28DC658900198643 /* SettingsModalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 952E41EC28DC658900198643 /* SettingsModalView.swift */; }; |
25 952E41F228DC6F6E00198643 /* correctAnswer.wav in Resources */ = {isa = PBXBuildFile; fileRef = 952E41F028DC6F6D00198643 /* correctAnswer.wav */; }; | |
26 952E41F328DC6F6E00198643 /* wrongAnswer.wav in Resources */ = {isa = PBXBuildFile; fileRef = 952E41F128DC6F6E00198643 /* wrongAnswer.wav */; }; | |
0 | 27 9539829328C51EDE00B70973 /* GeoQuizApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9539829228C51EDE00B70973 /* GeoQuizApp.swift */; }; |
28 9539829728C51EDF00B70973 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9539829628C51EDF00B70973 /* Assets.xcassets */; }; | |
29 9539829A28C51EDF00B70973 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9539829928C51EDF00B70973 /* Preview Assets.xcassets */; }; | |
20 | 30 954AF4682905397A00180065 /* PlayedGamesList.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954AF4672905397A00180065 /* PlayedGamesList.swift */; }; |
31 954AF46A29053D4E00180065 /* LatestGamesPlaceholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 954AF46929053D4E00180065 /* LatestGamesPlaceholder.swift */; }; | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
32 955950BB28F15FF2001BDEE8 /* FormatterExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955950BA28F15FF2001BDEE8 /* FormatterExtension.swift */; }; |
20 | 33 955A658128D703EB00CEEC6D /* GameToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955A658028D703EB00CEEC6D /* GameToolbar.swift */; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
34 955A658328D733E400CEEC6D /* GameProtocol+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955A658228D733E400CEEC6D /* GameProtocol+Extension.swift */; }; |
19 | 35 955A65A928D7815E00CEEC6D /* HapticsController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955A65A828D7815E00CEEC6D /* HapticsController.swift */; }; |
20 | 36 956273EA28CB2E98008DC094 /* FlagImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 956273E928CB2E98008DC094 /* FlagImage.swift */; }; |
6 | 37 9590359528E098FF00B24560 /* ProfileModalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9590359428E098FF00B24560 /* ProfileModalView.swift */; }; |
19 | 38 95919DB628F076BF00F21F8F /* UserController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95919DB528F076BF00F21F8F /* UserController.swift */; }; |
20 | 39 95919DBC28F08D0600F21F8F /* FormLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95919DBB28F08D0600F21F8F /* FormLink.swift */; }; |
19 | 40 95A4F42929040E350018DFAC /* CoreDataController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A4F42829040E350018DFAC /* CoreDataController.swift */; }; |
20 | 41 95A4F42B29043DC00018DFAC /* UserImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A4F42A29043DC00018DFAC /* UserImage.swift */; }; |
19 | 42 95AE8D5728C8750E0067F219 /* FileController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AE8D5628C8750E0067F219 /* FileController.swift */; }; |
6 | 43 95AF322A28DF293900023ACC /* GuessTheCountryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95AF322928DF293900023ACC /* GuessTheCountryView.swift */; }; |
20 | 44 95BC392D28EC42570049AB49 /* CityMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95BC392C28EC42570049AB49 /* CityMap.swift */; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
45 95C430F928D0A8E500480D23 /* GradientExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C430F828D0A8E500480D23 /* GradientExtension.swift */; }; |
0 | 46 95C4315628C64A8C00212131 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C4315528C64A8C00212131 /* ContentView.swift */; }; |
20 | 47 95C4315928C6500000212131 /* GameButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C4315828C6500000212131 /* GameButton.swift */; }; |
14 | 48 95C6456C28FE87E4000CD570 /* UserDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6456B28FE87E4000CD570 /* UserDataModel.swift */; }; |
20 | 49 95C6456E28FE8C04000CD570 /* UserProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6456D28FE8C04000CD570 /* UserProfile.swift */; }; |
14 | 50 95C6457228FFC4DC000CD570 /* ProfileEditModalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6457128FFC4DC000CD570 /* ProfileEditModalView.swift */; }; |
16 | 51 95C6457428FFC8E0000CD570 /* PersistenceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6457328FFC8E0000CD570 /* PersistenceController.swift */; }; |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
52 95C6457728FFC934000CD570 /* GeoQuiz.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 95C6457528FFC934000CD570 /* GeoQuiz.xcdatamodeld */; }; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
53 95C6459A28FFE5A3000CD570 /* PlayedGame+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6459828FFE5A3000CD570 /* PlayedGame+CoreDataClass.swift */; }; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
54 95C6459B28FFE5A3000CD570 /* PlayedGame+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6459928FFE5A3000CD570 /* PlayedGame+CoreDataProperties.swift */; }; |
20 | 55 95C6459D290003E1000CD570 /* RecentGame.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C6459C290003E1000CD570 /* RecentGame.swift */; }; |
19 | 56 95C645C229014442000CD570 /* GameInfoProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95C645C129014442000CD570 /* GameInfoProtocol.swift */; }; |
20 | 57 95CA295028F6BB4500CE0B7A /* ActivityAlert.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95CA294F28F6BB4500CE0B7A /* ActivityAlert.swift */; }; |
19 | 58 95DB7C01290492FC007D01D8 /* GameInfoController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DB7C00290492FC007D01D8 /* GameInfoController.swift */; }; |
59 95DB7C032904A968007D01D8 /* MapController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DB7C022904A968007D01D8 /* MapController.swift */; }; | |
0 | 60 95FA409A28D9876B00129B60 /* GuessTheFlagView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95FA409928D9876B00129B60 /* GuessTheFlagView.swift */; }; |
19 | 61 95FA409C28D9881100129B60 /* CountryGameController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95FA409B28D9881100129B60 /* CountryGameController.swift */; }; |
0 | 62 /* End PBXBuildFile section */ |
63 | |
64 /* Begin PBXFileReference section */ | |
20 | 65 95030CE928D1BA4D001AA3A1 /* AnswerButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnswerButton.swift; sourceTree = "<group>"; }; |
6 | 66 9509A8DD28E5A19A00CFCDBA /* countries.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = countries.json; sourceTree = "<group>"; }; |
7 | 67 9509A8E128E5A3D700CFCDBA /* GuessThePopulationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuessThePopulationView.swift; sourceTree = "<group>"; }; |
11 | 68 950C535228F2FA3300179C78 /* BuyPremiumModalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BuyPremiumModalView.swift; sourceTree = "<group>"; }; |
69 950C535828F3178B00179C78 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; }; | |
19 | 70 95197EFC28F339AE00FE67E9 /* StoreKitController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StoreKitController.swift; sourceTree = "<group>"; }; |
6 | 71 951AFAE828E5655C00A4A4BD /* cities.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = cities.json; sourceTree = "<group>"; }; |
72 951AFAEC28E5657500A4A4BD /* CityModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CityModel.swift; sourceTree = "<group>"; }; | |
73 951AFAEE28E565FE00A4A4BD /* CountryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountryModel.swift; sourceTree = "<group>"; }; | |
19 | 74 951AFAF028E5735400A4A4BD /* CityGameController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CityGameController.swift; sourceTree = "<group>"; }; |
0 | 75 951B630128D1A87C004F9877 /* GuessTheCapitalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuessTheCapitalView.swift; sourceTree = "<group>"; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
76 951D197228D485E000671FAD /* ColorExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorExtension.swift; sourceTree = "<group>"; }; |
3 | 77 952E41E828DC521200198643 /* GameAlertsModifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameAlertsModifier.swift; sourceTree = "<group>"; }; |
5 | 78 952E41EC28DC658900198643 /* SettingsModalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsModalView.swift; sourceTree = "<group>"; }; |
79 952E41F028DC6F6D00198643 /* correctAnswer.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = correctAnswer.wav; sourceTree = "<group>"; }; | |
80 952E41F128DC6F6E00198643 /* wrongAnswer.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = wrongAnswer.wav; sourceTree = "<group>"; }; | |
0 | 81 9539828F28C51EDE00B70973 /* GeoQuiz.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GeoQuiz.app; sourceTree = BUILT_PRODUCTS_DIR; }; |
82 9539829228C51EDE00B70973 /* GeoQuizApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeoQuizApp.swift; sourceTree = "<group>"; }; | |
83 9539829628C51EDF00B70973 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | |
84 9539829928C51EDF00B70973 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; }; | |
20 | 85 954AF4672905397A00180065 /* PlayedGamesList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlayedGamesList.swift; sourceTree = "<group>"; }; |
86 954AF46929053D4E00180065 /* LatestGamesPlaceholder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LatestGamesPlaceholder.swift; sourceTree = "<group>"; }; | |
87 954AF46B2905433300180065 /* GeoQuiz.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = GeoQuiz.entitlements; sourceTree = "<group>"; }; | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
88 955950BA28F15FF2001BDEE8 /* FormatterExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormatterExtension.swift; sourceTree = "<group>"; }; |
20 | 89 955A658028D703EB00CEEC6D /* GameToolbar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameToolbar.swift; sourceTree = "<group>"; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
90 955A658228D733E400CEEC6D /* GameProtocol+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GameProtocol+Extension.swift"; sourceTree = "<group>"; }; |
19 | 91 955A65A828D7815E00CEEC6D /* HapticsController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HapticsController.swift; sourceTree = "<group>"; }; |
20 | 92 956273E928CB2E98008DC094 /* FlagImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlagImage.swift; sourceTree = "<group>"; }; |
6 | 93 9590359428E098FF00B24560 /* ProfileModalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileModalView.swift; sourceTree = "<group>"; }; |
19 | 94 95919DB528F076BF00F21F8F /* UserController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserController.swift; sourceTree = "<group>"; }; |
20 | 95 95919DBB28F08D0600F21F8F /* FormLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormLink.swift; sourceTree = "<group>"; }; |
19 | 96 95A4F42829040E350018DFAC /* CoreDataController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDataController.swift; sourceTree = "<group>"; }; |
20 | 97 95A4F42A29043DC00018DFAC /* UserImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserImage.swift; sourceTree = "<group>"; }; |
19 | 98 95AE8D5628C8750E0067F219 /* FileController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileController.swift; sourceTree = "<group>"; }; |
6 | 99 95AF322928DF293900023ACC /* GuessTheCountryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuessTheCountryView.swift; sourceTree = "<group>"; }; |
20 | 100 95BC392C28EC42570049AB49 /* CityMap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CityMap.swift; sourceTree = "<group>"; }; |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
101 95C430F828D0A8E500480D23 /* GradientExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GradientExtension.swift; sourceTree = "<group>"; }; |
0 | 102 95C4315528C64A8C00212131 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; }; |
20 | 103 95C4315828C6500000212131 /* GameButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameButton.swift; sourceTree = "<group>"; }; |
14 | 104 95C6456B28FE87E4000CD570 /* UserDataModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDataModel.swift; sourceTree = "<group>"; }; |
20 | 105 95C6456D28FE8C04000CD570 /* UserProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserProfile.swift; sourceTree = "<group>"; }; |
14 | 106 95C6457128FFC4DC000CD570 /* ProfileEditModalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProfileEditModalView.swift; sourceTree = "<group>"; }; |
16 | 107 95C6457328FFC8E0000CD570 /* PersistenceController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersistenceController.swift; sourceTree = "<group>"; }; |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
108 95C6457628FFC934000CD570 /* GeoQuiz.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = GeoQuiz.xcdatamodel; sourceTree = "<group>"; }; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
109 95C6459828FFE5A3000CD570 /* PlayedGame+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PlayedGame+CoreDataClass.swift"; sourceTree = "<group>"; }; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
110 95C6459928FFE5A3000CD570 /* PlayedGame+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PlayedGame+CoreDataProperties.swift"; sourceTree = "<group>"; }; |
20 | 111 95C6459C290003E1000CD570 /* RecentGame.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecentGame.swift; sourceTree = "<group>"; }; |
19 | 112 95C645C129014442000CD570 /* GameInfoProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameInfoProtocol.swift; sourceTree = "<group>"; }; |
20 | 113 95CA294F28F6BB4500CE0B7A /* ActivityAlert.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityAlert.swift; sourceTree = "<group>"; }; |
19 | 114 95DB7C00290492FC007D01D8 /* GameInfoController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GameInfoController.swift; sourceTree = "<group>"; }; |
115 95DB7C022904A968007D01D8 /* MapController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapController.swift; sourceTree = "<group>"; }; | |
5 | 116 95E6188428DDDB5C003359ED /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; |
0 | 117 95FA409928D9876B00129B60 /* GuessTheFlagView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GuessTheFlagView.swift; sourceTree = "<group>"; }; |
19 | 118 95FA409B28D9881100129B60 /* CountryGameController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountryGameController.swift; sourceTree = "<group>"; }; |
0 | 119 /* End PBXFileReference section */ |
120 | |
121 /* Begin PBXFrameworksBuildPhase section */ | |
122 9539828C28C51EDE00B70973 /* Frameworks */ = { | |
123 isa = PBXFrameworksBuildPhase; | |
124 buildActionMask = 2147483647; | |
125 files = ( | |
11 | 126 950C535628F3172C00179C78 /* RevenueCat in Frameworks */, |
127 950C535928F3178B00179C78 /* StoreKit.framework in Frameworks */, | |
0 | 128 ); |
129 runOnlyForDeploymentPostprocessing = 0; | |
130 }; | |
131 /* End PBXFrameworksBuildPhase section */ | |
132 | |
133 /* Begin PBXGroup section */ | |
134 95030CE728D1B60F001AA3A1 /* Logic */ = { | |
135 isa = PBXGroup; | |
136 children = ( | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
137 951AFAEC28E5657500A4A4BD /* CityModel.swift */, |
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
138 951AFAEE28E565FE00A4A4BD /* CountryModel.swift */, |
14 | 139 95C6456B28FE87E4000CD570 /* UserDataModel.swift */, |
19 | 140 95C645C129014442000CD570 /* GameInfoProtocol.swift */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
141 955A658228D733E400CEEC6D /* GameProtocol+Extension.swift */, |
19 | 142 95DB7C00290492FC007D01D8 /* GameInfoController.swift */, |
143 955A65A828D7815E00CEEC6D /* HapticsController.swift */, | |
144 95FA409B28D9881100129B60 /* CountryGameController.swift */, | |
145 951AFAF028E5735400A4A4BD /* CityGameController.swift */, | |
146 95919DB528F076BF00F21F8F /* UserController.swift */, | |
147 95197EFC28F339AE00FE67E9 /* StoreKitController.swift */, | |
148 95A4F42829040E350018DFAC /* CoreDataController.swift */, | |
16 | 149 95C6457328FFC8E0000CD570 /* PersistenceController.swift */, |
19 | 150 95AE8D5628C8750E0067F219 /* FileController.swift */, |
151 95DB7C022904A968007D01D8 /* MapController.swift */, | |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
152 95C6459828FFE5A3000CD570 /* PlayedGame+CoreDataClass.swift */, |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
153 95C6459928FFE5A3000CD570 /* PlayedGame+CoreDataProperties.swift */, |
0 | 154 ); |
155 path = Logic; | |
156 sourceTree = "<group>"; | |
157 }; | |
11 | 158 950C535728F3178B00179C78 /* Frameworks */ = { |
159 isa = PBXGroup; | |
160 children = ( | |
161 950C535828F3178B00179C78 /* StoreKit.framework */, | |
162 ); | |
163 name = Frameworks; | |
164 sourceTree = "<group>"; | |
165 }; | |
5 | 166 9520ABBA28C86D0300A3D4D7 /* Resources */ = { |
0 | 167 isa = PBXGroup; |
168 children = ( | |
6 | 169 951AFAE828E5655C00A4A4BD /* cities.json */, |
170 9509A8DD28E5A19A00CFCDBA /* countries.json */, | |
5 | 171 952E41F028DC6F6D00198643 /* correctAnswer.wav */, |
172 952E41F128DC6F6E00198643 /* wrongAnswer.wav */, | |
0 | 173 ); |
5 | 174 path = Resources; |
0 | 175 sourceTree = "<group>"; |
176 }; | |
177 9539828628C51EDE00B70973 = { | |
178 isa = PBXGroup; | |
179 children = ( | |
180 9539829128C51EDE00B70973 /* GeoQuiz */, | |
181 9539829028C51EDE00B70973 /* Products */, | |
11 | 182 950C535728F3178B00179C78 /* Frameworks */, |
0 | 183 ); |
184 sourceTree = "<group>"; | |
185 }; | |
186 9539829028C51EDE00B70973 /* Products */ = { | |
187 isa = PBXGroup; | |
188 children = ( | |
189 9539828F28C51EDE00B70973 /* GeoQuiz.app */, | |
190 ); | |
191 name = Products; | |
192 sourceTree = "<group>"; | |
193 }; | |
194 9539829128C51EDE00B70973 /* GeoQuiz */ = { | |
195 isa = PBXGroup; | |
196 children = ( | |
20 | 197 954AF46B2905433300180065 /* GeoQuiz.entitlements */, |
5 | 198 95E6188428DDDB5C003359ED /* Info.plist */, |
6 | 199 9539829628C51EDF00B70973 /* Assets.xcassets */, |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
200 95C6457528FFC934000CD570 /* GeoQuiz.xcdatamodeld */, |
0 | 201 9539829228C51EDE00B70973 /* GeoQuizApp.swift */, |
202 95C4315528C64A8C00212131 /* ContentView.swift */, | |
203 95FA409928D9876B00129B60 /* GuessTheFlagView.swift */, | |
204 951B630128D1A87C004F9877 /* GuessTheCapitalView.swift */, | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
205 95AF322928DF293900023ACC /* GuessTheCountryView.swift */, |
7 | 206 9509A8E128E5A3D700CFCDBA /* GuessThePopulationView.swift */, |
11 | 207 950C535228F2FA3300179C78 /* BuyPremiumModalView.swift */, |
208 952E41EC28DC658900198643 /* SettingsModalView.swift */, | |
6 | 209 9590359428E098FF00B24560 /* ProfileModalView.swift */, |
16 | 210 95C6457128FFC4DC000CD570 /* ProfileEditModalView.swift */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
211 959D414728C87EA600BAAC14 /* Components */, |
0 | 212 95030CE728D1B60F001AA3A1 /* Logic */, |
5 | 213 9520ABBA28C86D0300A3D4D7 /* Resources */, |
0 | 214 9539829828C51EDF00B70973 /* Preview Content */, |
215 ); | |
216 path = GeoQuiz; | |
217 sourceTree = "<group>"; | |
218 }; | |
219 9539829828C51EDF00B70973 /* Preview Content */ = { | |
220 isa = PBXGroup; | |
221 children = ( | |
222 9539829928C51EDF00B70973 /* Preview Assets.xcassets */, | |
223 ); | |
224 path = "Preview Content"; | |
225 sourceTree = "<group>"; | |
226 }; | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
227 959D414728C87EA600BAAC14 /* Components */ = { |
0 | 228 isa = PBXGroup; |
229 children = ( | |
20 | 230 95C4315828C6500000212131 /* GameButton.swift */, |
231 956273E928CB2E98008DC094 /* FlagImage.swift */, | |
232 95030CE928D1BA4D001AA3A1 /* AnswerButton.swift */, | |
233 955A658028D703EB00CEEC6D /* GameToolbar.swift */, | |
234 95BC392C28EC42570049AB49 /* CityMap.swift */, | |
235 95919DBB28F08D0600F21F8F /* FormLink.swift */, | |
236 95CA294F28F6BB4500CE0B7A /* ActivityAlert.swift */, | |
237 95C6456D28FE8C04000CD570 /* UserProfile.swift */, | |
238 95A4F42A29043DC00018DFAC /* UserImage.swift */, | |
239 95C6459C290003E1000CD570 /* RecentGame.swift */, | |
240 954AF4672905397A00180065 /* PlayedGamesList.swift */, | |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
241 952E41E828DC521200198643 /* GameAlertsModifier.swift */, |
20 | 242 954AF46929053D4E00180065 /* LatestGamesPlaceholder.swift */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
243 95C430F828D0A8E500480D23 /* GradientExtension.swift */, |
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
244 951D197228D485E000671FAD /* ColorExtension.swift */, |
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
245 955950BA28F15FF2001BDEE8 /* FormatterExtension.swift */, |
0 | 246 ); |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
247 path = Components; |
0 | 248 sourceTree = "<group>"; |
249 }; | |
250 /* End PBXGroup section */ | |
251 | |
252 /* Begin PBXNativeTarget section */ | |
253 9539828E28C51EDE00B70973 /* GeoQuiz */ = { | |
254 isa = PBXNativeTarget; | |
255 buildConfigurationList = 9539829D28C51EDF00B70973 /* Build configuration list for PBXNativeTarget "GeoQuiz" */; | |
256 buildPhases = ( | |
257 9539828B28C51EDE00B70973 /* Sources */, | |
258 9539828C28C51EDE00B70973 /* Frameworks */, | |
259 9539828D28C51EDE00B70973 /* Resources */, | |
260 ); | |
261 buildRules = ( | |
262 ); | |
263 dependencies = ( | |
264 ); | |
265 name = GeoQuiz; | |
11 | 266 packageProductDependencies = ( |
267 950C535528F3172C00179C78 /* RevenueCat */, | |
268 ); | |
0 | 269 productName = GeoQuiz; |
270 productReference = 9539828F28C51EDE00B70973 /* GeoQuiz.app */; | |
271 productType = "com.apple.product-type.application"; | |
272 }; | |
273 /* End PBXNativeTarget section */ | |
274 | |
275 /* Begin PBXProject section */ | |
276 9539828728C51EDE00B70973 /* Project object */ = { | |
277 isa = PBXProject; | |
278 attributes = { | |
279 BuildIndependentTargetsInParallel = 1; | |
280 LastSwiftUpdateCheck = 1340; | |
281 LastUpgradeCheck = 1340; | |
282 TargetAttributes = { | |
283 9539828E28C51EDE00B70973 = { | |
284 CreatedOnToolsVersion = 13.4.1; | |
285 }; | |
286 }; | |
287 }; | |
288 buildConfigurationList = 9539828A28C51EDE00B70973 /* Build configuration list for PBXProject "GeoQuiz" */; | |
289 compatibilityVersion = "Xcode 13.0"; | |
290 developmentRegion = en; | |
291 hasScannedForEncodings = 0; | |
292 knownRegions = ( | |
293 en, | |
294 Base, | |
295 ); | |
296 mainGroup = 9539828628C51EDE00B70973; | |
11 | 297 packageReferences = ( |
298 950C535428F3172C00179C78 /* XCRemoteSwiftPackageReference "purchases-ios" */, | |
299 ); | |
0 | 300 productRefGroup = 9539829028C51EDE00B70973 /* Products */; |
301 projectDirPath = ""; | |
302 projectRoot = ""; | |
303 targets = ( | |
304 9539828E28C51EDE00B70973 /* GeoQuiz */, | |
305 ); | |
306 }; | |
307 /* End PBXProject section */ | |
308 | |
309 /* Begin PBXResourcesBuildPhase section */ | |
310 9539828D28C51EDE00B70973 /* Resources */ = { | |
311 isa = PBXResourcesBuildPhase; | |
312 buildActionMask = 2147483647; | |
313 files = ( | |
6 | 314 9509A8DE28E5A19A00CFCDBA /* countries.json in Resources */, |
5 | 315 952E41F328DC6F6E00198643 /* wrongAnswer.wav in Resources */, |
6 | 316 951AFAEA28E5655C00A4A4BD /* cities.json in Resources */, |
0 | 317 9539829A28C51EDF00B70973 /* Preview Assets.xcassets in Resources */, |
318 9539829728C51EDF00B70973 /* Assets.xcassets in Resources */, | |
5 | 319 952E41F228DC6F6E00198643 /* correctAnswer.wav in Resources */, |
0 | 320 ); |
321 runOnlyForDeploymentPostprocessing = 0; | |
322 }; | |
323 /* End PBXResourcesBuildPhase section */ | |
324 | |
325 /* Begin PBXSourcesBuildPhase section */ | |
326 9539828B28C51EDE00B70973 /* Sources */ = { | |
327 isa = PBXSourcesBuildPhase; | |
328 buildActionMask = 2147483647; | |
329 files = ( | |
19 | 330 955A65A928D7815E00CEEC6D /* HapticsController.swift in Sources */, |
20 | 331 95BC392D28EC42570049AB49 /* CityMap.swift in Sources */, |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
332 95C6459A28FFE5A3000CD570 /* PlayedGame+CoreDataClass.swift in Sources */, |
20 | 333 95A4F42B29043DC00018DFAC /* UserImage.swift in Sources */, |
3 | 334 952E41E928DC521200198643 /* GameAlertsModifier.swift in Sources */, |
19 | 335 95197EFD28F339AE00FE67E9 /* StoreKitController.swift in Sources */, |
7 | 336 9509A8E228E5A3D700CFCDBA /* GuessThePopulationView.swift in Sources */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
337 955A658328D733E400CEEC6D /* GameProtocol+Extension.swift in Sources */, |
19 | 338 95A4F42929040E350018DFAC /* CoreDataController.swift in Sources */, |
16 | 339 95C6457428FFC8E0000CD570 /* PersistenceController.swift in Sources */, |
19 | 340 95919DB628F076BF00F21F8F /* UserController.swift in Sources */, |
20 | 341 95C6459D290003E1000CD570 /* RecentGame.swift in Sources */, |
342 95C6456E28FE8C04000CD570 /* UserProfile.swift in Sources */, | |
0 | 343 95C4315628C64A8C00212131 /* ContentView.swift in Sources */, |
19 | 344 95C645C229014442000CD570 /* GameInfoProtocol.swift in Sources */, |
20 | 345 954AF4682905397A00180065 /* PlayedGamesList.swift in Sources */, |
346 95C4315928C6500000212131 /* GameButton.swift in Sources */, | |
347 956273EA28CB2E98008DC094 /* FlagImage.swift in Sources */, | |
6 | 348 951AFAED28E5657500A4A4BD /* CityModel.swift in Sources */, |
11 | 349 950C535328F2FA3300179C78 /* BuyPremiumModalView.swift in Sources */, |
20 | 350 954AF46A29053D4E00180065 /* LatestGamesPlaceholder.swift in Sources */, |
0 | 351 951B630228D1A87C004F9877 /* GuessTheCapitalView.swift in Sources */, |
352 9539829328C51EDE00B70973 /* GeoQuizApp.swift in Sources */, | |
6 | 353 95AF322A28DF293900023ACC /* GuessTheCountryView.swift in Sources */, |
19 | 354 95DB7C032904A968007D01D8 /* MapController.swift in Sources */, |
20 | 355 95919DBC28F08D0600F21F8F /* FormLink.swift in Sources */, |
6 | 356 951AFAEF28E565FE00A4A4BD /* CountryModel.swift in Sources */, |
20 | 357 95030CEA28D1BA4D001AA3A1 /* AnswerButton.swift in Sources */, |
19 | 358 95FA409C28D9881100129B60 /* CountryGameController.swift in Sources */, |
20 | 359 95CA295028F6BB4500CE0B7A /* ActivityAlert.swift in Sources */, |
360 955A658128D703EB00CEEC6D /* GameToolbar.swift in Sources */, | |
19 | 361 95AE8D5728C8750E0067F219 /* FileController.swift in Sources */, |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
362 95C6457728FFC934000CD570 /* GeoQuiz.xcdatamodeld in Sources */, |
6 | 363 9590359528E098FF00B24560 /* ProfileModalView.swift in Sources */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
364 955950BB28F15FF2001BDEE8 /* FormatterExtension.swift in Sources */, |
14 | 365 95C6456C28FE87E4000CD570 /* UserDataModel.swift in Sources */, |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
366 95C6459B28FFE5A3000CD570 /* PlayedGame+CoreDataProperties.swift in Sources */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
367 951D197328D485E000671FAD /* ColorExtension.swift in Sources */, |
14 | 368 95C6457228FFC4DC000CD570 /* ProfileEditModalView.swift in Sources */, |
10
a793f33f05fb
refactor code and fix layout
Dennis C. M. <dennis@denniscm.com>
parents:
9
diff
changeset
|
369 95C430F928D0A8E500480D23 /* GradientExtension.swift in Sources */, |
5 | 370 952E41ED28DC658900198643 /* SettingsModalView.swift in Sources */, |
0 | 371 95FA409A28D9876B00129B60 /* GuessTheFlagView.swift in Sources */, |
19 | 372 95DB7C01290492FC007D01D8 /* GameInfoController.swift in Sources */, |
373 951AFAF128E5735400A4A4BD /* CityGameController.swift in Sources */, | |
0 | 374 ); |
375 runOnlyForDeploymentPostprocessing = 0; | |
376 }; | |
377 /* End PBXSourcesBuildPhase section */ | |
378 | |
379 /* Begin XCBuildConfiguration section */ | |
380 9539829B28C51EDF00B70973 /* Debug */ = { | |
381 isa = XCBuildConfiguration; | |
382 buildSettings = { | |
383 ALWAYS_SEARCH_USER_PATHS = NO; | |
384 CLANG_ANALYZER_NONNULL = YES; | |
385 CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | |
386 CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; | |
387 CLANG_ENABLE_MODULES = YES; | |
388 CLANG_ENABLE_OBJC_ARC = YES; | |
389 CLANG_ENABLE_OBJC_WEAK = YES; | |
390 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |
391 CLANG_WARN_BOOL_CONVERSION = YES; | |
392 CLANG_WARN_COMMA = YES; | |
393 CLANG_WARN_CONSTANT_CONVERSION = YES; | |
394 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
395 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |
396 CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | |
397 CLANG_WARN_EMPTY_BODY = YES; | |
398 CLANG_WARN_ENUM_CONVERSION = YES; | |
399 CLANG_WARN_INFINITE_RECURSION = YES; | |
400 CLANG_WARN_INT_CONVERSION = YES; | |
401 CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |
402 CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |
403 CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |
404 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |
405 CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | |
406 CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |
407 CLANG_WARN_STRICT_PROTOTYPES = YES; | |
408 CLANG_WARN_SUSPICIOUS_MOVE = YES; | |
409 CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | |
410 CLANG_WARN_UNREACHABLE_CODE = YES; | |
411 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |
412 COPY_PHASE_STRIP = NO; | |
413 DEBUG_INFORMATION_FORMAT = dwarf; | |
414 ENABLE_STRICT_OBJC_MSGSEND = YES; | |
415 ENABLE_TESTABILITY = YES; | |
416 GCC_C_LANGUAGE_STANDARD = gnu11; | |
417 GCC_DYNAMIC_NO_PIC = NO; | |
418 GCC_NO_COMMON_BLOCKS = YES; | |
419 GCC_OPTIMIZATION_LEVEL = 0; | |
420 GCC_PREPROCESSOR_DEFINITIONS = ( | |
421 "DEBUG=1", | |
422 "$(inherited)", | |
423 ); | |
424 GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |
425 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |
426 GCC_WARN_UNDECLARED_SELECTOR = YES; | |
427 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |
428 GCC_WARN_UNUSED_FUNCTION = YES; | |
429 GCC_WARN_UNUSED_VARIABLE = YES; | |
430 IPHONEOS_DEPLOYMENT_TARGET = 15.5; | |
431 MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | |
432 MTL_FAST_MATH = YES; | |
433 ONLY_ACTIVE_ARCH = YES; | |
434 SDKROOT = iphoneos; | |
435 SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; | |
436 SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | |
437 }; | |
438 name = Debug; | |
439 }; | |
440 9539829C28C51EDF00B70973 /* Release */ = { | |
441 isa = XCBuildConfiguration; | |
442 buildSettings = { | |
443 ALWAYS_SEARCH_USER_PATHS = NO; | |
444 CLANG_ANALYZER_NONNULL = YES; | |
445 CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | |
446 CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; | |
447 CLANG_ENABLE_MODULES = YES; | |
448 CLANG_ENABLE_OBJC_ARC = YES; | |
449 CLANG_ENABLE_OBJC_WEAK = YES; | |
450 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |
451 CLANG_WARN_BOOL_CONVERSION = YES; | |
452 CLANG_WARN_COMMA = YES; | |
453 CLANG_WARN_CONSTANT_CONVERSION = YES; | |
454 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |
455 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |
456 CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | |
457 CLANG_WARN_EMPTY_BODY = YES; | |
458 CLANG_WARN_ENUM_CONVERSION = YES; | |
459 CLANG_WARN_INFINITE_RECURSION = YES; | |
460 CLANG_WARN_INT_CONVERSION = YES; | |
461 CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |
462 CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |
463 CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |
464 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |
465 CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | |
466 CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |
467 CLANG_WARN_STRICT_PROTOTYPES = YES; | |
468 CLANG_WARN_SUSPICIOUS_MOVE = YES; | |
469 CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | |
470 CLANG_WARN_UNREACHABLE_CODE = YES; | |
471 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |
472 COPY_PHASE_STRIP = NO; | |
473 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | |
474 ENABLE_NS_ASSERTIONS = NO; | |
475 ENABLE_STRICT_OBJC_MSGSEND = YES; | |
476 GCC_C_LANGUAGE_STANDARD = gnu11; | |
477 GCC_NO_COMMON_BLOCKS = YES; | |
478 GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |
479 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |
480 GCC_WARN_UNDECLARED_SELECTOR = YES; | |
481 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |
482 GCC_WARN_UNUSED_FUNCTION = YES; | |
483 GCC_WARN_UNUSED_VARIABLE = YES; | |
484 IPHONEOS_DEPLOYMENT_TARGET = 15.5; | |
485 MTL_ENABLE_DEBUG_INFO = NO; | |
486 MTL_FAST_MATH = YES; | |
487 SDKROOT = iphoneos; | |
488 SWIFT_COMPILATION_MODE = wholemodule; | |
489 SWIFT_OPTIMIZATION_LEVEL = "-O"; | |
490 VALIDATE_PRODUCT = YES; | |
491 }; | |
492 name = Release; | |
493 }; | |
494 9539829E28C51EDF00B70973 /* Debug */ = { | |
495 isa = XCBuildConfiguration; | |
496 buildSettings = { | |
497 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | |
498 ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | |
20 | 499 CODE_SIGN_ENTITLEMENTS = GeoQuiz/GeoQuiz.entitlements; |
0 | 500 CODE_SIGN_STYLE = Automatic; |
501 CURRENT_PROJECT_VERSION = 1; | |
502 DEVELOPMENT_ASSET_PATHS = "\"GeoQuiz/Preview Content\""; | |
503 DEVELOPMENT_TEAM = MTX83R5H8X; | |
504 ENABLE_PREVIEWS = YES; | |
505 GENERATE_INFOPLIST_FILE = YES; | |
5 | 506 INFOPLIST_FILE = GeoQuiz/Info.plist; |
0 | 507 INFOPLIST_KEY_CFBundleDisplayName = GeoQuiz; |
508 INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.trivia-games"; | |
509 INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; | |
510 INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; | |
511 INFOPLIST_KEY_UILaunchScreen_Generation = YES; | |
512 INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; | |
513 INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; | |
14 | 514 IPHONEOS_DEPLOYMENT_TARGET = 16.0; |
0 | 515 LD_RUNPATH_SEARCH_PATHS = ( |
516 "$(inherited)", | |
517 "@executable_path/Frameworks", | |
518 ); | |
13 | 519 MACOSX_DEPLOYMENT_TARGET = 13.0; |
0 | 520 MARKETING_VERSION = 1.0; |
521 PRODUCT_BUNDLE_IDENTIFIER = io.dennistech.GeoQuiz; | |
522 PRODUCT_NAME = "$(TARGET_NAME)"; | |
523 SWIFT_EMIT_LOC_STRINGS = YES; | |
524 SWIFT_VERSION = 5.0; | |
525 TARGETED_DEVICE_FAMILY = "1,2"; | |
526 }; | |
527 name = Debug; | |
528 }; | |
529 9539829F28C51EDF00B70973 /* Release */ = { | |
530 isa = XCBuildConfiguration; | |
531 buildSettings = { | |
532 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | |
533 ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | |
20 | 534 CODE_SIGN_ENTITLEMENTS = GeoQuiz/GeoQuiz.entitlements; |
0 | 535 CODE_SIGN_STYLE = Automatic; |
536 CURRENT_PROJECT_VERSION = 1; | |
537 DEVELOPMENT_ASSET_PATHS = "\"GeoQuiz/Preview Content\""; | |
538 DEVELOPMENT_TEAM = MTX83R5H8X; | |
539 ENABLE_PREVIEWS = YES; | |
540 GENERATE_INFOPLIST_FILE = YES; | |
5 | 541 INFOPLIST_FILE = GeoQuiz/Info.plist; |
0 | 542 INFOPLIST_KEY_CFBundleDisplayName = GeoQuiz; |
543 INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.trivia-games"; | |
544 INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; | |
545 INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; | |
546 INFOPLIST_KEY_UILaunchScreen_Generation = YES; | |
547 INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; | |
548 INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; | |
14 | 549 IPHONEOS_DEPLOYMENT_TARGET = 16.0; |
0 | 550 LD_RUNPATH_SEARCH_PATHS = ( |
551 "$(inherited)", | |
552 "@executable_path/Frameworks", | |
553 ); | |
13 | 554 MACOSX_DEPLOYMENT_TARGET = 13.0; |
0 | 555 MARKETING_VERSION = 1.0; |
556 PRODUCT_BUNDLE_IDENTIFIER = io.dennistech.GeoQuiz; | |
557 PRODUCT_NAME = "$(TARGET_NAME)"; | |
558 SWIFT_EMIT_LOC_STRINGS = YES; | |
559 SWIFT_VERSION = 5.0; | |
560 TARGETED_DEVICE_FAMILY = "1,2"; | |
561 }; | |
562 name = Release; | |
563 }; | |
564 /* End XCBuildConfiguration section */ | |
565 | |
566 /* Begin XCConfigurationList section */ | |
567 9539828A28C51EDE00B70973 /* Build configuration list for PBXProject "GeoQuiz" */ = { | |
568 isa = XCConfigurationList; | |
569 buildConfigurations = ( | |
570 9539829B28C51EDF00B70973 /* Debug */, | |
571 9539829C28C51EDF00B70973 /* Release */, | |
572 ); | |
573 defaultConfigurationIsVisible = 0; | |
574 defaultConfigurationName = Release; | |
575 }; | |
576 9539829D28C51EDF00B70973 /* Build configuration list for PBXNativeTarget "GeoQuiz" */ = { | |
577 isa = XCConfigurationList; | |
578 buildConfigurations = ( | |
579 9539829E28C51EDF00B70973 /* Debug */, | |
580 9539829F28C51EDF00B70973 /* Release */, | |
581 ); | |
582 defaultConfigurationIsVisible = 0; | |
583 defaultConfigurationName = Release; | |
584 }; | |
585 /* End XCConfigurationList section */ | |
11 | 586 |
587 /* Begin XCRemoteSwiftPackageReference section */ | |
588 950C535428F3172C00179C78 /* XCRemoteSwiftPackageReference "purchases-ios" */ = { | |
589 isa = XCRemoteSwiftPackageReference; | |
590 repositoryURL = "https://github.com/RevenueCat/purchases-ios.git"; | |
591 requirement = { | |
592 kind = upToNextMajorVersion; | |
593 minimumVersion = 4.0.0; | |
594 }; | |
595 }; | |
596 /* End XCRemoteSwiftPackageReference section */ | |
597 | |
598 /* Begin XCSwiftPackageProductDependency section */ | |
599 950C535528F3172C00179C78 /* RevenueCat */ = { | |
600 isa = XCSwiftPackageProductDependency; | |
601 package = 950C535428F3172C00179C78 /* XCRemoteSwiftPackageReference "purchases-ios" */; | |
602 productName = RevenueCat; | |
603 }; | |
604 /* End XCSwiftPackageProductDependency section */ | |
15
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
605 |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
606 /* Begin XCVersionGroup section */ |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
607 95C6457528FFC934000CD570 /* GeoQuiz.xcdatamodeld */ = { |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
608 isa = XCVersionGroup; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
609 children = ( |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
610 95C6457628FFC934000CD570 /* GeoQuiz.xcdatamodel */, |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
611 ); |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
612 currentVersion = 95C6457628FFC934000CD570 /* GeoQuiz.xcdatamodel */; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
613 path = GeoQuiz.xcdatamodeld; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
614 sourceTree = "<group>"; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
615 versionGroupType = wrapper.xcdatamodel; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
616 }; |
f1967f8cc67b
first iteration of core data
Dennis C. M. <dennis@denniscm.com>
parents:
14
diff
changeset
|
617 /* End XCVersionGroup section */ |
0 | 618 }; |
619 rootObject = 9539828728C51EDE00B70973 /* Project object */; | |
620 } |