Skip to content

Commit

Permalink
✨ update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wrngwrld committed Nov 29, 2023
1 parent efe0f2e commit 89f1cb0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
13 changes: 10 additions & 3 deletions ios/ci_scripts/ci_post_clone.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
#!/bin/sh

# Fail this script if any subcommand fails.
set -e

# The default execution directory of this script is the ci_scripts directory.
cd $CI_WORKSPACE # change working directory to the root of your cloned repo.
cd $CI_PRIMARY_REPOSITORY_PATH # change working directory to the root of your cloned repo.

# Specify the Flutter tag you want to checkout.
FLUTTER_TAG="3.13.6"

# Install Flutter using git.
git clone https://github.com/flutter/flutter.git --depth 1 -b stable $HOME/flutter
# Install Flutter using git with the specified tag.
git clone https://github.com/flutter/flutter.git --depth 1 --branch $FLUTTER_TAG $HOME/flutter
export PATH="$PATH:$HOME/flutter/bin"


# Install Flutter artifacts for iOS (--ios), or macOS (--macos) platforms.
flutter precache --ios

Expand Down
28 changes: 14 additions & 14 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,42 +18,42 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=2.15.0 <3.0.0"
sdk: ">=3.0.0 <3.2.0"

dependencies:
flutter:
sdk: flutter

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
cupertino_icons: ^1.0.6
http: ^1.1.0
flutter_vlc_player: ^7.4.0
flutter_html: ^3.0.0-alpha.6
path_provider: ^2.0.3
dio: ^5.0.3
path_provider: ^2.1.1
dio: ^5.3.4
image_gallery_saver: ^2.0.3
permission_handler: ^11.0.1
flutter_launcher_icons: ^0.13.1
shared_preferences: ^2.0.7
shared_preferences: ^2.2.2
visibility_detector: ^0.4.0+2
preload_page_view: ^0.2.0
share_plus: ^7.1.0
url_launcher: ^6.0.11
provider: ^6.0.1
flutter_slidable: ^3.0.0
intl: ^0.18.0
lint: ^2.0.1
share_plus: ^7.2.1
url_launcher: ^6.2.1
provider: ^6.1.1
flutter_slidable: ^3.0.1
intl: ^0.18.1
lint: ^2.2.0
scrollable_positioned_list: ^0.3.8
ffmpeg_kit_flutter_full: ^6.0.3
flutter_cache_manager: ^3.3.0
package_info_plus: ^4.1.0
flutter_cache_manager: ^3.3.1
package_info_plus: ^4.2.0

dev_dependencies:
flutter_test:
sdk: flutter

flutter_native_splash: ^2.2.0+1
flutter_native_splash: ^2.3.6

flutter_icons:
android: true
Expand Down

0 comments on commit 89f1cb0

Please sign in to comment.