jitpack.io icon indicating copy to clipboard operation
jitpack.io copied to clipboard

CryptoCodeAndroidLibrary/1.0.9 build

Open Morons opened this issue 6 months ago • 0 comments

Please provide:

  • Link to build log https://jitpack.io/com/github/Morons/CryptoCodeAndroidLibrary/1.0.9/build.log

  • It builds perfect with Android Studio

  • You seem to have discrepancies with NOT using the defined Gradle nor the version of Kotlin

I Use Kotlin DSL Gradle I use Kotlin 2.1.21 and Java 21 you use 17 !!!

the log complain saying this is broken BUT it is NOT

It seem you cannot create the same environment! and read the Kotlin DSL Gradle files correctly!

Please explain what is wrong!

plugins {
	id("com.android.library")
	id("org.jetbrains.kotlin.android")
	id("org.jetbrains.kotlin.plugin.compose")
	`maven-publish`
}

publishing {
	publications {
		register<MavenPublication>(name = "release") {
			groupId = "com.github.Morons"
			artifactId = "android-library"
			version = "1.0.9"
			
			afterEvaluate {
				from(components["release"])
			}
		}
	}
}

Morons avatar Jun 12 '25 11:06 Morons