Closed danielweck closed 6 years ago
I applied the recommended XCode changes, and all other failures seem to have been resolved.
I will create Pull Requests for the combined fixes for SDKLauncher-iOS
, readium-sdk
and readium-lcp-client
.
Pull Request: https://github.com/readium/readium-lcp-client/pull/48
readium-sdk
PR: https://github.com/readium/readium-sdk/pull/316
SDKLauncher-iOS
PR: https://github.com/readium/SDKLauncher-iOS/pull/100
MacOS: Mojave 10.14 XCode: 10.1 (10B61)
Notably in
platform/apple/src/LCPStatusDocumentProcessing.mm
:if (((NSNumber*)templated_) > 0)
should now be:if ([((NSNumber*)templated_) integerValue] > 0)
(there are more compiler errors, I am unwrapping them...)