Fixed
Status Update
Comments
el...@google.com <el...@google.com>
el...@google.com <el...@google.com> #2
For Kotlin 2.0 and KSP 2.0 the Cannot change attributes of configuration ':composeApp:debugFrameworkIosX64' after it has been locked for mutation
really seems like a KSP issue. You should file a bug in their repository with a sample app if possible.
If you downgrade to Kotlin 1.9 then things 'should' work, there are example apps out there with such configuration, like the following one:
ap...@google.com <ap...@google.com> #3
Yes this does seem like a KSP issue however it only starts happening when room is added to the project. As the template project compiles just fine.
Will try to use the example provided by you to check if it fixes the issue.
Will try to use the example provided by you to check if it fixes the issue.
Description
Component used: Room. Version used: 2.4. Devices/Android versions reproduced on: Android 11.
I am trying to get data with multimap .
This is a very simple
LEFT JOIN
using aLEFT JOIN
request such as in the documentation.But both my tables have the non-null field named "identifier". When you call
LEFT JOIN
query in SQLite, but there is no row in the second table, you will get NULL for ALL values of the second table (see screenshot). So, it seems Room just try to verify for null these null values. It is a bug. Room should return an empty list forList<PostEntity>
.DB schema:
Dao:
Error: