@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.
- package/.circleci/config.yml +23 -0
- package/.metadata +45 -0
- package/CHANGELOG.md +26 -0
- package/README.md +16 -0
- package/analysis_options.yaml +28 -0
- package/android/app/build.gradle.kts +44 -0
- package/android/app/src/debug/AndroidManifest.xml +7 -0
- package/android/app/src/main/AndroidManifest.xml +45 -0
- package/android/app/src/main/kotlin/com/example/personal_finance_frontend_core_ui/MainActivity.kt +5 -0
- package/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/android/app/src/main/res/values/styles.xml +18 -0
- package/android/app/src/main/res/values-night/styles.xml +18 -0
- package/android/app/src/profile/AndroidManifest.xml +7 -0
- package/android/build.gradle.kts +21 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradle.properties +3 -0
- package/android/settings.gradle.kts +25 -0
- package/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/ios/Flutter/Debug.xcconfig +1 -0
- package/ios/Flutter/Release.xcconfig +1 -0
- package/ios/Runner/AppDelegate.swift +13 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/ios/Runner/Info.plist +49 -0
- package/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/ios/Runner.xcodeproj/project.pbxproj +619 -0
- package/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
- package/ios/Runner.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/ios/RunnerTests/RunnerTests.swift +12 -0
- package/lib/main.dart +122 -0
- package/lib/personal_finance_frontend_core_ui.dart +1 -0
- package/lib/utils/currency_input_formatter.dart +49 -0
- package/lib/utils/currency_utils.dart +14 -0
- package/lib/utils/theme_notifier.dart +33 -0
- package/lib/widgets/app_widgets.dart +405 -0
- package/lib/widgets/crypto_trade_form.dart +357 -0
- package/lib/widgets/dividend_log_form.dart +151 -0
- package/lib/widgets/edit_transaction_dialog.dart +112 -0
- package/lib/widgets/expense_form.dart +238 -0
- package/lib/widgets/investment_form.dart +223 -0
- package/lib/widgets/rrsp_contribution_form.dart +157 -0
- package/lib/widgets/salary_form.dart +152 -0
- package/lib/widgets/trade_form.dart +374 -0
- package/lib/widgets/user_profile_avatar.dart +60 -0
- package/linux/CMakeLists.txt +128 -0
- package/linux/flutter/CMakeLists.txt +88 -0
- package/linux/flutter/generated_plugin_registrant.cc +11 -0
- package/linux/flutter/generated_plugin_registrant.h +15 -0
- package/linux/flutter/generated_plugins.cmake +23 -0
- package/linux/runner/CMakeLists.txt +26 -0
- package/linux/runner/main.cc +6 -0
- package/linux/runner/my_application.cc +130 -0
- package/linux/runner/my_application.h +18 -0
- package/macos/Flutter/Flutter-Debug.xcconfig +1 -0
- package/macos/Flutter/Flutter-Release.xcconfig +1 -0
- package/macos/Flutter/GeneratedPluginRegistrant.swift +10 -0
- package/macos/Runner/AppDelegate.swift +13 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/macos/Runner/Configs/Release.xcconfig +2 -0
- package/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/macos/Runner/DebugProfile.entitlements +12 -0
- package/macos/Runner/Info.plist +32 -0
- package/macos/Runner/MainFlutterWindow.swift +15 -0
- package/macos/Runner/Release.entitlements +8 -0
- package/macos/Runner.xcodeproj/project.pbxproj +705 -0
- package/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
- package/macos/Runner.xcworkspace/contents.xcworkspacedata +7 -0
- package/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/macos/RunnerTests/RunnerTests.swift +12 -0
- package/package.json +29 -0
- package/pubspec.yaml +94 -0
- package/test/widget_test.dart +30 -0
- package/web/favicon.png +0 -0
- package/web/icons/Icon-192.png +0 -0
- package/web/icons/Icon-512.png +0 -0
- package/web/icons/Icon-maskable-192.png +0 -0
- package/web/icons/Icon-maskable-512.png +0 -0
- package/web/index.html +38 -0
- package/web/manifest.json +35 -0
- package/windows/CMakeLists.txt +108 -0
- package/windows/flutter/CMakeLists.txt +109 -0
- package/windows/flutter/generated_plugin_registrant.cc +11 -0
- package/windows/flutter/generated_plugin_registrant.h +15 -0
- package/windows/flutter/generated_plugins.cmake +23 -0
- package/windows/runner/CMakeLists.txt +40 -0
- package/windows/runner/Runner.rc +121 -0
- package/windows/runner/flutter_window.cpp +71 -0
- package/windows/runner/flutter_window.h +33 -0
- package/windows/runner/main.cpp +43 -0
- package/windows/runner/resource.h +16 -0
- package/windows/runner/resources/app_icon.ico +0 -0
- package/windows/runner/runner.exe.manifest +14 -0
- package/windows/runner/utils.cpp +65 -0
- package/windows/runner/utils.h +19 -0
- package/windows/runner/win32_window.cpp +288 -0
- package/windows/runner/win32_window.h +102 -0
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXAggregateTarget section */
|
|
10
|
+
33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
|
|
11
|
+
isa = PBXAggregateTarget;
|
|
12
|
+
buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
|
|
13
|
+
buildPhases = (
|
|
14
|
+
33CC111E2044C6BF0003C045 /* ShellScript */,
|
|
15
|
+
);
|
|
16
|
+
dependencies = (
|
|
17
|
+
);
|
|
18
|
+
name = "Flutter Assemble";
|
|
19
|
+
productName = FLX;
|
|
20
|
+
};
|
|
21
|
+
/* End PBXAggregateTarget section */
|
|
22
|
+
|
|
23
|
+
/* Begin PBXBuildFile section */
|
|
24
|
+
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
|
|
25
|
+
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
|
|
26
|
+
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
|
|
27
|
+
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
|
|
28
|
+
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
|
|
29
|
+
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
|
|
30
|
+
/* End PBXBuildFile section */
|
|
31
|
+
|
|
32
|
+
/* Begin PBXContainerItemProxy section */
|
|
33
|
+
331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = {
|
|
34
|
+
isa = PBXContainerItemProxy;
|
|
35
|
+
containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
|
|
36
|
+
proxyType = 1;
|
|
37
|
+
remoteGlobalIDString = 33CC10EC2044A3C60003C045;
|
|
38
|
+
remoteInfo = Runner;
|
|
39
|
+
};
|
|
40
|
+
33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
|
|
41
|
+
isa = PBXContainerItemProxy;
|
|
42
|
+
containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
|
|
43
|
+
proxyType = 1;
|
|
44
|
+
remoteGlobalIDString = 33CC111A2044C6BA0003C045;
|
|
45
|
+
remoteInfo = FLX;
|
|
46
|
+
};
|
|
47
|
+
/* End PBXContainerItemProxy section */
|
|
48
|
+
|
|
49
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
50
|
+
33CC110E2044A8840003C045 /* Bundle Framework */ = {
|
|
51
|
+
isa = PBXCopyFilesBuildPhase;
|
|
52
|
+
buildActionMask = 2147483647;
|
|
53
|
+
dstPath = "";
|
|
54
|
+
dstSubfolderSpec = 10;
|
|
55
|
+
files = (
|
|
56
|
+
);
|
|
57
|
+
name = "Bundle Framework";
|
|
58
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
59
|
+
};
|
|
60
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
61
|
+
|
|
62
|
+
/* Begin PBXFileReference section */
|
|
63
|
+
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
64
|
+
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
|
65
|
+
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
|
|
66
|
+
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
|
|
67
|
+
33CC10ED2044A3C60003C045 /* personal_finance_frontend_core_ui.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "personal_finance_frontend_core_ui.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
68
|
+
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
69
|
+
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
|
|
70
|
+
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
|
71
|
+
33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = "<group>"; };
|
|
72
|
+
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = "<group>"; };
|
|
73
|
+
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = "<group>"; };
|
|
74
|
+
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = "<group>"; };
|
|
75
|
+
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = "<group>"; };
|
|
76
|
+
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
|
|
77
|
+
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
|
|
78
|
+
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
|
|
79
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
|
|
80
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
|
|
81
|
+
/* End PBXFileReference section */
|
|
82
|
+
|
|
83
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
84
|
+
331C80D2294CF70F00263BE5 /* Frameworks */ = {
|
|
85
|
+
isa = PBXFrameworksBuildPhase;
|
|
86
|
+
buildActionMask = 2147483647;
|
|
87
|
+
files = (
|
|
88
|
+
);
|
|
89
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
90
|
+
};
|
|
91
|
+
33CC10EA2044A3C60003C045 /* Frameworks */ = {
|
|
92
|
+
isa = PBXFrameworksBuildPhase;
|
|
93
|
+
buildActionMask = 2147483647;
|
|
94
|
+
files = (
|
|
95
|
+
);
|
|
96
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
97
|
+
};
|
|
98
|
+
/* End PBXFrameworksBuildPhase section */
|
|
99
|
+
|
|
100
|
+
/* Begin PBXGroup section */
|
|
101
|
+
331C80D6294CF71000263BE5 /* RunnerTests */ = {
|
|
102
|
+
isa = PBXGroup;
|
|
103
|
+
children = (
|
|
104
|
+
331C80D7294CF71000263BE5 /* RunnerTests.swift */,
|
|
105
|
+
);
|
|
106
|
+
path = RunnerTests;
|
|
107
|
+
sourceTree = "<group>";
|
|
108
|
+
};
|
|
109
|
+
33BA886A226E78AF003329D5 /* Configs */ = {
|
|
110
|
+
isa = PBXGroup;
|
|
111
|
+
children = (
|
|
112
|
+
33E5194F232828860026EE4D /* AppInfo.xcconfig */,
|
|
113
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
|
114
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
|
115
|
+
333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
|
|
116
|
+
);
|
|
117
|
+
path = Configs;
|
|
118
|
+
sourceTree = "<group>";
|
|
119
|
+
};
|
|
120
|
+
33CC10E42044A3C60003C045 = {
|
|
121
|
+
isa = PBXGroup;
|
|
122
|
+
children = (
|
|
123
|
+
33FAB671232836740065AC1E /* Runner */,
|
|
124
|
+
33CEB47122A05771004F2AC0 /* Flutter */,
|
|
125
|
+
331C80D6294CF71000263BE5 /* RunnerTests */,
|
|
126
|
+
33CC10EE2044A3C60003C045 /* Products */,
|
|
127
|
+
D73912EC22F37F3D000D13A0 /* Frameworks */,
|
|
128
|
+
);
|
|
129
|
+
sourceTree = "<group>";
|
|
130
|
+
};
|
|
131
|
+
33CC10EE2044A3C60003C045 /* Products */ = {
|
|
132
|
+
isa = PBXGroup;
|
|
133
|
+
children = (
|
|
134
|
+
33CC10ED2044A3C60003C045 /* personal_finance_frontend_core_ui.app */,
|
|
135
|
+
331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
|
|
136
|
+
);
|
|
137
|
+
name = Products;
|
|
138
|
+
sourceTree = "<group>";
|
|
139
|
+
};
|
|
140
|
+
33CC11242044D66E0003C045 /* Resources */ = {
|
|
141
|
+
isa = PBXGroup;
|
|
142
|
+
children = (
|
|
143
|
+
33CC10F22044A3C60003C045 /* Assets.xcassets */,
|
|
144
|
+
33CC10F42044A3C60003C045 /* MainMenu.xib */,
|
|
145
|
+
33CC10F72044A3C60003C045 /* Info.plist */,
|
|
146
|
+
);
|
|
147
|
+
name = Resources;
|
|
148
|
+
path = ..;
|
|
149
|
+
sourceTree = "<group>";
|
|
150
|
+
};
|
|
151
|
+
33CEB47122A05771004F2AC0 /* Flutter */ = {
|
|
152
|
+
isa = PBXGroup;
|
|
153
|
+
children = (
|
|
154
|
+
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
|
|
155
|
+
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
|
|
156
|
+
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
|
|
157
|
+
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
|
|
158
|
+
);
|
|
159
|
+
path = Flutter;
|
|
160
|
+
sourceTree = "<group>";
|
|
161
|
+
};
|
|
162
|
+
33FAB671232836740065AC1E /* Runner */ = {
|
|
163
|
+
isa = PBXGroup;
|
|
164
|
+
children = (
|
|
165
|
+
33CC10F02044A3C60003C045 /* AppDelegate.swift */,
|
|
166
|
+
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
|
|
167
|
+
33E51913231747F40026EE4D /* DebugProfile.entitlements */,
|
|
168
|
+
33E51914231749380026EE4D /* Release.entitlements */,
|
|
169
|
+
33CC11242044D66E0003C045 /* Resources */,
|
|
170
|
+
33BA886A226E78AF003329D5 /* Configs */,
|
|
171
|
+
);
|
|
172
|
+
path = Runner;
|
|
173
|
+
sourceTree = "<group>";
|
|
174
|
+
};
|
|
175
|
+
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
|
|
176
|
+
isa = PBXGroup;
|
|
177
|
+
children = (
|
|
178
|
+
);
|
|
179
|
+
name = Frameworks;
|
|
180
|
+
sourceTree = "<group>";
|
|
181
|
+
};
|
|
182
|
+
/* End PBXGroup section */
|
|
183
|
+
|
|
184
|
+
/* Begin PBXNativeTarget section */
|
|
185
|
+
331C80D4294CF70F00263BE5 /* RunnerTests */ = {
|
|
186
|
+
isa = PBXNativeTarget;
|
|
187
|
+
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
|
|
188
|
+
buildPhases = (
|
|
189
|
+
331C80D1294CF70F00263BE5 /* Sources */,
|
|
190
|
+
331C80D2294CF70F00263BE5 /* Frameworks */,
|
|
191
|
+
331C80D3294CF70F00263BE5 /* Resources */,
|
|
192
|
+
);
|
|
193
|
+
buildRules = (
|
|
194
|
+
);
|
|
195
|
+
dependencies = (
|
|
196
|
+
331C80DA294CF71000263BE5 /* PBXTargetDependency */,
|
|
197
|
+
);
|
|
198
|
+
name = RunnerTests;
|
|
199
|
+
productName = RunnerTests;
|
|
200
|
+
productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */;
|
|
201
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
202
|
+
};
|
|
203
|
+
33CC10EC2044A3C60003C045 /* Runner */ = {
|
|
204
|
+
isa = PBXNativeTarget;
|
|
205
|
+
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
|
|
206
|
+
buildPhases = (
|
|
207
|
+
33CC10E92044A3C60003C045 /* Sources */,
|
|
208
|
+
33CC10EA2044A3C60003C045 /* Frameworks */,
|
|
209
|
+
33CC10EB2044A3C60003C045 /* Resources */,
|
|
210
|
+
33CC110E2044A8840003C045 /* Bundle Framework */,
|
|
211
|
+
3399D490228B24CF009A79C7 /* ShellScript */,
|
|
212
|
+
);
|
|
213
|
+
buildRules = (
|
|
214
|
+
);
|
|
215
|
+
dependencies = (
|
|
216
|
+
33CC11202044C79F0003C045 /* PBXTargetDependency */,
|
|
217
|
+
);
|
|
218
|
+
name = Runner;
|
|
219
|
+
productName = Runner;
|
|
220
|
+
productReference = 33CC10ED2044A3C60003C045 /* personal_finance_frontend_core_ui.app */;
|
|
221
|
+
productType = "com.apple.product-type.application";
|
|
222
|
+
};
|
|
223
|
+
/* End PBXNativeTarget section */
|
|
224
|
+
|
|
225
|
+
/* Begin PBXProject section */
|
|
226
|
+
33CC10E52044A3C60003C045 /* Project object */ = {
|
|
227
|
+
isa = PBXProject;
|
|
228
|
+
attributes = {
|
|
229
|
+
BuildIndependentTargetsInParallel = YES;
|
|
230
|
+
LastSwiftUpdateCheck = 0920;
|
|
231
|
+
LastUpgradeCheck = 1510;
|
|
232
|
+
ORGANIZATIONNAME = "";
|
|
233
|
+
TargetAttributes = {
|
|
234
|
+
331C80D4294CF70F00263BE5 = {
|
|
235
|
+
CreatedOnToolsVersion = 14.0;
|
|
236
|
+
TestTargetID = 33CC10EC2044A3C60003C045;
|
|
237
|
+
};
|
|
238
|
+
33CC10EC2044A3C60003C045 = {
|
|
239
|
+
CreatedOnToolsVersion = 9.2;
|
|
240
|
+
LastSwiftMigration = 1100;
|
|
241
|
+
ProvisioningStyle = Automatic;
|
|
242
|
+
SystemCapabilities = {
|
|
243
|
+
com.apple.Sandbox = {
|
|
244
|
+
enabled = 1;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
33CC111A2044C6BA0003C045 = {
|
|
249
|
+
CreatedOnToolsVersion = 9.2;
|
|
250
|
+
ProvisioningStyle = Manual;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
|
|
255
|
+
compatibilityVersion = "Xcode 9.3";
|
|
256
|
+
developmentRegion = en;
|
|
257
|
+
hasScannedForEncodings = 0;
|
|
258
|
+
knownRegions = (
|
|
259
|
+
en,
|
|
260
|
+
Base,
|
|
261
|
+
);
|
|
262
|
+
mainGroup = 33CC10E42044A3C60003C045;
|
|
263
|
+
productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
|
|
264
|
+
projectDirPath = "";
|
|
265
|
+
projectRoot = "";
|
|
266
|
+
targets = (
|
|
267
|
+
33CC10EC2044A3C60003C045 /* Runner */,
|
|
268
|
+
331C80D4294CF70F00263BE5 /* RunnerTests */,
|
|
269
|
+
33CC111A2044C6BA0003C045 /* Flutter Assemble */,
|
|
270
|
+
);
|
|
271
|
+
};
|
|
272
|
+
/* End PBXProject section */
|
|
273
|
+
|
|
274
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
275
|
+
331C80D3294CF70F00263BE5 /* Resources */ = {
|
|
276
|
+
isa = PBXResourcesBuildPhase;
|
|
277
|
+
buildActionMask = 2147483647;
|
|
278
|
+
files = (
|
|
279
|
+
);
|
|
280
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
281
|
+
};
|
|
282
|
+
33CC10EB2044A3C60003C045 /* Resources */ = {
|
|
283
|
+
isa = PBXResourcesBuildPhase;
|
|
284
|
+
buildActionMask = 2147483647;
|
|
285
|
+
files = (
|
|
286
|
+
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
|
|
287
|
+
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
|
|
288
|
+
);
|
|
289
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
290
|
+
};
|
|
291
|
+
/* End PBXResourcesBuildPhase section */
|
|
292
|
+
|
|
293
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
294
|
+
3399D490228B24CF009A79C7 /* ShellScript */ = {
|
|
295
|
+
isa = PBXShellScriptBuildPhase;
|
|
296
|
+
alwaysOutOfDate = 1;
|
|
297
|
+
buildActionMask = 2147483647;
|
|
298
|
+
files = (
|
|
299
|
+
);
|
|
300
|
+
inputFileListPaths = (
|
|
301
|
+
);
|
|
302
|
+
inputPaths = (
|
|
303
|
+
);
|
|
304
|
+
outputFileListPaths = (
|
|
305
|
+
);
|
|
306
|
+
outputPaths = (
|
|
307
|
+
);
|
|
308
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
309
|
+
shellPath = /bin/sh;
|
|
310
|
+
shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
|
|
311
|
+
};
|
|
312
|
+
33CC111E2044C6BF0003C045 /* ShellScript */ = {
|
|
313
|
+
isa = PBXShellScriptBuildPhase;
|
|
314
|
+
buildActionMask = 2147483647;
|
|
315
|
+
files = (
|
|
316
|
+
);
|
|
317
|
+
inputFileListPaths = (
|
|
318
|
+
Flutter/ephemeral/FlutterInputs.xcfilelist,
|
|
319
|
+
);
|
|
320
|
+
inputPaths = (
|
|
321
|
+
Flutter/ephemeral/tripwire,
|
|
322
|
+
);
|
|
323
|
+
outputFileListPaths = (
|
|
324
|
+
Flutter/ephemeral/FlutterOutputs.xcfilelist,
|
|
325
|
+
);
|
|
326
|
+
outputPaths = (
|
|
327
|
+
);
|
|
328
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
329
|
+
shellPath = /bin/sh;
|
|
330
|
+
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
|
|
331
|
+
};
|
|
332
|
+
/* End PBXShellScriptBuildPhase section */
|
|
333
|
+
|
|
334
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
335
|
+
331C80D1294CF70F00263BE5 /* Sources */ = {
|
|
336
|
+
isa = PBXSourcesBuildPhase;
|
|
337
|
+
buildActionMask = 2147483647;
|
|
338
|
+
files = (
|
|
339
|
+
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */,
|
|
340
|
+
);
|
|
341
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
342
|
+
};
|
|
343
|
+
33CC10E92044A3C60003C045 /* Sources */ = {
|
|
344
|
+
isa = PBXSourcesBuildPhase;
|
|
345
|
+
buildActionMask = 2147483647;
|
|
346
|
+
files = (
|
|
347
|
+
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
|
|
348
|
+
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
|
|
349
|
+
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
|
|
350
|
+
);
|
|
351
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
352
|
+
};
|
|
353
|
+
/* End PBXSourcesBuildPhase section */
|
|
354
|
+
|
|
355
|
+
/* Begin PBXTargetDependency section */
|
|
356
|
+
331C80DA294CF71000263BE5 /* PBXTargetDependency */ = {
|
|
357
|
+
isa = PBXTargetDependency;
|
|
358
|
+
target = 33CC10EC2044A3C60003C045 /* Runner */;
|
|
359
|
+
targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */;
|
|
360
|
+
};
|
|
361
|
+
33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
|
|
362
|
+
isa = PBXTargetDependency;
|
|
363
|
+
target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
|
|
364
|
+
targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
|
|
365
|
+
};
|
|
366
|
+
/* End PBXTargetDependency section */
|
|
367
|
+
|
|
368
|
+
/* Begin PBXVariantGroup section */
|
|
369
|
+
33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
|
|
370
|
+
isa = PBXVariantGroup;
|
|
371
|
+
children = (
|
|
372
|
+
33CC10F52044A3C60003C045 /* Base */,
|
|
373
|
+
);
|
|
374
|
+
name = MainMenu.xib;
|
|
375
|
+
path = Runner;
|
|
376
|
+
sourceTree = "<group>";
|
|
377
|
+
};
|
|
378
|
+
/* End PBXVariantGroup section */
|
|
379
|
+
|
|
380
|
+
/* Begin XCBuildConfiguration section */
|
|
381
|
+
331C80DB294CF71000263BE5 /* Debug */ = {
|
|
382
|
+
isa = XCBuildConfiguration;
|
|
383
|
+
buildSettings = {
|
|
384
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
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_VERSION = 5.0;
|
|
391
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/personal_finance_frontend_core_ui.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/personal_finance_frontend_core_ui";
|
|
392
|
+
};
|
|
393
|
+
name = Debug;
|
|
394
|
+
};
|
|
395
|
+
331C80DC294CF71000263BE5 /* Release */ = {
|
|
396
|
+
isa = XCBuildConfiguration;
|
|
397
|
+
buildSettings = {
|
|
398
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
399
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
400
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
401
|
+
MARKETING_VERSION = 1.0;
|
|
402
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi.RunnerTests;
|
|
403
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
404
|
+
SWIFT_VERSION = 5.0;
|
|
405
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/personal_finance_frontend_core_ui.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/personal_finance_frontend_core_ui";
|
|
406
|
+
};
|
|
407
|
+
name = Release;
|
|
408
|
+
};
|
|
409
|
+
331C80DD294CF71000263BE5 /* Profile */ = {
|
|
410
|
+
isa = XCBuildConfiguration;
|
|
411
|
+
buildSettings = {
|
|
412
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
413
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
414
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
415
|
+
MARKETING_VERSION = 1.0;
|
|
416
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.example.personalFinanceFrontendCoreUi.RunnerTests;
|
|
417
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
418
|
+
SWIFT_VERSION = 5.0;
|
|
419
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/personal_finance_frontend_core_ui.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/personal_finance_frontend_core_ui";
|
|
420
|
+
};
|
|
421
|
+
name = Profile;
|
|
422
|
+
};
|
|
423
|
+
338D0CE9231458BD00FA5F75 /* Profile */ = {
|
|
424
|
+
isa = XCBuildConfiguration;
|
|
425
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
426
|
+
buildSettings = {
|
|
427
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
428
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
429
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
430
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
431
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
432
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
433
|
+
CLANG_ENABLE_MODULES = YES;
|
|
434
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
435
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
436
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
437
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
438
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
439
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
440
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
441
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
442
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
443
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
444
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
445
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
446
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
447
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
448
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
449
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
450
|
+
CODE_SIGN_IDENTITY = "-";
|
|
451
|
+
COPY_PHASE_STRIP = NO;
|
|
452
|
+
DEAD_CODE_STRIPPING = YES;
|
|
453
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
454
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
455
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
456
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
457
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
458
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
459
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
460
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
461
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
462
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
463
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
464
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
465
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
466
|
+
SDKROOT = macosx;
|
|
467
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
468
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
469
|
+
};
|
|
470
|
+
name = Profile;
|
|
471
|
+
};
|
|
472
|
+
338D0CEA231458BD00FA5F75 /* Profile */ = {
|
|
473
|
+
isa = XCBuildConfiguration;
|
|
474
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
475
|
+
buildSettings = {
|
|
476
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
477
|
+
CLANG_ENABLE_MODULES = YES;
|
|
478
|
+
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
|
|
479
|
+
CODE_SIGN_STYLE = Automatic;
|
|
480
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
481
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
482
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
483
|
+
"$(inherited)",
|
|
484
|
+
"@executable_path/../Frameworks",
|
|
485
|
+
);
|
|
486
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
487
|
+
SWIFT_VERSION = 5.0;
|
|
488
|
+
};
|
|
489
|
+
name = Profile;
|
|
490
|
+
};
|
|
491
|
+
338D0CEB231458BD00FA5F75 /* Profile */ = {
|
|
492
|
+
isa = XCBuildConfiguration;
|
|
493
|
+
buildSettings = {
|
|
494
|
+
CODE_SIGN_STYLE = Manual;
|
|
495
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
496
|
+
};
|
|
497
|
+
name = Profile;
|
|
498
|
+
};
|
|
499
|
+
33CC10F92044A3C60003C045 /* Debug */ = {
|
|
500
|
+
isa = XCBuildConfiguration;
|
|
501
|
+
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
|
502
|
+
buildSettings = {
|
|
503
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
504
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
505
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
506
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
507
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
508
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
509
|
+
CLANG_ENABLE_MODULES = YES;
|
|
510
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
511
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
512
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
513
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
514
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
515
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
516
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
517
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
518
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
519
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
520
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
521
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
522
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
523
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
524
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
525
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
526
|
+
CODE_SIGN_IDENTITY = "-";
|
|
527
|
+
COPY_PHASE_STRIP = NO;
|
|
528
|
+
DEAD_CODE_STRIPPING = YES;
|
|
529
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
530
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
531
|
+
ENABLE_TESTABILITY = YES;
|
|
532
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
533
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
534
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
535
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
536
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
537
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
538
|
+
"DEBUG=1",
|
|
539
|
+
"$(inherited)",
|
|
540
|
+
);
|
|
541
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
542
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
543
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
544
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
545
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
546
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
547
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
548
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
549
|
+
SDKROOT = macosx;
|
|
550
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
551
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
552
|
+
};
|
|
553
|
+
name = Debug;
|
|
554
|
+
};
|
|
555
|
+
33CC10FA2044A3C60003C045 /* Release */ = {
|
|
556
|
+
isa = XCBuildConfiguration;
|
|
557
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
558
|
+
buildSettings = {
|
|
559
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
560
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
561
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
562
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
563
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
564
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
565
|
+
CLANG_ENABLE_MODULES = YES;
|
|
566
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
567
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
568
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
569
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
570
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
571
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
572
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
573
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
574
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
575
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
576
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
577
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
578
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
579
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
580
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
581
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
582
|
+
CODE_SIGN_IDENTITY = "-";
|
|
583
|
+
COPY_PHASE_STRIP = NO;
|
|
584
|
+
DEAD_CODE_STRIPPING = YES;
|
|
585
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
586
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
587
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
588
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
589
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
590
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
591
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
592
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
593
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
594
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
595
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
596
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
597
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
598
|
+
SDKROOT = macosx;
|
|
599
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
600
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
601
|
+
};
|
|
602
|
+
name = Release;
|
|
603
|
+
};
|
|
604
|
+
33CC10FC2044A3C60003C045 /* Debug */ = {
|
|
605
|
+
isa = XCBuildConfiguration;
|
|
606
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
607
|
+
buildSettings = {
|
|
608
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
609
|
+
CLANG_ENABLE_MODULES = YES;
|
|
610
|
+
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
|
|
611
|
+
CODE_SIGN_STYLE = Automatic;
|
|
612
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
613
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
614
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
615
|
+
"$(inherited)",
|
|
616
|
+
"@executable_path/../Frameworks",
|
|
617
|
+
);
|
|
618
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
619
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
620
|
+
SWIFT_VERSION = 5.0;
|
|
621
|
+
};
|
|
622
|
+
name = Debug;
|
|
623
|
+
};
|
|
624
|
+
33CC10FD2044A3C60003C045 /* Release */ = {
|
|
625
|
+
isa = XCBuildConfiguration;
|
|
626
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
627
|
+
buildSettings = {
|
|
628
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
629
|
+
CLANG_ENABLE_MODULES = YES;
|
|
630
|
+
CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
|
|
631
|
+
CODE_SIGN_STYLE = Automatic;
|
|
632
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
633
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
634
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
635
|
+
"$(inherited)",
|
|
636
|
+
"@executable_path/../Frameworks",
|
|
637
|
+
);
|
|
638
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
639
|
+
SWIFT_VERSION = 5.0;
|
|
640
|
+
};
|
|
641
|
+
name = Release;
|
|
642
|
+
};
|
|
643
|
+
33CC111C2044C6BA0003C045 /* Debug */ = {
|
|
644
|
+
isa = XCBuildConfiguration;
|
|
645
|
+
buildSettings = {
|
|
646
|
+
CODE_SIGN_STYLE = Manual;
|
|
647
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
648
|
+
};
|
|
649
|
+
name = Debug;
|
|
650
|
+
};
|
|
651
|
+
33CC111D2044C6BA0003C045 /* Release */ = {
|
|
652
|
+
isa = XCBuildConfiguration;
|
|
653
|
+
buildSettings = {
|
|
654
|
+
CODE_SIGN_STYLE = Automatic;
|
|
655
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
656
|
+
};
|
|
657
|
+
name = Release;
|
|
658
|
+
};
|
|
659
|
+
/* End XCBuildConfiguration section */
|
|
660
|
+
|
|
661
|
+
/* Begin XCConfigurationList section */
|
|
662
|
+
331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
|
|
663
|
+
isa = XCConfigurationList;
|
|
664
|
+
buildConfigurations = (
|
|
665
|
+
331C80DB294CF71000263BE5 /* Debug */,
|
|
666
|
+
331C80DC294CF71000263BE5 /* Release */,
|
|
667
|
+
331C80DD294CF71000263BE5 /* Profile */,
|
|
668
|
+
);
|
|
669
|
+
defaultConfigurationIsVisible = 0;
|
|
670
|
+
defaultConfigurationName = Release;
|
|
671
|
+
};
|
|
672
|
+
33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
|
|
673
|
+
isa = XCConfigurationList;
|
|
674
|
+
buildConfigurations = (
|
|
675
|
+
33CC10F92044A3C60003C045 /* Debug */,
|
|
676
|
+
33CC10FA2044A3C60003C045 /* Release */,
|
|
677
|
+
338D0CE9231458BD00FA5F75 /* Profile */,
|
|
678
|
+
);
|
|
679
|
+
defaultConfigurationIsVisible = 0;
|
|
680
|
+
defaultConfigurationName = Release;
|
|
681
|
+
};
|
|
682
|
+
33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
|
683
|
+
isa = XCConfigurationList;
|
|
684
|
+
buildConfigurations = (
|
|
685
|
+
33CC10FC2044A3C60003C045 /* Debug */,
|
|
686
|
+
33CC10FD2044A3C60003C045 /* Release */,
|
|
687
|
+
338D0CEA231458BD00FA5F75 /* Profile */,
|
|
688
|
+
);
|
|
689
|
+
defaultConfigurationIsVisible = 0;
|
|
690
|
+
defaultConfigurationName = Release;
|
|
691
|
+
};
|
|
692
|
+
33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
|
|
693
|
+
isa = XCConfigurationList;
|
|
694
|
+
buildConfigurations = (
|
|
695
|
+
33CC111C2044C6BA0003C045 /* Debug */,
|
|
696
|
+
33CC111D2044C6BA0003C045 /* Release */,
|
|
697
|
+
338D0CEB231458BD00FA5F75 /* Profile */,
|
|
698
|
+
);
|
|
699
|
+
defaultConfigurationIsVisible = 0;
|
|
700
|
+
defaultConfigurationName = Release;
|
|
701
|
+
};
|
|
702
|
+
/* End XCConfigurationList section */
|
|
703
|
+
};
|
|
704
|
+
rootObject = 33CC10E52044A3C60003C045 /* Project object */;
|
|
705
|
+
}
|