Revert android exclusion, we'll just point sdk to nonexisting folder and that should be enough
This commit is contained in:
parent
887c52a319
commit
2e71214914
@ -37,11 +37,7 @@ fun getHostArchitecture(): String {
|
|||||||
return resolvedArch
|
return resolvedArch
|
||||||
}
|
}
|
||||||
|
|
||||||
fun rootRunningOnLinuxx86_64(block: () -> Unit) {
|
|
||||||
if (getHostOsName() == "linux" && getHostArchitecture() == "x86-64") {
|
|
||||||
block()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun KotlinMultiplatformExtension.isRunningInIdea(block: KotlinMultiplatformExtension.() -> Unit) {
|
fun KotlinMultiplatformExtension.isRunningInIdea(block: KotlinMultiplatformExtension.() -> Unit) {
|
||||||
if (isInIdea()) {
|
if (isInIdea()) {
|
||||||
|
@ -57,25 +57,24 @@ version = ReleaseInfo.version
|
|||||||
|
|
||||||
val ideaActive = isInIdea()
|
val ideaActive = isInIdea()
|
||||||
println("Idea active: $ideaActive")
|
println("Idea active: $ideaActive")
|
||||||
rootRunningOnLinuxx86_64 {
|
android {
|
||||||
android {
|
compileSdkVersion(29)
|
||||||
compileSdkVersion(29)
|
defaultConfig {
|
||||||
defaultConfig {
|
minSdkVersion(24)
|
||||||
minSdkVersion(24)
|
targetSdkVersion(29)
|
||||||
targetSdkVersion(29)
|
versionCode = 1
|
||||||
versionCode = 1
|
versionName = "1.0"
|
||||||
versionName = "1.0"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
}
|
||||||
}
|
buildTypes {
|
||||||
buildTypes {
|
getByName("release") {
|
||||||
getByName("release") {
|
isMinifyEnabled = false
|
||||||
isMinifyEnabled = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
val hostOsName = getHostOsName()
|
val hostOsName = getHostOsName()
|
||||||
runningOnLinuxx86_64 {
|
runningOnLinuxx86_64 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user