Results 96 comments of ivnsch

I'm fine with SPM dependency, just not cocoapods, please.

> > I'm fine with SPM dependency, just not cocoapods, please. > > Cocoapods is not required to use the SDK. You can use either SPM or Cocoapods How exactly?...

@buenaflor please do! I'd be happy to test it.

@buenaflor any updates? I've some time to integrate and test this 😁

@frankois944 nice, thanks! I'm having trouble getting it to work however ``` listOf( iosArm64(), iosSimulatorArm64() ).forEach { iosTarget -> iosTarget.binaries.framework { baseName = "ComposeApp" isStatic = true export(project(":agents:composeApp")) } iosTarget.compilations...

In case it helps anyone, I confirm that spmforKmp solved this problem for me!

@jamesmkrieger is it planned to do a new release soon? the last one is from over a year ago..

What I would do is extend the trait and have methods that return actions, and implement the library's methods such that they use these methods. This way you make the...

@johanstenberg92 ``` scala class DbCatDao extends CatDao { def saveAction(input: Cat): DBIO[Cat] = { ((Table returning Table.map(_.id) into ((u, insertId) => input.copy(id=insertId))) += input) } def save(input: Cat): Future[Cat] =...

@asazernik How does `DBIO.from` work for a transaction? Doesn't `db.run(action)` trigger the database access immediately? If a database operation is executed to update Cat and separate one to update Dog,...