We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
"android-core"
Bad metadata in the published pom file: https://repo1.maven.org/maven2/com/google/maps/android/maps-compose-utils/6.1.0/maps-compose-utils-6.1.0.pom
<dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>android-core</version> <scope>runtime</scope> </dependency>
<dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.13.1</version> <scope>runtime</scope> </dependency>
This line is wrong:
android-maps-compose/gradle/libs.versions.toml
Line 28 in 01ee126
It should be version.ref not version
version.ref
version
Something like
androidx-core = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
with this at the top of the file in the [versions] section.
[versions]
androidx-core = "1.13.1"
The text was updated successfully, but these errors were encountered:
Thanks for reporting this @yogurtearl . This PR will fix the problem.
Sorry, something went wrong.
🎉 This issue has been resolved in version 6.1.1 🎉
The release is available on:
v6.1.1
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
Problem:
Bad metadata in the published pom file:
https://repo1.maven.org/maven2/com/google/maps/android/maps-compose-utils/6.1.0/maps-compose-utils-6.1.0.pom
Actual
Expected
Cause:
This line is wrong:
android-maps-compose/gradle/libs.versions.toml
Line 28 in 01ee126
It should be
version.ref
notversion
Something like
with this at the top of the file in the
[versions]
section.The text was updated successfully, but these errors were encountered: