Philip Nagler-Frank
Philip Nagler-Frank
I've also experienced this crash multiple times. I think what triggered it was the second occurence of a repeating alarm. Did not touch the device after I turned alarm off...
I could not get this to compile even with Kotlin 1.6.20 and setting languageVersion to 1.7 Here's my workaround, a bit shorter than the version by @alex-arana : ```kotlin import...
I'm also affected here. Server is 23.0.0, using Windows client 3.4.1. Client freezes a few seconds after starting, waited 30+ minutes and did not resume. Tried deleting `.sync.db` files, but...
@petrus-v thanks for looking into this! It seems like the code you pointed to only reads `/etc/buttervolume/config.ini` inside the container. The readme file however claims I can also put configuration...
This seems to work: ```ts import { PermissionsAndroid } from 'react-native'; PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.POST_NOTIFICATIONS); ```
See https://github.com/nextcloud/desktop/issues/4106 Downgrading the client to 3.3.6 seems to work around the issue.
Fixed for me by updating Cocoapods, see https://github.com/getsentry/sentry-react-native/issues/3547#issuecomment-1911977140
For me, none of the registration callbacks are called on android with the new architecture. Opting out for now https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here#opt-out
Here's what I got 1. Make sure you have a [Bridging Header](https://developer.apple.com/documentation/swift/importing-objective-c-into-swift) and add this line: ``` #import ``` 2. Modify AppDelegate.swift Inside `override func application(…)` before the `super` call,...
@DanGDroid I updated my comment above, should now include everything needed.