Enable Android build creation#2
Merged
mariogmarq merged 8 commits intomasterfrom Dec 29, 2025
Merged
Conversation
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.
Since the objective of this project is enable the usage of FLEX for Android, this PR enables the build to be used in Android. A brief description of the PR done by copilot is provided:
This pull request migrates the
libmodule from a plain JVM library to an Android-compatible library, updating the build configuration, dependencies, and publishing setup accordingly. The changes modernize the build by adopting Android Gradle conventions, updating plugin and dependency management, and adding Android-specific configurations.Build system migration and Android support:
libmodule to use the Android Library plugin, added anandroidblock with appropriate SDK versions, namespace, build types, and test options, and replaced thejava-libraryplugin. Also added a minimalAndroidManifest.xmlrequired for Android libraries. [1] [2]gradle/libs.versions.tomlto include Android and Kotlin plugins, and adjusted library aliases for clarity and consistency.Dependency and compatibility updates:
kotlinx-coroutines-androidto support coroutines on Android, and updated the Commons Math dependency alias. [1] [2]Build and publishing enhancements:
maven-publishplugin and configured publishing for the Android library, including sources JAR for the release variant and publishing to the local Maven repository. [1] [2]Project-wide repository management:
settings.gradle.kts, ensuring all plugins and dependencies are resolved fromgoogle()andmavenCentral().