Skip to content

Commit

Permalink
refactor: Fix logger bug
Browse files Browse the repository at this point in the history
  • Loading branch information
behzodhalil committed Jun 22, 2023
1 parent aeb4df3 commit efae94b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kotlin.mpp.androidSourceSetLayoutVersion=2

# POM
GROUP = io.github.behzodhalil
VERSION_NAME = 0.1.1
VERSION_NAME = 0.1.2

POM_URL = https://github.com/getspherelabs/meteor
POM_SCM_URL =https://github.com/getspherelabs/meteor
Expand Down
12 changes: 12 additions & 0 deletions meteor-logger/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
kotlin("multiplatform")
id("com.android.library")
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2"
id("com.vanniktech.maven.publish") version "0.25.2"
}

kotlin {
Expand Down Expand Up @@ -62,9 +63,20 @@ kotlin {
}

android {
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
namespace = "io.spherelabs.meteorlogger"
compileSdk = 33
defaultConfig {
minSdk = 24
}
// still needed for Android projects despite toolchain
compileOptions {
sourceCompatibility = JavaVersion.toVersion(1.8)
targetCompatibility = JavaVersion.toVersion(1.8)
}
}

mavenPublishing {
publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.S01, automaticRelease = true)
signAllPublications()
}
2 changes: 1 addition & 1 deletion samples/rickymortykmm/buildSrc/src/main/kotlin/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Version {
const val json = "1.5.0"
const val coroutines = "1.6.4"
const val serializationCore = "1.4.1"
const val meteor = "0.1.0"
const val meteor = "0.0.8"
const val navigation = "2.5.1"
const val turbine = "1.0.0"
}
Expand Down

0 comments on commit efae94b

Please sign in to comment.