w4ugit
w4ugit
When I try to subscribe, I get this error "Error sending data" This happens in the file vendor/repejota/nats/src/Nats/Connection.php What could be a mistake?
I have set the following settings ``` useEffect(() => { const options = { ios: { appName: 'App', }, android: { alertTitle: 'Permissions required', alertDescription: 'This application needs to access...
OS: MacOS Ventura 13.4.1 NPM: 9.7.1 NODE: v19.7.0 I ran `yarn install`, it went without errors. But when I tried to do the `pod install`, I got an error ```...
I have the following code in app.js ``` useEffect(() => { if (Platform.OS === 'ios') { VoipPushNotification.addEventListener('register', token => { store.dispatch(setApnsToken(token)); }); VoipPushNotification.addEventListener('notification', notification => { Alert.alert('Call answer'); const incomingCallAnswer...
Not at all, but there are models where in addition to the notification there is also a badge next to the application icon. the client asks to pick it up,...
Android version: 12 "react-native": "0.66.3" "redux-persist-filesystem-storage": "^4.1.0" "react-native-blob-util": "^0.16.0" While working with the application - everything is fine, the data is saved. I close the application - the data is...
``` { setTagsDesc(tagsDesc.filter((tag, index) => index !== i)); }} handleAddition={(tag) => { setTagsDesc([...tagsDesc, tag]); }} handleDrag={() => (tag, currPos, newPos) => { const newTags = tagsDesc.slice(); newTags.splice(currPos, 1); newTags.splice(newPos, 0,...
``` document.addEventListener("DOMContentLoaded", () => { try { FilePond.registerPlugin(FilePondPluginImagePreview) } catch (e) { console.log("FilePond plugins registration failed:", e) } document.querySelectorAll("input.filepond-input-multiple").forEach(e => { const existingFiles = e.dataset.files ? JSON.parse(e.dataset.files) : []; const...