Winson Chiu
Winson Chiu
Just wanted to note that I'm also seeing this on the latest 9.0.0-SNAPSHOT. If you just add another binding to any class, it fixes itself. I have no idea what...
So there's a workaround if this happens. Need to clean and then delete the build cache (`$HOME/.gradle/caches` for me), causing a full rebuild. Then builds should read the right ID....
I'm able to import the project just fine from downloading the repository and then using File > New > Import Project... within Android Studio and then selecting the build.gradle file....
I appreciate the response, although sorry to interrupt your vacation time. Encoding the fragment makes sense. I ended up writing my own parser [here](https://github.com/TheKeeperOfPie/ArtistAlleyDatabase/blob/73235e38dc7749ad680378000f59a3aab8373468/composite/json-schema/src/main/kotlin/com/thekeeperofpie/artistalleydatabase/json_schema/JsonSchemaTask.kt). In the `Names` `patternProperties` case (handled...
I have a similar use case where I want to export a SQLite database to JSON, but I can't read the entire table into memory. For what it's worth, I...
Yes, I can reproduce in a sample. It seems this is actually a conflict with the Fabric plugin. If you create a new project in AS with all the defaults...
Also, semi-related, but I noticed the plugin has a explicit dependency on 3.0.0-beta7. That actually makes the default project not resolve given your snippet in the README. You actually need...
I'm in the middle of migrating modules to KMP, and it doesn't prompt me at all. Because `Res` is already accessible in root, it automatically references it without asking to...
No, that PR should fix it. There's no longer a Res at the root because the generated name is changed. Thanks for the change, will make it so much easier...
Has there been any progress on this? I noticed the API already exists on `TestCoroutineScheduler` [here](https://github.com/Kotlin/kotlinx.coroutines/blob/adc1ca568067fc87efe54d7eb011680788dc7ad2/kotlinx-coroutines-test/common/src/TestCoroutineScheduler.kt#L188), but it's marked `internal`. Any way that could just be marked public? That would...