chore: remove unused modules.xml file #24
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 updates the Android project configuration and dependencies to align with modern standards and improve compatibility. Key changes include upgrading the Gradle and Kotlin versions, updating the minimum and target SDK versions, and modifying project settings to support newer Java and Flutter SDK versions.
Android Project Configuration Updates:
.gitignore
: Added.idea
directory to the ignore list.android/build.gradle
: Upgradedkotlin_version
to1.8.21
,gradle
plugin to8.0.0
,compileSdkVersion
to 34, andminSdkVersion
to 21. Addednamespace
declaration and updated Java and Kotlin compatibility options. [1] [2]android/gradle/wrapper/gradle-wrapper.properties
: Updated Gradle distribution URL to version8.5
.IntelliJ IDEA Project Settings Changes:
.idea/compiler.xml
: Changed bytecode target level to 21..idea/gradle.xml
: Updated test runner, Gradle JVM, and external annotations settings for compatibility with newer Gradle versions..idea/misc.xml
: Updated project language level and JDK to version 21..idea/modules.xml
: Removed unused module configuration.Flutter SDK and Dependencies Updates:
example/pubspec.yaml
: Updated Dart SDK constraint to>=3.4.1 <4.0.0
and upgraded thelogger
dependency to version^2.5.0
. [1] [2]pubspec.yaml
: Updated Flutter SDK constraint to>=3.4.1
and Dart SDK constraint to>=3.4.1 <4.0.0
.