Skip to content

update project struct#10

Merged
crowforkotlin merged 14 commits into
mainfrom
dev
Sep 13, 2025
Merged

update project struct#10
crowforkotlin merged 14 commits into
mainfrom
dev

Conversation

@crowforkotlin
Copy link
Copy Markdown
Owner

🎨 edit file struct, project struct
🔧 update .kts file

Copilot AI review requested due to automatic review settings September 13, 2025 08:04
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR reorganizes the project structure by extracting common functionality into a base module and restructuring the codebase for better maintainability. The main changes include creating a new mordecaix-base module, updating the build configuration system, and restructuring source paths.

  • Extracted common functionality into a new mordecaix-base module containing utilities, time classes, and platform abstractions
  • Updated build logic to use a more structured approach with new plugin conventions and configuration extensions
  • Restructured project hierarchy with better separation of concerns between modules

Reviewed Changes

Copilot reviewed 198 out of 521 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
mordecaix-base/ New base module containing common utilities, time classes, platform abstractions, and storage implementations
mordecaix-build-logic/ Updated build configuration with new plugin structure and configuration extensions
mordecaix-app/ Restructured main application module with updated dependencies and imports
mordecaix-zipline/ New zipline module with multiplatform configuration
mordecaix-test/ Test modules for Android configurations

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

implementation(libs.jetbrains.browser)
}

nonWebCommonMain. dependencies {
Copy link

Copilot AI Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an extra space before 'dependencies' that should be removed.

Suggested change
nonWebCommonMain. dependencies {
nonWebCommonMain.dependencies {

Copilot uses AI. Check for mistakes.
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.org.jdom.Namespace.getNamespace
Copy link

Copilot AI Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This import appears to be incorrect and unused. The import should likely be removed as it doesn't correspond to any usage in the file.

Suggested change
import org.jetbrains.kotlin.org.jdom.Namespace.getNamespace

Copilot uses AI. Check for mistakes.
Comment on lines +4 to +6
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.android
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.debugImplementation
import kotlin.jvm.java
Copy link

Copilot AI Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The imports contain generated accessor paths that are unstable and will break builds. These should be replaced with proper imports or removed if unused.

Suggested change
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.android
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.debugImplementation
import kotlin.jvm.java

Copilot uses AI. Check for mistakes.
@@ -0,0 +1,34 @@
plugins {
id("com.android.application")
Copy link

Copilot AI Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This plugin configuration expects to be applied to an Android application but the function plugin should not include application-specific plugins. Consider moving these to the base application plugin.

Suggested change
id("com.android.application")

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +3
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.debugImplementation
import libsEx

Copy link

Copilot AI Sep 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import uses a generated accessor path that is unstable and will cause build failures. Use proper dependency configuration syntax instead.

Suggested change
import gradle.kotlin.dsl.accessors._c8e23648a0123cabac06a951e2864907.debugImplementation
import libsEx
import libsEx

Copilot uses AI. Check for mistakes.
@crowforkotlin crowforkotlin merged commit 1132164 into main Sep 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants