File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Environment Variables provider allows you to read feature flags from the [ process's environment] ( https://en.wikipedia.org/wiki/Environment_variable ) .
4
4
5
+ ## Supported platforms
6
+
7
+ | Supported | Platform | Supported versions |
8
+ | -----------| ----------------------| --------------------------------------------------------------------------------|
9
+ | ❌ | Android | |
10
+ | ✅ | JVM | JDK 11+ |
11
+ | ✅ | Native | Linux x64 |
12
+ | ❌ | Native | [ Other native targets] ( https://kotlinlang.org/docs/native-target-support.html ) |
13
+ | ✅ | Javascript (Node.js) | |
14
+ | ❌ | Javascript (Browser) | |
15
+ | ❌ | Wasm | |
16
+
17
+
5
18
## Installation
6
19
7
20
``` xml
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ kotlin {
15
15
compilations.all {
16
16
compileTaskProvider.configure {
17
17
compilerOptions {
18
- jvmTarget.set(JvmTarget .JVM_21 )
18
+ jvmTarget.set(JvmTarget .JVM_11 )
19
19
}
20
20
}
21
21
}
You can’t perform that action at this time.
0 commit comments