Aleksandar Ilic
03/20/2025, 11:14 AMcash-app-paging-runtime-ui-kit
?
I have a KMP shared library which gets exported as XCFramework so that native iOS app can use the data layer which exposes Flow<PagingData<T>>
. When I added `api("app.cash.paging:paging-runtime-uikit")`to iosMain
for iOS project to get PagingCollectionViewController
I started getting following error when assembleXCFramework
starts.
The error is:
* Source files:
* Compiler version: 2.1.10
* Output kind: FRAMEWORK
e: java.lang.IllegalStateException: IrClassSymbolImpl is unbound. Signature: androidx.paging/NullPaddedList|null[0]
at org.jetbrains.kotlin.ir.symbols.impl.IrSymbolBase.getOwner(IrSymbolImpl.kt)
Both paging libraries are at 3.3.0-alpha02
. Anyone have an idea what is wrong here? Thanks!Guyaume Tremblay
03/20/2025, 12:32 PM