Skip to content

Commit 29bf10b

Browse files
committed
Document supported platforms of env-var provider
Signed-off-by: Bence Hornák <[email protected]>
1 parent 1e80b86 commit 29bf10b

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

providers/env-var/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
Environment Variables provider allows you to read feature flags from the [process's environment](https://en.wikipedia.org/wiki/Environment_variable).
44

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+
518
## Installation
619

720
```xml

providers/env-var/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ kotlin {
1515
compilations.all {
1616
compileTaskProvider.configure {
1717
compilerOptions {
18-
jvmTarget.set(JvmTarget.JVM_21)
18+
jvmTarget.set(JvmTarget.JVM_11)
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)