-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android artifacts for 0.8.0 weren't published #8
Comments
Good catch, I think I know what the issue is. Will try and get an update out today. https://github.com/chRyNaN/serialization-parcelable/blob/develop/parcelable-core/build.gradle.kts#L20 |
@tadfisher Could you try again? It looks like the android artifacts are now available. This was the issue: // Before:
androidTarget()
// After:
androidTarget {
publishAllLibraryVariants()
} |
BTW JVM should not be broken, if it is please file an issue. But JVM doesn't have the Android components or functionality (Intent, Bundle, etc). |
Right, so any Android source set depending on Thank you for addressing this! |
Looking at the Maven repository index, the following artifacts weren't published for version 0.8.0:
The Gradle module metadata is missing the
android*Elements-published
variants, so upgrading to 0.8.0 results in Gradle selecting the JVM variant for Android builds, which is definitely broken.The text was updated successfully, but these errors were encountered: