Compare commits

..

2 Commits

Author SHA1 Message Date
renovate[bot]
4fbb15faa9 Merge bb67018d0a into f5e50d00a2 2024-03-18 20:55:35 +00:00
renovate[bot]
bb67018d0a Update dependency com.android.tools.build:gradle to v8.3.1 2024-03-18 20:55:33 +00:00
11 changed files with 1943 additions and 39 deletions

3
.gitignore vendored
View File

@@ -1,6 +1,4 @@
.idea .idea
.kotlin
kotlin-js-store/
out/* out/*
*.iml *.iml
target target
@@ -14,6 +12,5 @@ out/
secret.gradle secret.gradle
local.* local.*
local/ local/
**/*.local.*
publishing.sh publishing.sh

View File

@@ -1,27 +1,5 @@
# Changelog # Changelog
## 1.4.1
* `Kotlin`: `2.1.10`
## 1.4.0
* `Kotlin`: `2.1.0`
## 1.3.6
* `Kotlin`: `2.0.20`
## 1.3.5
* `Kotlin`: `2.0.10`
* Android SDK Level: `35`
## 1.3.4
* `Kotlin`: `1.9.24`
* Native realization of `KSLoggerDefaultPlatformLoggerLambda` now is common for all native targets
## 1.3.3 ## 1.3.3
* `Kotlin`: `1.9.23` * `Kotlin`: `1.9.23`

View File

@@ -73,10 +73,6 @@ kotlin {
dependencies { dependencies {
implementation libs.kotlin.test.common implementation libs.kotlin.test.common
implementation libs.kotlin.test.annotations.common implementation libs.kotlin.test.annotations.common
}
}
jvmTest {
dependencies {
implementation libs.kotlin.test.junit implementation libs.kotlin.test.junit
} }
} }

View File

@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
# Project data # Project data
group=dev.inmo group=dev.inmo
version=1.4.1 version=1.3.3
android_code_version=35 android_code_version=30

View File

@@ -1,20 +1,20 @@
[versions] [versions]
kotlin = "2.1.10" kotlin = "1.9.23"
kotlin-gradle-plugin = "8.2.2" kotlin-gradle-plugin = "8.3.1"
versions = "0.51.0" versions = "0.51.0"
dokka = "2.0.0" dokka = "1.9.20"
dexcount = "4.0.0" dexcount = "4.0.0"
junit_version = "4.12" junit_version = "4.12"
test_ext_junit_version = "1.2.1" test_ext_junit_version = "1.1.5"
espresso_core = "3.6.1" espresso_core = "3.5.1"
android-minSdk = "21" android-minSdk = "21"
android-compileSdk = "35" android-compileSdk = "34"
android-buildTools = "35.0.0" android-buildTools = "34.0.0"
github-release = "2.5.2" github-release = "2.5.2"

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

1921
kotlin-js-store/yarn.lock Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,4 @@
package dev.inmo.kslog.common
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
printlnLogging

View File

@@ -0,0 +1,4 @@
package dev.inmo.kslog.common
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
printlnLogging

View File

@@ -0,0 +1,4 @@
package dev.inmo.kslog.common
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
printlnLogging