chore: migrate graddle , flutter and some dependencies #205
+429
−63
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several updates to the Android build configuration, Flutter plugin dependencies, and Dart SDK version requirements. The most important changes include updating the Gradle version, adding licensing information to Gradle wrapper scripts, and updating Dart SDK and dependency versions.
Gradle and Build Configuration Updates:
android/gradle/wrapper/gradle-wrapper.properties
: Updated Gradle distribution URL from version 6.5 to 7.2.android/gradlew
: Added a comprehensive POSIX-compliant shell script for Gradle startup, including licensing information and configuration details.android/gradlew.bat
: Added a Windows batch script for Gradle startup with licensing information and configuration details.Flutter and Dart SDK Updates:
example/.flutter-plugins-dependencies
: Updated paths and metadata for thebluetooth_print
plugin, reflecting new directory paths and updated version information.example/pubspec.yaml
: Updated Dart SDK constraint to ">=3.0.0 <4.0.0" and updatedcupertino_icons
dependency version to ^1.0.8.pubspec.yaml
: Updated Dart SDK constraint to ">=3.0.0 <4.0.0" and updated several dependencies includingjson_annotation
,rxdart
,build_runner
, andjson_serializable
to their latest versions.…support