chore: Update Project configuration#2003
Open
ArthurKun21 wants to merge 11 commits into
Open
Conversation
04ffdb2 to
54e3de8
Compare
This comment was marked as outdated.
This comment was marked as outdated.
…ld.gradle.kts files
…to settings.gradle.kts
54e3de8 to
741721c
Compare
Build 1140Download the latest APK for testing here Note You need a GitHub account to download the APK. This URL is valid as long as the artifact has not expired yet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull Request Type
Related issue
Description
Screenshots
Testing
Additional context
This pull request introduces several significant updates to the project, including upgrading the Java version, restructuring dependency management, and cleaning up the
.gitignorefiles. Additionally, it updates Gradle build scripts to align with modern practices and enhances repository management insettings.gradle.kts.Java Version Upgrade:
sourceCompatibilityandtargetCompatibilityfrom Java 11 to Java 17 across multiple modules (app/build.gradle.kts,libautomata/build.gradle.kts,prefs/build.gradle.kts,scripts/build.gradle.kts). [1] [2] [3] [4]Dependency and Plugin Management:
gradle/libs.versions.tomlto simplify version references by removing redundant_versionsuffixes and aligning dependency keys with modern conventions. [1] [2]settings.gradle.ktsto enforce centralized repository definitions and restrict project-level repositories.Build Script Enhancements:
android.kotlinOptionsto atasksblock inapp/build.gradle.ktsfor better organization.Cleanup:
/buildentries from.gitignorefiles across multiple modules (app,libautomata,prefs,scripts) to prevent redundant ignores. [1] [2]These changes improve the project's compatibility with Java 17, streamline dependency management, and clean up unnecessary configurations.