Merged
Conversation
Owner
Author
|
/gemini summary |
Owner
Author
|
/gemini review |
Summary of ChangesThis pull request refactors the project's build system by introducing a dedicated Highlights
Activity
|
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.
New Pull Request
Pull Request Type
Related issue
Description
Screenshots
Testing
Additional context
This pull request introduces a new Gradle build logic module with a set of convention plugins to standardize and simplify the configuration of Kotlin Multiplatform (KMP), Android, Compose, Spotless, and Maven publishing across the project. It also updates documentation to reflect the removal of the
iosX64target from the supported iOS targets. The most important changes are summarized below.Build Logic & Convention Plugins:
build-logic/conventionmodule containing reusable Gradle convention plugins for KMP libraries, KMP samples, Compose, Spotless, Maven publishing, and Android sample apps. These plugins encapsulate common configuration and best practices for the project. [1] [2] [3] [4] [5] [6] [7] [8]gd.buildlogicfor Android and KMP projects, including standardized compile options, target SDK versions, and Maven publishing setup. [1] [2] [3] [4]Build System & Project Settings:
build-logic/gradle.propertiesfile for Gradle performance and caching settings, and asettings.gradle.ktsto manage dependency resolution and version catalogs for the build logic. [1] [2]Documentation Updates:
README.mdandAgents.mdto remove references to theiosX64target, clarifying that onlyiosArm64andiosSimulatorArm64are supported. This aligns the documentation with the actual targets configured in the new build logic. [1] [2] [3]These changes lay the groundwork for consistent, maintainable, and scalable multiplatform builds across the project.