@@ -38,11 +38,12 @@ class API_APIPackageTests: XCTestCase {
3838        package . platformCompatibility =  [ . wasm] 
3939        XCTAssertEqual ( package . groupedPlatformCompatibility,  [ . wasm] ) 
4040
41-         package . platformCompatibility =  [ . android] 
42-         XCTAssertEqual ( package . groupedPlatformCompatibility,  [ . android] ) 
41+         // Temporarily removed until Swift.org is ready for Android compatibility information.
42+         // package.platformCompatibility = [.android]
43+         // XCTAssertEqual(package.groupedPlatformCompatibility, [.android])
4344
44-         package . platformCompatibility =  [ . macOS,  . linux,  . wasm,  . android] 
45-         XCTAssertEqual ( package . groupedPlatformCompatibility,  [ . apple,  . linux,  . wasm,  . android] ) 
45+         //  package.platformCompatibility = [.macOS, .linux, .wasm, .android]
46+         //  XCTAssertEqual(package.groupedPlatformCompatibility, [.apple, .linux, .wasm, .android])
4647    } 
4748
4849    func  test_platformCompatibilityTooltip( )  throws  { 
@@ -63,20 +64,22 @@ class API_APIPackageTests: XCTestCase {
6364        package . platformCompatibility =  [ . wasm] 
6465        XCTAssertEqual ( package . platformCompatibilityTooltip,  " Wasm " ) 
6566
66-         package . platformCompatibility =  [ . android] 
67-         XCTAssertEqual ( package . platformCompatibilityTooltip,  " Android " ) 
67+         // Temporarily removed until Swift.org is ready for Android compatibility information.
68+         // package.platformCompatibility = [.android]
69+         // XCTAssertEqual(package.platformCompatibilityTooltip, "Android")
6870
6971        package . platformCompatibility =  [ . linux,  . wasm] 
7072        XCTAssertEqual ( package . platformCompatibilityTooltip,  " Linux and Wasm " ) 
7173
7274        package . platformCompatibility =  [ . macOS,  . linux,  . wasm] 
7375        XCTAssertEqual ( package . platformCompatibilityTooltip,  " Apple (macOS), Linux, and Wasm " ) 
7476
75-         package . platformCompatibility =  [ . macOS,  . linux,  . wasm,  . android] 
76-         XCTAssertEqual ( package . platformCompatibilityTooltip,  " Apple (macOS), Linux, Wasm, and Android " ) 
77+         // Temporarily removed until Swift.org is ready for Android compatibility information.
78+         // package.platformCompatibility = [.macOS, .linux, .wasm, .android]
79+         // XCTAssertEqual(package.platformCompatibilityTooltip, "Apple (macOS), Linux, Wasm, and Android")
7780
78-         package . platformCompatibility =  [ . iOS,  . macOS,  . linux,  . wasm,  . android] 
79-         XCTAssertEqual ( package . platformCompatibilityTooltip,  " Apple (iOS, macOS), Linux, Wasm, and Android " ) 
81+         //  package.platformCompatibility = [.iOS, .macOS, .linux, .wasm, .android]
82+         //  XCTAssertEqual(package.platformCompatibilityTooltip, "Apple (iOS, macOS), Linux, Wasm, and Android")
8083    } 
8184
8285    func  test_reformatYMLToSwiftOrgStyle( )  { 
0 commit comments