Commit a5d9f39
authored
fix: Add visionOS to platform checks (#144)
* fix: Add visionOS to platform check for native providers
The `#if os(...)` guard on the native app version and bundle identifier
providers was missing `os(visionOS)`, causing a build error on visionOS:
"Cannot find 'nativeAppVersionProvider' in scope".
* fix: Add visionOS to DeviceIdentifier platform check
Same issue — the `#if os(...)` guard was missing `os(visionOS)`,
causing 'data_blocking' to be unavailable on visionOS.1 parent 5a28593 commit a5d9f39
2 files changed
Lines changed: 2 additions & 2 deletions
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
0 commit comments