File tree 2 files changed +1
-2
lines changed
project-plugins/src/main/kotlin
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ class ProjectPlugin @Inject constructor(
97
97
project.extensions.configure<PublishingExtension > {
98
98
publications {
99
99
create<MavenPublication >(" android" ) {
100
- artifactId = " ${ project.name} -android "
100
+ artifactId = project.name
101
101
from(component)
102
102
}
103
103
}
Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ private val defaultXmlUtilHierarchyTemplate = KotlinHierarchyTemplate {
131
131
val Project .nativeState: NativeState
132
132
get() = rootProject.extraProperties[" nativeTargets" ] as NativeState
133
133
134
- // @OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
135
134
fun Project.addNativeTargets (includeWasm : Boolean = true, includeWasi : Boolean = true) {
136
135
val ideaActive = System .getProperty(" idea.active" ) == " true"
137
136
val nativeState = when (property(" native.deploy" )?.toString()?.lowercase()) {
You can’t perform that action at this time.
0 commit comments