Skip to content

Commit 49d0b1d

Browse files
committed
Update in_app_purchases
1 parent 0fa8b9b commit 49d0b1d

File tree

22 files changed

+93
-63
lines changed

22 files changed

+93
-63
lines changed

in_app_purchases/codelab_rebuild.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,21 @@ steps:
2626
+GoogleService-Info.plist
2727
+google-services.json
2828
+ios/firebase_app_id_file.json
29+
- name: Add .gemini directory
30+
mkdir: steps/app/.gemini
31+
- name: Add .gemini/settings.json
32+
path: steps/app/.gemini/settings.json
33+
replace-contents: |
34+
{
35+
"mcpServers": {
36+
"dart": {
37+
"command": "dart",
38+
"args": [
39+
"mcp-server"
40+
]
41+
}
42+
}
43+
}
2944
- name: Add app dependencies
3045
path: steps/app
3146
flutter: pub add cloud_firestore cupertino_icons firebase_auth firebase_core google_sign_in http intl provider
@@ -16657,6 +16672,21 @@ steps:
1665716672
renamedir:
1665816673
from: steps/firebase_backend_dart
1665916674
to: steps/dart-backend
16675+
- name: Add .gemini directory
16676+
mkdir: steps/dart-backend/.gemini
16677+
- name: Add .gemini/settings.json
16678+
path: steps/dart-backend/.gemini/settings.json
16679+
replace-contents: |
16680+
{
16681+
"mcpServers": {
16682+
"dart": {
16683+
"command": "dart",
16684+
"args": [
16685+
"mcp-server"
16686+
]
16687+
}
16688+
}
16689+
}
1666016690
- name: Add dependencies
1666116691
path: steps/dart-backend
1666216692
dart: pub add googleapis googleapis_auth http app_store_server_sdk

in_app_purchases/complete/app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ migrate_working_dir/
2727
**/doc/api/
2828
**/ios/Flutter/.last_build_id
2929
.dart_tool/
30-
.flutter-plugins
3130
.flutter-plugins-dependencies
3231
.pub-cache/
3332
.pub/
3433
/build/
34+
/coverage/
3535

3636
# Symbolication related
3737
app.*.symbols

in_app_purchases/complete/app/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-
cloud_firestore: ^5.6.8
12+
cloud_firestore: ^6.0.0
1313
cupertino_icons: ^1.0.8
14-
firebase_auth: ^5.5.4
15-
firebase_core: ^3.13.1
16-
google_sign_in: ^6.3.0
14+
firebase_auth: ^6.0.0
15+
firebase_core: ^4.0.0
16+
google_sign_in: ^7.1.1
1717
http: ^1.4.0
1818
intl: ^0.20.2
1919
provider: ^6.1.5

in_app_purchases/complete/dart-backend/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies:
1111
googleapis: ^14.0.0
1212
googleapis_auth: ^2.0.0
1313
http: ^1.4.0
14-
shelf: ^1.4.0
15-
shelf_router: ^1.1.0
14+
shelf: ^1.4.2
15+
shelf_router: ^1.1.2
1616

1717
dev_dependencies:
18-
lints: ^5.0.0
19-
test: ^1.24.0
18+
lints: ^6.0.0
19+
test: ^1.25.6

in_app_purchases/step_00/app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ migrate_working_dir/
2727
**/doc/api/
2828
**/ios/Flutter/.last_build_id
2929
.dart_tool/
30-
.flutter-plugins
3130
.flutter-plugins-dependencies
3231
.pub-cache/
3332
.pub/
3433
/build/
34+
/coverage/
3535

3636
# Symbolication related
3737
app.*.symbols

in_app_purchases/step_00/app/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-
cloud_firestore: ^5.6.8
12+
cloud_firestore: ^6.0.0
1313
cupertino_icons: ^1.0.8
14-
firebase_auth: ^5.5.4
15-
firebase_core: ^3.13.1
16-
google_sign_in: ^6.3.0
14+
firebase_auth: ^6.0.0
15+
firebase_core: ^4.0.0
16+
google_sign_in: ^7.1.1
1717
http: ^1.4.0
1818
intl: ^0.20.2
1919
provider: ^6.1.5

in_app_purchases/step_00/dart-backend/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies:
1111
googleapis: ^14.0.0
1212
googleapis_auth: ^2.0.0
1313
http: ^1.4.0
14-
shelf: ^1.4.0
15-
shelf_router: ^1.1.0
14+
shelf: ^1.4.2
15+
shelf_router: ^1.1.2
1616

1717
dev_dependencies:
18-
lints: ^5.0.0
19-
test: ^1.24.0
18+
lints: ^6.0.0
19+
test: ^1.25.6

in_app_purchases/step_03/app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ migrate_working_dir/
2727
**/doc/api/
2828
**/ios/Flutter/.last_build_id
2929
.dart_tool/
30-
.flutter-plugins
3130
.flutter-plugins-dependencies
3231
.pub-cache/
3332
.pub/
3433
/build/
34+
/coverage/
3535

3636
# Symbolication related
3737
app.*.symbols

in_app_purchases/step_03/app/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-
cloud_firestore: ^5.6.8
12+
cloud_firestore: ^6.0.0
1313
cupertino_icons: ^1.0.8
14-
firebase_auth: ^5.5.4
15-
firebase_core: ^3.13.1
16-
google_sign_in: ^6.3.0
14+
firebase_auth: ^6.0.0
15+
firebase_core: ^4.0.0
16+
google_sign_in: ^7.1.1
1717
http: ^1.4.0
1818
intl: ^0.20.2
1919
provider: ^6.1.5

in_app_purchases/step_03/dart-backend/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies:
1111
googleapis: ^14.0.0
1212
googleapis_auth: ^2.0.0
1313
http: ^1.4.0
14-
shelf: ^1.4.0
15-
shelf_router: ^1.1.0
14+
shelf: ^1.4.2
15+
shelf_router: ^1.1.2
1616

1717
dev_dependencies:
18-
lints: ^5.0.0
19-
test: ^1.24.0
18+
lints: ^6.0.0
19+
test: ^1.25.6

0 commit comments

Comments
 (0)