Vivek Modi
05/22/2022, 2:59 PMpod repo lint
it continue running and it not stoping. i am adding small video in thread. Please have a look. ThanksVivek Modi
05/22/2022, 3:00 PMplugins {
kotlin("multiplatform") version "1.6.21"
kotlin("native.cocoapods") version "1.6.21"
id("com.android.library")
id("maven-publish")
}
val libraryVersion = "0.0.4"
var libraryGroup = "com.vivek"
var libraryArtifactId = "kmm-module"
repositories {
google()
mavenCentral()
}
kotlin {
android {
publishLibraryVariants("release", "debug")
}
cocoapods {
// Required properties
// Specify the required Pod version here. Otherwise, the Gradle project version is used.
version = "0.0.1"
summary = "Some description for a Kotlin/Native module"
homepage = "Link to a Kotlin/Native module homepage"
// Optional properties
// Configure the Pod name here instead of changing the Gradle project name
name = "VivekMyCocoaPod"
framework {
// Required properties
// Framework name configuration. Use this property instead of deprecated 'frameworkName'
baseName = "MyFramework"
// Optional properties
// Dynamic framework support
isStatic = false
}
}
iosX64()
iosArm64()
iosSimulatorArm64()
sourceSets {
val commonMain by getting
val androidMain by getting
val iosX64Main by getting
val iosArm64Main by getting
val iosSimulatorArm64Main by getting
val iosMain by creating {
dependsOn(commonMain)
iosX64Main.dependsOn(this)
iosArm64Main.dependsOn(this)
iosSimulatorArm64Main.dependsOn(this)
}
}
}
Vivek Modi
05/22/2022, 3:02 PMChrimaeon
05/22/2022, 3:13 PMVivek Modi
05/22/2022, 3:14 PMChrimaeon
05/22/2022, 3:14 PM.
For current directoryChrimaeon
05/22/2022, 3:15 PMpod repo lint .
Vivek Modi
05/22/2022, 3:15 PMVivek Modi
05/22/2022, 3:15 PM