TWIL June 5th 2026
- Any invocation of
display_page getting all its data from ReactHelper makes it really easy to add/modify that data
- Adding a network call to URL construction in an SDK which previously did not need one is not easy at all
- the function constructing the URL now needs to be async
- so its callers also need to be async
- so the sample app needs to call them from async functions (sometimes)
- just a lot of hassle
- If your CI job just randomly stops sometimes, it might be going OOM
- If it's running JS unit tests with Jest, you might be able to fix this by limiting
max-workers
- Adding a network call to URL builders in Android was actually a bit easier than JS
- Just did it with a callback, so maybe
async/await was a mistake haha
Links