Skip to content

Commit 310be30

Browse files
committed
Update colorist
1 parent ce627ae commit 310be30

File tree

32 files changed

+656
-612
lines changed

32 files changed

+656
-612
lines changed

colorist/codelab_rebuild.yaml

Lines changed: 30 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@ steps:
2929
dart: fix --apply
3030
- name: Remove README
3131
rm: colorist/README.md
32+
- name: Add .gemini directory
33+
mkdir: colorist/.gemini
34+
- name: Add .gemini/settings.json
35+
path: colorist/.gemini/settings.json
36+
replace-contents: |
37+
{
38+
"mcpServers": {
39+
"dart": {
40+
"command": "dart",
41+
"args": [
42+
"mcp-server"
43+
]
44+
}
45+
}
46+
}
3247
- name: Add .vscode directory
3348
mkdir: colorist/.vscode
3449
- name: Add .vscode/launch.json
@@ -318,29 +333,22 @@ steps:
318333
+ <true/>
319334
</dict>
320335
</plist>
321-
- name: Patch android/app/build.gradle.kts
322-
path: colorist/android/app/build.gradle.kts
336+
- name: Patch ios/Podfile
337+
path: colorist/ios/Podfile
323338
patch-u: |
324-
--- b/colorist/step_02/android/app/build.gradle.kts
325-
+++ a/colorist/step_02/android/app/build.gradle.kts
326-
@@ -8,7 +8,7 @@ plugins {
327-
android {
328-
namespace = "com.example.colorist"
329-
compileSdk = flutter.compileSdkVersion
330-
- ndkVersion = flutter.ndkVersion
331-
+ ndkVersion = "27.0.12077973"
332-
333-
compileOptions {
334-
sourceCompatibility = JavaVersion.VERSION_11
335-
@@ -24,7 +24,7 @@ android {
336-
applicationId = "com.example.colorist"
337-
// You can update the following values to match your application needs.
338-
// For more information, see: https://flutter.dev/to/review-gradle-config.
339-
- minSdk = flutter.minSdkVersion
340-
+ minSdk = 23
341-
targetSdk = flutter.targetSdkVersion
342-
versionCode = flutter.versionCode
343-
versionName = flutter.versionName
339+
--- a/colorist/step_02/ios/Podfile
340+
+++ b/colorist/step_02/ios/Podfile
341+
@@ -1,5 +1,5 @@
342+
-# Uncomment this line to define a global platform for your project
343+
-# platform :ios, '13.0'
344+
+# Firebase requires at least iOS 15.0
345+
+platform :ios, '15.0'
346+
347+
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
348+
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
349+
- name: Patch ios/Runner.xcodeproj/project.pbxproj
350+
xcode-project-path: colorist/ios/Runner.xcodeproj
351+
iphoneos-deployment-target: "15.0"
344352
- name: Upgrade deps
345353
path: colorist
346354
flutter: pub upgrade --major-versions

colorist/step_01/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
colorist_ui: ^0.2.4
12+
colorist_ui: ^0.2.5
1313
flutter_riverpod: ^2.6.1
1414
riverpod_annotation: ^2.6.1
1515

@@ -21,7 +21,7 @@ dev_dependencies:
2121
riverpod_generator: ^2.6.5
2222
riverpod_lint: ^2.6.5
2323
json_serializable: ^6.9.5
24-
custom_lint: ^0.7.5
24+
custom_lint: ^0.7.6
2525

2626
flutter:
2727
uses-material-design: true

colorist/step_02/android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
android {
99
namespace = "com.example.colorist"
1010
compileSdk = flutter.compileSdkVersion
11-
ndkVersion = "27.0.12077973"
11+
ndkVersion = flutter.ndkVersion
1212

1313
compileOptions {
1414
sourceCompatibility = JavaVersion.VERSION_11
@@ -24,7 +24,7 @@ android {
2424
applicationId = "com.example.colorist"
2525
// You can update the following values to match your application needs.
2626
// For more information, see: https://flutter.dev/to/review-gradle-config.
27-
minSdk = 23
27+
minSdk = flutter.minSdkVersion
2828
targetSdk = flutter.targetSdkVersion
2929
versionCode = flutter.versionCode
3030
versionName = flutter.versionName

colorist/step_02/ios/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '13.0'
1+
# Firebase requires at least iOS 15.0
2+
platform :ios, '15.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

colorist/step_02/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 49 additions & 43 deletions
Large diffs are not rendered by default.

colorist/step_02/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
2828
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
2929
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
30-
4C581968EB572B706D4942D4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12658E81727C2D5D89027DC8 /* Pods_Runner.framework */; };
31-
8D11FF183E28C7945287694D /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6597EA0D7667F3E58657C703 /* Pods_RunnerTests.framework */; };
30+
8C2211533C2C5A569A0F203D /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 833ED043A99806EEAEF82B9A /* Pods_Runner.framework */; };
31+
8CABE698794758AD571498E6 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C243F405FB27303706639B6 /* Pods_RunnerTests.framework */; };
3232
/* End PBXBuildFile section */
3333

3434
/* Begin PBXContainerItemProxy section */
@@ -62,9 +62,9 @@
6262
/* End PBXCopyFilesBuildPhase section */
6363

6464
/* Begin PBXFileReference section */
65-
12658E81727C2D5D89027DC8 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
66-
207B711A9C4413DE7EBBAB4C /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
67-
2F875D9ADD284EC4F200D32B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
65+
24DA0E2F1CADBCD0D04E34DD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
66+
2B564162F778FE51882403C8 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
67+
2D7445B647F2ADE9BB72F305 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
6868
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
6969
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
7070
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
@@ -81,29 +81,29 @@
8181
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
8282
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
8383
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
84-
391D5C5C29CDBA585005E831 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
85-
6597EA0D7667F3E58657C703 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
86-
7AA5C0227AC0D380362136F6 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
84+
6C243F405FB27303706639B6 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8785
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
86+
833ED043A99806EEAEF82B9A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
87+
8DC995C051816FAEFA0CB1DF /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
8888
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
89-
CC18820940E188CB31736C70 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
90-
EDD8141995E3972B821DE634 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
89+
C1E8F4C76BCBD880FB36189E /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
90+
F060FF380F2BAC9B90974FA9 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
9191
/* End PBXFileReference section */
9292

9393
/* Begin PBXFrameworksBuildPhase section */
9494
331C80D2294CF70F00263BE5 /* Frameworks */ = {
9595
isa = PBXFrameworksBuildPhase;
9696
buildActionMask = 2147483647;
9797
files = (
98-
8D11FF183E28C7945287694D /* Pods_RunnerTests.framework in Frameworks */,
98+
8CABE698794758AD571498E6 /* Pods_RunnerTests.framework in Frameworks */,
9999
);
100100
runOnlyForDeploymentPostprocessing = 0;
101101
};
102102
33CC10EA2044A3C60003C045 /* Frameworks */ = {
103103
isa = PBXFrameworksBuildPhase;
104104
buildActionMask = 2147483647;
105105
files = (
106-
4C581968EB572B706D4942D4 /* Pods_Runner.framework in Frameworks */,
106+
8C2211533C2C5A569A0F203D /* Pods_Runner.framework in Frameworks */,
107107
);
108108
runOnlyForDeploymentPostprocessing = 0;
109109
};
@@ -137,7 +137,7 @@
137137
331C80D6294CF71000263BE5 /* RunnerTests */,
138138
33CC10EE2044A3C60003C045 /* Products */,
139139
D73912EC22F37F3D000D13A0 /* Frameworks */,
140-
A780BE3276F2C8DBFEBDF2D5 /* Pods */,
140+
B2748828381B5994CACF0D8A /* Pods */,
141141
);
142142
sourceTree = "<group>";
143143
};
@@ -185,15 +185,15 @@
185185
path = Runner;
186186
sourceTree = "<group>";
187187
};
188-
A780BE3276F2C8DBFEBDF2D5 /* Pods */ = {
188+
B2748828381B5994CACF0D8A /* Pods */ = {
189189
isa = PBXGroup;
190190
children = (
191-
207B711A9C4413DE7EBBAB4C /* Pods-Runner.debug.xcconfig */,
192-
2F875D9ADD284EC4F200D32B /* Pods-Runner.release.xcconfig */,
193-
CC18820940E188CB31736C70 /* Pods-Runner.profile.xcconfig */,
194-
EDD8141995E3972B821DE634 /* Pods-RunnerTests.debug.xcconfig */,
195-
7AA5C0227AC0D380362136F6 /* Pods-RunnerTests.release.xcconfig */,
196-
391D5C5C29CDBA585005E831 /* Pods-RunnerTests.profile.xcconfig */,
191+
24DA0E2F1CADBCD0D04E34DD /* Pods-Runner.debug.xcconfig */,
192+
F060FF380F2BAC9B90974FA9 /* Pods-Runner.release.xcconfig */,
193+
C1E8F4C76BCBD880FB36189E /* Pods-Runner.profile.xcconfig */,
194+
2D7445B647F2ADE9BB72F305 /* Pods-RunnerTests.debug.xcconfig */,
195+
8DC995C051816FAEFA0CB1DF /* Pods-RunnerTests.release.xcconfig */,
196+
2B564162F778FE51882403C8 /* Pods-RunnerTests.profile.xcconfig */,
197197
);
198198
name = Pods;
199199
path = Pods;
@@ -202,8 +202,8 @@
202202
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
203203
isa = PBXGroup;
204204
children = (
205-
12658E81727C2D5D89027DC8 /* Pods_Runner.framework */,
206-
6597EA0D7667F3E58657C703 /* Pods_RunnerTests.framework */,
205+
833ED043A99806EEAEF82B9A /* Pods_Runner.framework */,
206+
6C243F405FB27303706639B6 /* Pods_RunnerTests.framework */,
207207
);
208208
name = Frameworks;
209209
sourceTree = "<group>";
@@ -215,7 +215,7 @@
215215
isa = PBXNativeTarget;
216216
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
217217
buildPhases = (
218-
9DDE5A3EE3EE75C1DB0B49C2 /* [CP] Check Pods Manifest.lock */,
218+
ED49759118CBAC66CEDB6337 /* [CP] Check Pods Manifest.lock */,
219219
331C80D1294CF70F00263BE5 /* Sources */,
220220
331C80D2294CF70F00263BE5 /* Frameworks */,
221221
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
234234
isa = PBXNativeTarget;
235235
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
236236
buildPhases = (
237-
6F7EF4E098497CDC3471F0DB /* [CP] Check Pods Manifest.lock */,
237+
C4F727844469A30FFD5ED41F /* [CP] Check Pods Manifest.lock */,
238238
33CC10E92044A3C60003C045 /* Sources */,
239239
33CC10EA2044A3C60003C045 /* Frameworks */,
240240
33CC10EB2044A3C60003C045 /* Resources */,
241241
33CC110E2044A8840003C045 /* Bundle Framework */,
242242
3399D490228B24CF009A79C7 /* ShellScript */,
243-
D176330289AB0993A14F1E35 /* [CP] Embed Pods Frameworks */,
243+
098542A9FB2E183E3719C15E /* [CP] Embed Pods Frameworks */,
244244
);
245245
buildRules = (
246246
);
@@ -323,6 +323,23 @@
323323
/* End PBXResourcesBuildPhase section */
324324

325325
/* Begin PBXShellScriptBuildPhase section */
326+
098542A9FB2E183E3719C15E /* [CP] Embed Pods Frameworks */ = {
327+
isa = PBXShellScriptBuildPhase;
328+
buildActionMask = 2147483647;
329+
files = (
330+
);
331+
inputFileListPaths = (
332+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
333+
);
334+
name = "[CP] Embed Pods Frameworks";
335+
outputFileListPaths = (
336+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
337+
);
338+
runOnlyForDeploymentPostprocessing = 0;
339+
shellPath = /bin/sh;
340+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
341+
showEnvVarsInLog = 0;
342+
};
326343
3399D490228B24CF009A79C7 /* ShellScript */ = {
327344
isa = PBXShellScriptBuildPhase;
328345
alwaysOutOfDate = 1;
@@ -361,7 +378,7 @@
361378
shellPath = /bin/sh;
362379
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
363380
};
364-
6F7EF4E098497CDC3471F0DB /* [CP] Check Pods Manifest.lock */ = {
381+
C4F727844469A30FFD5ED41F /* [CP] Check Pods Manifest.lock */ = {
365382
isa = PBXShellScriptBuildPhase;
366383
buildActionMask = 2147483647;
367384
files = (
@@ -383,7 +400,7 @@
383400
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
384401
showEnvVarsInLog = 0;
385402
};
386-
9DDE5A3EE3EE75C1DB0B49C2 /* [CP] Check Pods Manifest.lock */ = {
403+
ED49759118CBAC66CEDB6337 /* [CP] Check Pods Manifest.lock */ = {
387404
isa = PBXShellScriptBuildPhase;
388405
buildActionMask = 2147483647;
389406
files = (
@@ -405,23 +422,6 @@
405422
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
406423
showEnvVarsInLog = 0;
407424
};
408-
D176330289AB0993A14F1E35 /* [CP] Embed Pods Frameworks */ = {
409-
isa = PBXShellScriptBuildPhase;
410-
buildActionMask = 2147483647;
411-
files = (
412-
);
413-
inputFileListPaths = (
414-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
415-
);
416-
name = "[CP] Embed Pods Frameworks";
417-
outputFileListPaths = (
418-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
419-
);
420-
runOnlyForDeploymentPostprocessing = 0;
421-
shellPath = /bin/sh;
422-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
423-
showEnvVarsInLog = 0;
424-
};
425425
/* End PBXShellScriptBuildPhase section */
426426

427427
/* Begin PBXSourcesBuildPhase section */
@@ -473,7 +473,7 @@
473473
/* Begin XCBuildConfiguration section */
474474
331C80DB294CF71000263BE5 /* Debug */ = {
475475
isa = XCBuildConfiguration;
476-
baseConfigurationReference = EDD8141995E3972B821DE634 /* Pods-RunnerTests.debug.xcconfig */;
476+
baseConfigurationReference = 2D7445B647F2ADE9BB72F305 /* Pods-RunnerTests.debug.xcconfig */;
477477
buildSettings = {
478478
BUNDLE_LOADER = "$(TEST_HOST)";
479479
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
488488
};
489489
331C80DC294CF71000263BE5 /* Release */ = {
490490
isa = XCBuildConfiguration;
491-
baseConfigurationReference = 7AA5C0227AC0D380362136F6 /* Pods-RunnerTests.release.xcconfig */;
491+
baseConfigurationReference = 8DC995C051816FAEFA0CB1DF /* Pods-RunnerTests.release.xcconfig */;
492492
buildSettings = {
493493
BUNDLE_LOADER = "$(TEST_HOST)";
494494
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
503503
};
504504
331C80DD294CF71000263BE5 /* Profile */ = {
505505
isa = XCBuildConfiguration;
506-
baseConfigurationReference = 391D5C5C29CDBA585005E831 /* Pods-RunnerTests.profile.xcconfig */;
506+
baseConfigurationReference = 2B564162F778FE51882403C8 /* Pods-RunnerTests.profile.xcconfig */;
507507
buildSettings = {
508508
BUNDLE_LOADER = "$(TEST_HOST)";
509509
CURRENT_PROJECT_VERSION = 1;

colorist/step_02/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
colorist_ui: ^0.2.4
12+
colorist_ui: ^0.2.5
1313
flutter_riverpod: ^2.6.1
1414
riverpod_annotation: ^2.6.1
15-
firebase_core: ^3.14.0
16-
firebase_ai: ^2.1.0
15+
firebase_core: ^4.0.0
16+
firebase_ai: ^3.0.0
1717

1818
dev_dependencies:
1919
flutter_test:
@@ -23,7 +23,7 @@ dev_dependencies:
2323
riverpod_generator: ^2.6.5
2424
riverpod_lint: ^2.6.5
2525
json_serializable: ^6.9.5
26-
custom_lint: ^0.7.5
26+
custom_lint: ^0.7.6
2727

2828
flutter:
2929
uses-material-design: true

0 commit comments

Comments
 (0)