Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
fix: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kjxbyz committed Jun 27, 2024
1 parent eefd3d8 commit 3e8ea13
Show file tree
Hide file tree
Showing 9 changed files with 77 additions and 48 deletions.
3 changes: 3 additions & 0 deletions .fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.19.6"
}
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ migrate_working_dir/
.pub/
/build/

# Visual Studio Code related
.classpath
.project
.settings/
.vscode/*

# Symbolication related
app.*.symbols

Expand All @@ -48,6 +54,21 @@ app.*.map.json
dist/
/*.snap

# Exceptions to the above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!.vscode/extensions.json
!.vscode/launch.json
!.vscode/tasks.json
!.idea/codeStyles/
!.idea/dictionaries/
!.idea/runConfigurations/

# local env files
.env*.local
.env

# FVM Version Cache
.fvm/
26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

get:
echo "╠ Installing dependencies..."
flutter pub get
fvm flutter pub get

outdated:
echo "╠ Resolving dependencies..."
flutter pub outdated
fvm flutter pub outdated

clean: ## Cleans the environment
echo "╠ Cleaning the project..."
flutter clean
fvm flutter clean
echo "╠ Installing dependencies..."
make get

Expand All @@ -27,48 +27,48 @@ macos_install: ## Installing ios dependencies

icon: ## Generate icons
echo "╠ Generate icons..."
dart run flutter_native_splash:create
fvm dart run flutter_native_splash:create

build_watch: ## Watches the files for changes
echo "╠ Watching the project..."
dart run build_runner watch --delete-conflicting-outputs
fvm dart run build_runner watch --delete-conflicting-outputs

build_runner: ## Build the files for changes
echo "╠ Building the project..."
dart run build_runner build --delete-conflicting-outputs
fvm dart run build_runner build --delete-conflicting-outputs

clean_runner: ## Deleting cache and generated source files
echo "╠ Deleting cache and generated source files..."
dart run build_runner clean
fvm dart run build_runner clean

apk: ## Release Apk
echo "╠ Releasing Apk..."
flutter build apk --no-tree-shake-icons --dart-define-from-file=".env.$(ENV).local" --flavor staging
fvm flutter build apk --no-tree-shake-icons --dart-define-from-file=".env.$(ENV).local" --flavor staging

appbundle: ## Release Appbundle
echo "╠ Releasing Appbundle..."
flutter build appbundle --no-tree-shake-icons --dart-define-from-file=".env.$(ENV).local" --flavor production
fvm flutter build appbundle --no-tree-shake-icons --dart-define-from-file=".env.$(ENV).local" --flavor production

adhoc:
echo "╠ Removing build products and intermediate files from the build root..."
cd ios && xcodebuild clean && cd ..
echo "╠ Releasing to adhoc..."
flutter build ipa --dart-define-from-file=".env.$(ENV).local" --export-options-plist=ios/ExportOptions-debug.plist
fvm flutter build ipa --dart-define-from-file=".env.$(ENV).local" --export-options-plist=ios/ExportOptions-debug.plist

appstore:
echo "╠ Removing build products and intermediate files from the build root..."
cd ios && xcodebuild clean && cd ..
echo "╠ Releasing to app store..."
flutter build ipa --dart-define-from-file=".env.$(ENV).local" --export-options-plist=ios/ExportOptions-release.plist
fvm flutter build ipa --dart-define-from-file=".env.$(ENV).local" --export-options-plist=ios/ExportOptions-release.plist

macos_adhoc:
echo "╠ Removing build products and intermediate files from the build root..."
cd macos && xcodebuild clean && cd ..
echo "╠ Releasing bundle..."
flutter build macos --dart-define-from-file=".env.$(ENV).local"
fvm flutter build macos --dart-define-from-file=".env.$(ENV).local"

macos_appstore:
echo "╠ Removing build products and intermediate files from the build root..."
cd macos && xcodebuild clean && cd ..
echo "╠ Releasing bundle..."
flutter build macos --dart-define-from-file=".env.$(ENV).local"
fvm flutter build macos --dart-define-from-file=".env.$(ENV).local"
10 changes: 5 additions & 5 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ PODS:
- SDWebImage (5.19.0):
- SDWebImage/Core (= 5.19.0)
- SDWebImage/Core (5.19.0)
- Sentry/HybridSDK (8.25.2)
- sentry_flutter (8.2.0):
- Sentry/HybridSDK (8.29.0)
- sentry_flutter (8.3.0):
- Flutter
- FlutterMacOS
- Sentry/HybridSDK (= 8.25.2)
- Sentry/HybridSDK (= 8.29.0)
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -127,8 +127,8 @@ SPEC CHECKSUMS:
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
SDWebImage: 981fd7e860af070920f249fd092420006014c3eb
Sentry: 51b056d96914a741f63eca774d118678b1eb05a1
sentry_flutter: e8397d13e297a5d4b6be8a752e33140b21c5cc97
Sentry: 016de45ee5ce5fca2a829996f1bfafeb5e62e8b4
sentry_flutter: 5fb57c5b7e6427a9dc1fedde4269eb65823982d4
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f
Toast: ec33c32b8688982cecc6348adeae667c1b9938da
Expand Down
7 changes: 6 additions & 1 deletion lib/gen/assets.gen.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/i18n/strings.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// Locales: 2
/// Strings: 66 (33 per locale)
///
/// Built on 2024-06-26 at 13:42 UTC
/// Built on 2024-06-27 at 05:31 UTC
// coverage:ignore-file
// ignore_for_file: type=lint
Expand Down
10 changes: 5 additions & 5 deletions macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ PODS:
- FlutterMacOS
- screen_retriever (0.0.1):
- FlutterMacOS
- Sentry/HybridSDK (8.25.2)
- sentry_flutter (8.2.0):
- Sentry/HybridSDK (8.29.0)
- sentry_flutter (8.3.0):
- Flutter
- FlutterMacOS
- Sentry/HybridSDK (= 8.25.2)
- Sentry/HybridSDK (= 8.29.0)
- shared_preferences_foundation (0.0.1):
- Flutter
- FlutterMacOS
Expand Down Expand Up @@ -68,8 +68,8 @@ SPEC CHECKSUMS:
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c
screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38
Sentry: 51b056d96914a741f63eca774d118678b1eb05a1
sentry_flutter: e8397d13e297a5d4b6be8a752e33140b21c5cc97
Sentry: 016de45ee5ce5fca2a829996f1bfafeb5e62e8b4
sentry_flutter: 5fb57c5b7e6427a9dc1fedde4269eb65823982d4
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
url_launcher_macos: d2691c7dd33ed713bf3544850a623080ec693d95
window_manager: 3a1844359a6295ab1e47659b1a777e36773cd6e8
Expand Down
32 changes: 16 additions & 16 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ packages:
dependency: "direct main"
description:
name: file_picker
sha256: "29c90806ac5f5fb896547720b73b17ee9aed9bba540dc5d91fe29f8c5745b10a"
sha256: "2ca051989f69d1b2ca012b2cf3ccf78c70d40144f0861ff2c063493f7c8c3d45"
url: "https://pub.dev"
source: hosted
version: "8.0.3"
version: "8.0.5"
file_selector_linux:
dependency: transitive
description:
Expand Down Expand Up @@ -363,26 +363,26 @@ packages:
dependency: "direct main"
description:
name: flutter_gen
sha256: a518a4a319511346ace92e550e14df35797f15d56ff1c79dc481c069d063259b
sha256: c310ae52c59010e71bcde62d9f3d81221e25b9c16f7f3adf9496dde8480866da
url: "https://pub.dev"
source: hosted
version: "5.5.0+1"
version: "5.6.0"
flutter_gen_core:
dependency: transitive
description:
name: flutter_gen_core
sha256: b9894396b2a790cc2d6eb3ed86e5e113aaed993765b21d4b981c9da4476e0f52
sha256: d8e828ad015a8511624491b78ad8e3f86edb7993528b1613aefbb4ad95947795
url: "https://pub.dev"
source: hosted
version: "5.5.0+1"
version: "5.6.0"
flutter_gen_runner:
dependency: "direct dev"
description:
name: flutter_gen_runner
sha256: b4c4c54e4dd89022f5e405fe96f16781be2dfbeabe8a70ccdf73b7af1302c655
sha256: "931b03f77c164df0a4815aac0efc619a6ac8ec4cada55025119fca4894dada90"
url: "https://pub.dev"
source: hosted
version: "5.5.0+1"
version: "5.6.0"
flutter_localizations:
dependency: "direct main"
description: flutter
Expand Down Expand Up @@ -906,26 +906,26 @@ packages:
dependency: "direct main"
description:
name: sentry
sha256: fd1fbfe860c05f5c52820ec4dbf2b6473789e83ead26cfc18bca4fe80bf3f008
sha256: "7342ef4c18932881730ac941a07a6e4cf76fe99cd1ea3bef06e53a6a1402dec0"
url: "https://pub.dev"
source: hosted
version: "8.2.0"
version: "8.3.0"
sentry_flutter:
dependency: "direct main"
description:
name: sentry_flutter
sha256: c64f0aec5332bec87083b61514d1b6b29e435b9045d03ce1575861192b9a5680
sha256: "475cf49682e4d1eb48caa2577502721bcfdcbb63f215de57b3b246d52f4f7914"
url: "https://pub.dev"
source: hosted
version: "8.2.0"
version: "8.3.0"
sentry_logging:
dependency: "direct main"
description:
name: sentry_logging
sha256: edfc054d65f0257303540f9fe76820005a710440eee062052efdff5252ecc121
sha256: "8eea0f30487d6d67351a2ee2277cffd460130266d6c7de100a4d0afd716852ed"
url: "https://pub.dev"
source: hosted
version: "8.2.0"
version: "8.3.0"
shared_preferences:
dependency: "direct main"
description:
Expand Down Expand Up @@ -1007,10 +1007,10 @@ packages:
dependency: "direct main"
description:
name: slang
sha256: "0d8a8cbfd7858ed2bd9164a79bfb664ea83f1e124740b28acd0618757fc87ecc"
sha256: f68f6d6709890f85efabfb0318e9d694be2ebdd333e57fe5cb50eee449e4e3ab
url: "https://pub.dev"
source: hosted
version: "3.31.0"
version: "3.31.1"
slang_build_runner:
dependency: "direct dev"
description:
Expand Down
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ dependencies:
collection: ^1.18.0
cupertino_icons: ^1.0.8
device_info_plus: ^10.1.0
file_picker: ^8.0.3
file_picker: ^8.0.5
flutter:
sdk: flutter
flutter_form_builder: ^9.2.1
flutter_gen: ^5.5.0+1
flutter_gen: ^5.6.0
flutter_localizations:
sdk: flutter
flutter_native_splash: ^2.4.0
Expand All @@ -55,11 +55,11 @@ dependencies:
permission_handler: ^11.3.1
photo_view: ^0.15.0
reorderables: ^0.6.0
sentry: ^8.2.0
sentry_flutter: ^8.2.0
sentry_logging: ^8.2.0
sentry: ^8.3.0
sentry_flutter: ^8.3.0
sentry_logging: ^8.3.0
shared_preferences: ^2.2.3
slang: ^3.31.0
slang: ^3.31.1
slang_flutter: ^3.31.0
syncfusion_flutter_core: ^25.2.4
syncfusion_flutter_sliders: ^25.2.4
Expand All @@ -70,7 +70,7 @@ dependencies:

dev_dependencies:
build_runner: ^2.4.9
flutter_gen_runner: ^5.5.0+1
flutter_gen_runner: ^5.6.0
flutter_test:
sdk: flutter
msix: ^3.16.7
Expand Down

0 comments on commit 3e8ea13

Please sign in to comment.