We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b41494a + d2d62bd commit e035543Copy full SHA for e035543
CHANGELOG.md
@@ -13,6 +13,8 @@
13
14
## Master
15
16
+- Add Android support [@marcprux][] - [#635](https://github.com/danger/swift/pull/635)
17
+
18
## 3.20.2
19
20
- Fix install script to work with Swift 6.0 [@f-meloni][] - [#627](https://github.com/danger/swift/pull/628)
Sources/Danger/Danger.swift
@@ -1,7 +1,9 @@
1
import Foundation
2
3
-#if os(Linux)
+#if canImport(Glibc)
4
import Glibc
5
+#elseif canImport(Android)
6
+ import Android
7
#else
8
import Darwin.C
9
#endif
0 commit comments