Izadi Egizabal Alkorta
Izadi Egizabal Alkorta
It looks like with the latest beta (`2.0.0-beta.66`) `vue-cal` is working again, but it still needs the Vite dep optimisation 😅
@lokkilok try adding that `vuecal.common.js` to `optimizeDeps` in the vite config file, it helped in my case. ``` export default { plugins: [vue()], optimizeDeps: { include: ['vue-cal/dist/vuecal.common.js'] } }; ```...
I am also facing the same issue. I've tried adding the dependency manually: - Using SPM - Cocoapods (which told me that the dependency already existed if I added via...
I don't know how I could help but this would be indeed useful :)
thanks for the update @Reedyuk! i solved the issue last time by creating a new project from scratch and selecting cooapods from the kmm plugin setup wizard. not sure why...
i just encountered this issue when upgrading my project's AGP to `8.2.0-alpha13` and kotlin to `1.9.0`, it was working before. i was wondering if the kotlin update broke it but...
i just tried cleaning the project, invalidating caches and purging `$USER_HOME/.gradle` but that didn't work, unfortunately. in my case rolling kotlin back to `1.8.22` seems to prevent the error though...
I found this [repo](https://github.com/tginfo/sticker-importer/) that helped me figure it out! I basically was missing some intent queries: ``` ``` [Source](https://github.com/tginfo/sticker-importer/blob/master/android/app/src/main/AndroidManifest.xml#L4C1-L17C15)
Is there any update on this?
i don't have a reproducible project to share, but i am also getting this error by accessing `AuthState.isEmailVerified` since i upgraded to `2.1.0`. reverting back to `2.0.0` seems to fix...