@marcos_feitoza/personal-finance-frontend-core-ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/.circleci/config.yml +23 -0
  2. package/.metadata +45 -0
  3. package/CHANGELOG.md +26 -0
  4. package/README.md +16 -0
  5. package/analysis_options.yaml +28 -0
  6. package/android/app/build.gradle.kts +44 -0
  7. package/android/app/src/debug/AndroidManifest.xml +7 -0
  8. package/android/app/src/main/AndroidManifest.xml +45 -0
  9. package/android/app/src/main/kotlin/com/example/personal_finance_frontend_core_ui/MainActivity.kt +5 -0
  10. package/android/app/src/main/res/drawable/launch_background.xml +12 -0
  11. package/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  12. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  13. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  14. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  15. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  16. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  17. package/android/app/src/main/res/values/styles.xml +18 -0
  18. package/android/app/src/main/res/values-night/styles.xml +18 -0
  19. package/android/app/src/profile/AndroidManifest.xml +7 -0
  20. package/android/build.gradle.kts +21 -0
  21. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  22. package/android/gradle.properties +3 -0
  23. package/android/settings.gradle.kts +25 -0
  24. package/ios/Flutter/AppFrameworkInfo.plist +26 -0
  25. package/ios/Flutter/Debug.xcconfig +1 -0
  26. package/ios/Flutter/Release.xcconfig +1 -0
  27. package/ios/Runner/AppDelegate.swift +13 -0
  28. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  29. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  30. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  31. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  32. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  33. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  34. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  35. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  36. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  37. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  38. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  39. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  40. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  41. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  42. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  43. package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  44. package/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  45. package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  46. package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  47. package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  48. package/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  49. package/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  50. package/ios/Runner/Base.lproj/Main.storyboard +26 -0
  51. package/ios/Runner/Info.plist +49 -0
  52. package/ios/Runner/Runner-Bridging-Header.h +1 -0
  53. package/ios/Runner.xcodeproj/project.pbxproj +619 -0
  54. package/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  55. package/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  56. package/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  57. package/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
  58. package/ios/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  59. package/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  60. package/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  61. package/ios/RunnerTests/RunnerTests.swift +12 -0
  62. package/lib/main.dart +122 -0
  63. package/lib/personal_finance_frontend_core_ui.dart +1 -0
  64. package/lib/utils/currency_input_formatter.dart +49 -0
  65. package/lib/utils/currency_utils.dart +14 -0
  66. package/lib/utils/theme_notifier.dart +33 -0
  67. package/lib/widgets/app_widgets.dart +405 -0
  68. package/lib/widgets/crypto_trade_form.dart +357 -0
  69. package/lib/widgets/dividend_log_form.dart +151 -0
  70. package/lib/widgets/edit_transaction_dialog.dart +112 -0
  71. package/lib/widgets/expense_form.dart +238 -0
  72. package/lib/widgets/investment_form.dart +223 -0
  73. package/lib/widgets/rrsp_contribution_form.dart +157 -0
  74. package/lib/widgets/salary_form.dart +152 -0
  75. package/lib/widgets/trade_form.dart +374 -0
  76. package/lib/widgets/user_profile_avatar.dart +60 -0
  77. package/linux/CMakeLists.txt +128 -0
  78. package/linux/flutter/CMakeLists.txt +88 -0
  79. package/linux/flutter/generated_plugin_registrant.cc +11 -0
  80. package/linux/flutter/generated_plugin_registrant.h +15 -0
  81. package/linux/flutter/generated_plugins.cmake +23 -0
  82. package/linux/runner/CMakeLists.txt +26 -0
  83. package/linux/runner/main.cc +6 -0
  84. package/linux/runner/my_application.cc +130 -0
  85. package/linux/runner/my_application.h +18 -0
  86. package/macos/Flutter/Flutter-Debug.xcconfig +1 -0
  87. package/macos/Flutter/Flutter-Release.xcconfig +1 -0
  88. package/macos/Flutter/GeneratedPluginRegistrant.swift +10 -0
  89. package/macos/Runner/AppDelegate.swift +13 -0
  90. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  91. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  92. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  93. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  94. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  95. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  96. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  97. package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  98. package/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  99. package/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  100. package/macos/Runner/Configs/Debug.xcconfig +2 -0
  101. package/macos/Runner/Configs/Release.xcconfig +2 -0
  102. package/macos/Runner/Configs/Warnings.xcconfig +13 -0
  103. package/macos/Runner/DebugProfile.entitlements +12 -0
  104. package/macos/Runner/Info.plist +32 -0
  105. package/macos/Runner/MainFlutterWindow.swift +15 -0
  106. package/macos/Runner/Release.entitlements +8 -0
  107. package/macos/Runner.xcodeproj/project.pbxproj +705 -0
  108. package/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  109. package/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  110. package/macos/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  111. package/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  112. package/macos/RunnerTests/RunnerTests.swift +12 -0
  113. package/package.json +29 -0
  114. package/pubspec.yaml +94 -0
  115. package/test/widget_test.dart +30 -0
  116. package/web/favicon.png +0 -0
  117. package/web/icons/Icon-192.png +0 -0
  118. package/web/icons/Icon-512.png +0 -0
  119. package/web/icons/Icon-maskable-192.png +0 -0
  120. package/web/icons/Icon-maskable-512.png +0 -0
  121. package/web/index.html +38 -0
  122. package/web/manifest.json +35 -0
  123. package/windows/CMakeLists.txt +108 -0
  124. package/windows/flutter/CMakeLists.txt +109 -0
  125. package/windows/flutter/generated_plugin_registrant.cc +11 -0
  126. package/windows/flutter/generated_plugin_registrant.h +15 -0
  127. package/windows/flutter/generated_plugins.cmake +23 -0
  128. package/windows/runner/CMakeLists.txt +40 -0
  129. package/windows/runner/Runner.rc +121 -0
  130. package/windows/runner/flutter_window.cpp +71 -0
  131. package/windows/runner/flutter_window.h +33 -0
  132. package/windows/runner/main.cpp +43 -0
  133. package/windows/runner/resource.h +16 -0
  134. package/windows/runner/resources/app_icon.ico +0 -0
  135. package/windows/runner/runner.exe.manifest +14 -0
  136. package/windows/runner/utils.cpp +65 -0
  137. package/windows/runner/utils.h +19 -0
  138. package/windows/runner/win32_window.cpp +288 -0
  139. package/windows/runner/win32_window.h +102 -0
