Skip to content

Commit 56864e0

Browse files
sleepdefic1tfaustbrian
authored andcommitted
fix(manifest): Correct Supported Platforms (#107)
The current library manifest uses a wildcard `*` for the `platforms` value incorrectly signifying that it supports all platforms. This is incorrect as the Cpp SDK's only officially support the espressif8266 & espressif32 platforms.

This PR corrects this discrepancy.
1 parent afb0b3e commit 56864e0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

library.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
}
1717
],
1818
"frameworks": "arduino",
19-
"platforms": "*",
19+
"platforms": [
20+
"espressif8266",
21+
"espressif32"
22+
],
2023
"dependencies": [
2124
{
2225
"name": "micro-ecc"

0 commit comments

Comments
 (0)