Skip to content

Commit

Permalink
Compile for Android (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
johankool authored Nov 12, 2024
1 parent 770f990 commit 05c9f02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/IssueReporting/Internal/Warn.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if os(Linux)
#if os(Linux) || os(Android)
@preconcurrency import Foundation
#else
import Foundation
Expand Down
2 changes: 1 addition & 1 deletion Tests/XCTestDynamicOverlayTests/UnimplementedTests.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if !os(Linux) && !os(WASI) && !os(Windows)
#if !os(Linux) && !os(WASI) && !os(Windows) && !os(Android)
import XCTest

final class UnimplementedTests: XCTestCase {
Expand Down
2 changes: 1 addition & 1 deletion Tests/XCTestDynamicOverlayTests/XCTContextTests.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if !os(Linux) && !os(WASI) && !os(Windows)
#if !os(Linux) && !os(WASI) && !os(Windows) && !os(Android)
import XCTest
import XCTestDynamicOverlay

Expand Down

0 comments on commit 05c9f02

Please sign in to comment.