@@ -0,0 +1,619 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
12
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
15
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
16
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
25
+ remoteInfo = Runner;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXCopyFilesBuildPhase section */
30
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
31
+ isa = PBXCopyFilesBuildPhase;
32
+ buildActionMask = 2147483647;
33
+ dstPath = "";
34
+ dstSubfolderSpec = 10;
35
+ files = (
36
+ );
37
+ name = "Embed Frameworks";
38
+ runOnlyForDeploymentPostprocessing = 0;
39
+ };
40
+ /* End PBXCopyFilesBuildPhase section */
41
+
42
+ /* Begin PBXFileReference section */
43
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
44
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
45
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
46
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
48
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
49
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
50
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
51
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
52
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
53
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
54
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
55
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
56
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
57
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
58
+ /* End PBXFileReference section */
59
+
60
+ /* Begin PBXFrameworksBuildPhase section */
61
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ );
66
+ runOnlyForDeploymentPostprocessing = 0;
67
+ };
68
+ /* End PBXFrameworksBuildPhase section */
69
+
70
+ /* Begin PBXGroup section */
71
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
72
+ isa = PBXGroup;
73
+ children = (
74
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
75
+ );
76
+ path = RunnerTests;
77
+ sourceTree = "<group>";
78
+ };
79
+ 9740EEB11CF90186004384FC /* Flutter */ = {
80
+ isa = PBXGroup;
81
+ children = (
82
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
83
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
84
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
85
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
86
+ );
87
+ name = Flutter;
88
+ sourceTree = "<group>";
89
+ };
90
+ 97C146E51CF9000F007C117D = {
91
+ isa = PBXGroup;
92
+ children = (
93
+ 9740EEB11CF90186004384FC /* Flutter */,
94
+ 97C146F01CF9000F007C117D /* Runner */,
95
+ 97C146EF1CF9000F007C117D /* Products */,
96
+ 331C8082294A63A400263BE5 /* RunnerTests */,
97
+ );
98
+ sourceTree = "<group>";
99
+ };
100
+ 97C146EF1CF9000F007C117D /* Products */ = {
101
+ isa = PBXGroup;
102
+ children = (
103
+ 97C146EE1CF9000F007C117D /* Runner.app */,
104
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
105
+ );
106
+ name = Products;
107
+ sourceTree = "<group>";
108
+ };
109
+ 97C146F01CF9000F007C117D /* Runner */ = {
110
+ isa = PBXGroup;
111
+ children = (
112
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
113
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
114
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
115
+ 97C147021CF9000F007C117D /* Info.plist */,
116
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
117
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
118
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
119
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
120
+ );
121
+ path = Runner;
122
+ sourceTree = "<group>";
123
+ };
124
+ /* End PBXGroup section */
125
+
126
+ /* Begin PBXNativeTarget section */
127
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
128
+ isa = PBXNativeTarget;
129
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130
+ buildPhases = (
131
+ 331C807D294A63A400263BE5 /* Sources */,
132
+ 331C807F294A63A400263BE5 /* Resources */,
133
+ );
134
+ buildRules = (
135
+ );
136
+ dependencies = (
137
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
138
+ );
139
+ name = RunnerTests;
140
+ productName = RunnerTests;
141
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
142
+ productType = "com.apple.product-type.bundle.unit-test";
143
+ };
144
+ 97C146ED1CF9000F007C117D /* Runner */ = {
145
+ isa = PBXNativeTarget;
146
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
147
+ buildPhases = (
148
+ 9740EEB61CF901F6004384FC /* Run Script */,
149
+ 97C146EA1CF9000F007C117D /* Sources */,
150
+ 97C146EB1CF9000F007C117D /* Frameworks */,
151
+ 97C146EC1CF9000F007C117D /* Resources */,
152
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
153
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
154
+ );
155
+ buildRules = (
156
+ );
157
+ dependencies = (
158
+ );
159
+ name = Runner;
160
+ productName = Runner;
161
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
162
+ productType = "com.apple.product-type.application";
163
+ };
164
+ /* End PBXNativeTarget section */
165
+
166
+ /* Begin PBXProject section */
167
+ 97C146E61CF9000F007C117D /* Project object */ = {
168
+ isa = PBXProject;
169
+ attributes = {
170
+ BuildIndependentTargetsInParallel = YES;
171
+ LastUpgradeCheck = 1510;
172
+ ORGANIZATIONNAME = "";
173
+ TargetAttributes = {
174
+ 331C8080294A63A400263BE5 = {
175
+ CreatedOnToolsVersion = 14.0;
176
+ TestTargetID = 97C146ED1CF9000F007C117D;
177
+ };
178
+ 97C146ED1CF9000F007C117D = {
179
+ CreatedOnToolsVersion = 7.3.1;
180
+ LastSwiftMigration = 1100;
181
+ };
182
+ };
183
+ };
184
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
185
+ compatibilityVersion = "Xcode 9.3";
186
+ developmentRegion = en;
187
+ hasScannedForEncodings = 0;
188
+ knownRegions = (
189
+ en,
190
+ Base,
191
+ );
192
+ mainGroup = 97C146E51CF9000F007C117D;
193
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
194
+ projectDirPath = "";
195
+ projectRoot = "";
196
+ targets = (
197
+ 97C146ED1CF9000F007C117D /* Runner */,
198
+ 331C8080294A63A400263BE5 /* RunnerTests */,
199
+ );
200
+ };
201
+ /* End PBXProject section */
202
+
203
+ /* Begin PBXResourcesBuildPhase section */
204
+ 331C807F294A63A400263BE5 /* Resources */ = {
205
+ isa = PBXResourcesBuildPhase;
206
+ buildActionMask = 2147483647;
207
+ files = (
208
+ );
209
+ runOnlyForDeploymentPostprocessing = 0;
210
+ };
211
+ 97C146EC1CF9000F007C117D /* Resources */ = {
212
+ isa = PBXResourcesBuildPhase;
213
+ buildActionMask = 2147483647;
214
+ files = (
215
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
216
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
217
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
218
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
219
+ );
220
+ runOnlyForDeploymentPostprocessing = 0;
221
+ };
222
+ /* End PBXResourcesBuildPhase section */
223
+
224
+ /* Begin PBXShellScriptBuildPhase section */
225
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
226
+ isa = PBXShellScriptBuildPhase;
227
+ alwaysOutOfDate = 1;
228
+ buildActionMask = 2147483647;
229
+ files = (
230
+ );
231
+ inputPaths = (
232
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
233
+ );
234
+ name = "Thin Binary";
235
+ outputPaths = (
236
+ );
237
+ runOnlyForDeploymentPostprocessing = 0;
238
+ shellPath = /bin/sh;
239
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
240
+ };
241
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
242
+ isa = PBXShellScriptBuildPhase;
243
+ alwaysOutOfDate = 1;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ );
247
+ inputPaths = (
248
+ );
249
+ name = "Run Script";
250
+ outputPaths = (
251
+ );
252
+ runOnlyForDeploymentPostprocessing = 0;
253
+ shellPath = /bin/sh;
254
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
255
+ };
256
+ /* End PBXShellScriptBuildPhase section */
257
+
258
+ /* Begin PBXSourcesBuildPhase section */
259
+ 331C807D294A63A400263BE5 /* Sources */ = {
260
+ isa = PBXSourcesBuildPhase;
261
+ buildActionMask = 2147483647;
262
+ files = (
263
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
264
+ );
265
+ runOnlyForDeploymentPostprocessing = 0;
266
+ };
267
+ 97C146EA1CF9000F007C117D /* Sources */ = {
268
+ isa = PBXSourcesBuildPhase;
269
+ buildActionMask = 2147483647;
270
+ files = (
271
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
272
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
273
+ );
274
+ runOnlyForDeploymentPostprocessing = 0;
275
+ };
276
+ /* End PBXSourcesBuildPhase section */
277
+
278
+ /* Begin PBXTargetDependency section */
279
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
280
+ isa = PBXTargetDependency;
281
+ target = 97C146ED1CF9000F007C117D /* Runner */;
282
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
283
+ };
284
+ /* End PBXTargetDependency section */
285
+
286
+ /* Begin PBXVariantGroup section */
287
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
288
+ isa = PBXVariantGroup;
289
+ children = (
290
+ 97C146FB1CF9000F007C117D /* Base */,
291
+ );
292
+ name = Main.storyboard;
293
+ sourceTree = "<group>";
294
+ };
295
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
296
+ isa = PBXVariantGroup;
297
+ children = (
298
+ 97C147001CF9000F007C117D /* Base */,
299
+ );
300
+ name = LaunchScreen.storyboard;
301
+ sourceTree = "<group>";
302
+ };
303
+ /* End PBXVariantGroup section */
304
+
305
+ /* Begin XCBuildConfiguration section */
306
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
307
+ isa = XCBuildConfiguration;
308
+ buildSettings = {
309
+ ALWAYS_SEARCH_USER_PATHS = NO;
310
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
311
+ CLANG_ANALYZER_NONNULL = YES;
312
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
313
+ CLANG_CXX_LIBRARY = "libc++";
314
+ CLANG_ENABLE_MODULES = YES;
315
+ CLANG_ENABLE_OBJC_ARC = YES;
316
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
317
+ CLANG_WARN_BOOL_CONVERSION = YES;
318
+ CLANG_WARN_COMMA = YES;
319
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
320
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
321
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
322
+ CLANG_WARN_EMPTY_BODY = YES;
323
+ CLANG_WARN_ENUM_CONVERSION = YES;
324
+ CLANG_WARN_INFINITE_RECURSION = YES;
325
+ CLANG_WARN_INT_CONVERSION = YES;
326
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
327
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
328
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
329
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
330
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
331
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
332
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
333
+ CLANG_WARN_UNREACHABLE_CODE = YES;
334
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
335
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
336
+ COPY_PHASE_STRIP = NO;
337
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
338
+ ENABLE_NS_ASSERTIONS = NO;
339
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
340
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
341
+ GCC_C_LANGUAGE_STANDARD = gnu99;
342
+ GCC_NO_COMMON_BLOCKS = YES;
343
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
344
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
345
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
346
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
347
+ GCC_WARN_UNUSED_FUNCTION = YES;
348
+ GCC_WARN_UNUSED_VARIABLE = YES;
349
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
350
+ MTL_ENABLE_DEBUG_INFO = NO;
351
+ SDKROOT = iphoneos;
352
+ SUPPORTED_PLATFORMS = iphoneos;
353
+ TARGETED_DEVICE_FAMILY = "1,2";
354
+ VALIDATE_PRODUCT = YES;
355
+ };
356
+ name = Profile;
357
+ };
358
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
359
+ isa = XCBuildConfiguration;
360
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
361
+ buildSettings = {
362
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
363
+ CLANG_ENABLE_MODULES = YES;
364
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
365
+ DEVELOPMENT_TEAM = 6JY3HHJ3DW;
366
+ ENABLE_BITCODE = NO;
367
+ INFOPLIST_FILE = Runner/Info.plist;
368
+ LD_RUNPATH_SEARCH_PATHS = (
369
+ "$(inherited)",
370
+ "@executable_path/Frameworks",
371
+ );
372
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi;
373
+ PRODUCT_NAME = "$(TARGET_NAME)";
374
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
375
+ SWIFT_VERSION = 5.0;
376
+ VERSIONING_SYSTEM = "apple-generic";
377
+ };
378
+ name = Profile;
379
+ };
380
+ 331C8088294A63A400263BE5 /* Debug */ = {
381
+ isa = XCBuildConfiguration;
382
+ buildSettings = {
383
+ BUNDLE_LOADER = "$(TEST_HOST)";
384
+ CODE_SIGN_STYLE = Automatic;
385
+ CURRENT_PROJECT_VERSION = 1;
386
+ GENERATE_INFOPLIST_FILE = YES;
387
+ MARKETING_VERSION = 1.0;
388
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi.RunnerTests;
389
+ PRODUCT_NAME = "$(TARGET_NAME)";
390
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
391
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
392
+ SWIFT_VERSION = 5.0;
393
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
394
+ };
395
+ name = Debug;
396
+ };
397
+ 331C8089294A63A400263BE5 /* Release */ = {
398
+ isa = XCBuildConfiguration;
399
+ buildSettings = {
400
+ BUNDLE_LOADER = "$(TEST_HOST)";
401
+ CODE_SIGN_STYLE = Automatic;
402
+ CURRENT_PROJECT_VERSION = 1;
403
+ GENERATE_INFOPLIST_FILE = YES;
404
+ MARKETING_VERSION = 1.0;
405
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi.RunnerTests;
406
+ PRODUCT_NAME = "$(TARGET_NAME)";
407
+ SWIFT_VERSION = 5.0;
408
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
409
+ };
410
+ name = Release;
411
+ };
412
+ 331C808A294A63A400263BE5 /* Profile */ = {
413
+ isa = XCBuildConfiguration;
414
+ buildSettings = {
415
+ BUNDLE_LOADER = "$(TEST_HOST)";
416
+ CODE_SIGN_STYLE = Automatic;
417
+ CURRENT_PROJECT_VERSION = 1;
418
+ GENERATE_INFOPLIST_FILE = YES;
419
+ MARKETING_VERSION = 1.0;
420
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi.RunnerTests;
421
+ PRODUCT_NAME = "$(TARGET_NAME)";
422
+ SWIFT_VERSION = 5.0;
423
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
424
+ };
425
+ name = Profile;
426
+ };
427
+ 97C147031CF9000F007C117D /* Debug */ = {
428
+ isa = XCBuildConfiguration;
429
+ buildSettings = {
430
+ ALWAYS_SEARCH_USER_PATHS = NO;
431
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
432
+ CLANG_ANALYZER_NONNULL = YES;
433
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
434
+ CLANG_CXX_LIBRARY = "libc++";
435
+ CLANG_ENABLE_MODULES = YES;
436
+ CLANG_ENABLE_OBJC_ARC = YES;
437
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
438
+ CLANG_WARN_BOOL_CONVERSION = YES;
439
+ CLANG_WARN_COMMA = YES;
440
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
441
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
442
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
443
+ CLANG_WARN_EMPTY_BODY = YES;
444
+ CLANG_WARN_ENUM_CONVERSION = YES;
445
+ CLANG_WARN_INFINITE_RECURSION = YES;
446
+ CLANG_WARN_INT_CONVERSION = YES;
447
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
448
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
449
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
450
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
451
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
452
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
453
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
454
+ CLANG_WARN_UNREACHABLE_CODE = YES;
455
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
456
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
457
+ COPY_PHASE_STRIP = NO;
458
+ DEBUG_INFORMATION_FORMAT = dwarf;
459
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
460
+ ENABLE_TESTABILITY = YES;
461
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
462
+ GCC_C_LANGUAGE_STANDARD = gnu99;
463
+ GCC_DYNAMIC_NO_PIC = NO;
464
+ GCC_NO_COMMON_BLOCKS = YES;
465
+ GCC_OPTIMIZATION_LEVEL = 0;
466
+ GCC_PREPROCESSOR_DEFINITIONS = (
467
+ "DEBUG=1",
468
+ "$(inherited)",
469
+ );
470
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
471
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
472
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
473
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
474
+ GCC_WARN_UNUSED_FUNCTION = YES;
475
+ GCC_WARN_UNUSED_VARIABLE = YES;
476
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
477
+ MTL_ENABLE_DEBUG_INFO = YES;
478
+ ONLY_ACTIVE_ARCH = YES;
479
+ SDKROOT = iphoneos;
480
+ TARGETED_DEVICE_FAMILY = "1,2";
481
+ };
482
+ name = Debug;
483
+ };
484
+ 97C147041CF9000F007C117D /* Release */ = {
485
+ isa = XCBuildConfiguration;
486
+ buildSettings = {
487
+ ALWAYS_SEARCH_USER_PATHS = NO;
488
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
489
+ CLANG_ANALYZER_NONNULL = YES;
490
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
491
+ CLANG_CXX_LIBRARY = "libc++";
492
+ CLANG_ENABLE_MODULES = YES;
493
+ CLANG_ENABLE_OBJC_ARC = YES;
494
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
495
+ CLANG_WARN_BOOL_CONVERSION = YES;
496
+ CLANG_WARN_COMMA = YES;
497
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
498
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
499
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
500
+ CLANG_WARN_EMPTY_BODY = YES;
501
+ CLANG_WARN_ENUM_CONVERSION = YES;
502
+ CLANG_WARN_INFINITE_RECURSION = YES;
503
+ CLANG_WARN_INT_CONVERSION = YES;
504
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
505
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
506
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
507
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
508
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
509
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
510
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
511
+ CLANG_WARN_UNREACHABLE_CODE = YES;
512
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
513
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
514
+ COPY_PHASE_STRIP = NO;
515
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
516
+ ENABLE_NS_ASSERTIONS = NO;
517
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
518
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
519
+ GCC_C_LANGUAGE_STANDARD = gnu99;
520
+ GCC_NO_COMMON_BLOCKS = YES;
521
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
522
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
523
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
524
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
525
+ GCC_WARN_UNUSED_FUNCTION = YES;
526
+ GCC_WARN_UNUSED_VARIABLE = YES;
527
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
528
+ MTL_ENABLE_DEBUG_INFO = NO;
529
+ SDKROOT = iphoneos;
530
+ SUPPORTED_PLATFORMS = iphoneos;
531
+ SWIFT_COMPILATION_MODE = wholemodule;
532
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
533
+ TARGETED_DEVICE_FAMILY = "1,2";
534
+ VALIDATE_PRODUCT = YES;
535
+ };
536
+ name = Release;
537
+ };
538
+ 97C147061CF9000F007C117D /* Debug */ = {
539
+ isa = XCBuildConfiguration;
540
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
541
+ buildSettings = {
542
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
543
+ CLANG_ENABLE_MODULES = YES;
544
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
545
+ DEVELOPMENT_TEAM = 6JY3HHJ3DW;
546
+ ENABLE_BITCODE = NO;
547
+ INFOPLIST_FILE = Runner/Info.plist;
548
+ LD_RUNPATH_SEARCH_PATHS = (
549
+ "$(inherited)",
550
+ "@executable_path/Frameworks",
551
+ );
552
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi;
553
+ PRODUCT_NAME = "$(TARGET_NAME)";
554
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
555
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
556
+ SWIFT_VERSION = 5.0;
557
+ VERSIONING_SYSTEM = "apple-generic";
558
+ };
559
+ name = Debug;
560
+ };
561
+ 97C147071CF9000F007C117D /* Release */ = {
562
+ isa = XCBuildConfiguration;
563
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
564
+ buildSettings = {
565
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
566
+ CLANG_ENABLE_MODULES = YES;
567
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
568
+ DEVELOPMENT_TEAM = 6JY3HHJ3DW;
569
+ ENABLE_BITCODE = NO;
570
+ INFOPLIST_FILE = Runner/Info.plist;
571
+ LD_RUNPATH_SEARCH_PATHS = (
572
+ "$(inherited)",
573
+ "@executable_path/Frameworks",
574
+ );
575
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi;
576
+ PRODUCT_NAME = "$(TARGET_NAME)";
577
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
578
+ SWIFT_VERSION = 5.0;
579
+ VERSIONING_SYSTEM = "apple-generic";
580
+ };
581
+ name = Release;
582
+ };
583
+ /* End XCBuildConfiguration section */
584
+
585
+ /* Begin XCConfigurationList section */
586
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
587
+ isa = XCConfigurationList;
588
+ buildConfigurations = (
589
+ 331C8088294A63A400263BE5 /* Debug */,
590
+ 331C8089294A63A400263BE5 /* Release */,
591
+ 331C808A294A63A400263BE5 /* Profile */,
592
+ );
593
+ defaultConfigurationIsVisible = 0;
594
+ defaultConfigurationName = Release;
595
+ };
596
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
597
+ isa = XCConfigurationList;
598
+ buildConfigurations = (
599
+ 97C147031CF9000F007C117D /* Debug */,
600
+ 97C147041CF9000F007C117D /* Release */,
601
+ 249021D3217E4FDB00AE95B9 /* Profile */,
602
+ );
603
+ defaultConfigurationIsVisible = 0;
604
+ defaultConfigurationName = Release;
605
+ };
606
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
607
+ isa = XCConfigurationList;
608
+ buildConfigurations = (
609
+ 97C147061CF9000F007C117D /* Debug */,
610
+ 97C147071CF9000F007C117D /* Release */,
611
+ 249021D4217E4FDB00AE95B9 /* Profile */,
612
+ );
613
+ defaultConfigurationIsVisible = 0;
614
+ defaultConfigurationName = Release;
615
+ };
616
+ /* End XCConfigurationList section */
617
+ };
618
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
619
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>PreviewsEnabled</key>
6
+ <false/>
7
+ </dict>
8
+ </plist>