Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading the dependencies and versions #679

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
buildscript {
ext.kotlin_version = '1.7.20'
ext.kotlin_version = '1.7.10'
guyluz11 marked this conversation as resolved.
Show resolved Hide resolved
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// Todo: as we are no longer using firestore we need to check if this line is needed,
// it may be needed for the ads.
classpath 'com.google.gms:google-services:4.3.3' // For firestore
classpath 'com.google.gms:google-services:4.3.15' // For firestore
}
}

Expand Down
16 changes: 8 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dependencies:
# HSV(HSB)/HSL/RGB/Material color picker
flutter_colorpicker: ^1.0.3
# A cross platform plugin for displaying local notifications.
flutter_local_notifications: ^14.1.0
flutter_local_notifications: ^16.1.0
# An easy to implement custom switch
flutter_switch: ^0.3.2
# Getting the local timezone of the os.
Expand All @@ -93,7 +93,7 @@ dependencies:
# Add hex color codes to your flutter projects
hexcolor: ^3.0.1
# A composable, multi-platform, Future-based API for HTTP requests.
http: ^0.13.0
http: ^1.1.0
# Open source icon sets for flutter
iconify_flutter: ^0.0.5
# Convenient code generator for get_it
Expand All @@ -113,27 +113,27 @@ dependencies:
# Liquid progress indicator for Flutter.
liquid_progress_indicator_v2: ^0.5.0
# Handles getting a location on
location: ^4.4.0
location: ^5.0.3
# Small, easy to use and extensible logger which prints beautiful logs.
logger: ^1.3.0
logger: ^2.0.2+1
# The Material Design Icons designed by the community for Flutter
material_design_icons_flutter: ^6.0.7096
material_design_icons_flutter: ^7.0.7296
# Creating multi-select widgets in a variety of ways
multi_select_flutter: ^4.1.3
# Service discovery over multicast DNS (mDNS), Bonjour, and Avahi.
multicast_dns: ^0.3.2+3
# Discover network info and configure themselves accordingly
network_info_plus: ^4.0.1
# Helps you discover open ports, devices on subnet and more.
network_tools: ^3.2.1
network_tools: ^4.0.1
# Querying information about the application package, such as CFBundleVersion
package_info_plus: ^4.0.2
# Finding commonly used locations on the filesystem
path_provider: ^2.0.15
# Popup that ask for the requested permission
permission_handler: ^10.2.0
permission_handler: ^11.0.1
# Provides runtime support for a Dart implementation of protobufs.
protobuf: ^2.1.0
protobuf: ^3.1.0
# A wrapper around InheritedWidget to make them easier to use and more reusable.
provider: ^6.0.5
# Implementation of the popular reactiveX api for asynchronous programming
Expand Down
Loading