(int platform, String variant)
| 452 | |
| 453 | |
| 454 | public boolean supportsArch(int platform, String variant) { |
| 455 | // If this is a universal library, or has no natives, then we're good. |
| 456 | if (multipleArch[platform] == false) { |
| 457 | return true; |
| 458 | } |
| 459 | return getApplicationExportList(platform, variant) != null; |
| 460 | } |
| 461 | |
| 462 | |
| 463 | static public boolean hasMultipleArch(int platform, List<Library> libraries) { |
no test coverage detected