mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2024-11-18 06:03:47 +00:00
commit
b819a68cb5
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 0.3.1
|
||||
|
||||
* Technical fixes for compatibility with Java 8
|
||||
|
||||
## 0.3.0
|
||||
|
||||
* **BREAKING CHANGE**: Filters will not accept message since this update
|
||||
|
13
build.gradle
13
build.gradle
@ -33,7 +33,13 @@ repositories {
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
jvm {
|
||||
compilations.main {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
}
|
||||
js(IR) {
|
||||
browser()
|
||||
nodejs()
|
||||
@ -52,9 +58,8 @@ kotlin {
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(8)
|
||||
}
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
apply from: "defaultAndroidSettings.gradle"
|
||||
|
@ -9,5 +9,5 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.3.0
|
||||
android_code_version=7
|
||||
version=0.3.1
|
||||
android_code_version=8
|
||||
|
Loading…
Reference in New Issue
Block a user