promises icon indicating copy to clipboard operation
promises copied to clipboard

Promises is a modern framework that provides a synchronization construct for Swift and Objective-C.

Results 46 promises issues
Sort by recently updated
recently updated
newest added

When creating an app that depends on pod 'PromisesSwift' and that uses static libraries,I get the following error: ``` [!] The following Swift pods cannot yet be integrated as static...

This is to address the issue described in this ticket: https://github.com/google/promises/issues/130

In iOS 16 string are convertible to NSError and because of this promises are getting rejected. Kindly check the line number 28 in below URL where issue is occurring ....

When statically linked, the Promises categories don't get linked and apps crash in Swift UI previews. A workaround may be to add a symbol to the category implementation files that...

Hey guys! With recent release of Xcode 14, Apple introduced Build Timelines. We can now visually see what's the problem in our build times, and I'm gonna be honest -...

Not an issue. Just a question. Is it possible to change the delay time between promise retrys? I would like to implement the Exponential Backoff and Retry Pattern with different...

hi! my project uses this project as a sub dependency via FirebaseCrashlytics, FirebaseInstallations, GoogleDataTransport, and GoogleUtilities/Environment. Recently, we have been experiencing a crash when launching our application on observeOnQueue call....

I have a use case that needs to use Promises, but the old calling code is synchronous. In Swift, is there a way to block the synchronous caller to wait...

## Problem The following code compiles and causes a crash ```swift let somePromise = Promise { return Optional.none } somePromise.then { (v: String) in // causes crash print(v) } ```...