3,561 questions
0
votes
0
answers
24
views
Why is my store not updating in my indexedDB?
First time playing with indexedDB I've been reading though much documentation and authored the approach of:
import {openDB, deleteDB, IDBPDatabase} from 'idb'
const ORIGINAL_STORE = 'original'
const ...
0
votes
2
answers
47
views
Android Permission issue
I'm using the following permissions in my Flutter application, which are necessary for features like image/video access, camera usage, audio recording, and file management:
<uses-permission android:...
0
votes
0
answers
24
views
Magento 2 - Multiple Store with common store view for all stores
I am working on customization for multistore in Magento 2.
My Website is having multistore and store view. But due to costing issue of Adobe commerce on large number of multistore, I am thinking to ...
2
votes
1
answer
80
views
How to make a computed Signal react to both an @Input Signal and an NGXS lazy selector?
I'm working with Angular signals and NGXS state management, and I'm trying to create a computed signal that updates both when my input signal changes and when the store updates.
I have a lazy selector:...
0
votes
1
answer
68
views
Android: How to check if the user is logged in to the Play Store
Using Kotlin, I want to verify that the user is logged in to the PlayStore before sending it to update the app.
I'm using credential manager because the other options I could find are deprecated.
...
0
votes
1
answer
132
views
Maven dependency problem between spring data mongo and langchain4j mongo atlas
I am trying to integrate LangChain4j to my spring boot app that, by the way, is using Spring Data mongo. One of the things I realize (obviously) is that I dont want to use an in memory store bur ...
0
votes
0
answers
13
views
Generation agent in storage without the use of the store block
How I can do to generate a new agent directly in the storage?
when new agent is generate by source, it moves trhough the path to arrive at storage, but i want that the new agent is generated in the ...
0
votes
1
answer
81
views
Why the newly added data is not reflecting in the table component of primevue?
I am trying to create a Expense Tracker where a super user could create user accounts and its data is stored inside a pinia store. The table component should detect the change in the user account ...
-1
votes
1
answer
52
views
Type Check the Item in #each loop in svelte
I have a store defined in the store/stores.js as follows:
import { get, writable, readable } from "svelte/store";
export const labelStore = writable([])
The labels in my program all of type ...
1
vote
1
answer
41
views
Is it safe to dispatch actions in store listener callbacks?
I have a Redux webpage with a complex UI component (a map). The component's visual state and its internal model depend on the current Redux store's state and browser state (viewport resolution, DPI, ...
1
vote
0
answers
652
views
Is it possible to delete an android developer account if we don't verify account with ID?
I recently learnt that it is impossible to delete a google play developer account if there are applications published whatever it is with previous (former in the past) or actives installs recorded by ...
1
vote
1
answer
70
views
C++ how to make data for store integer number and selecting from vector
Hello I'm a beginner for C++ I don't know many syntax.
My question is how to store data found from int A,B,C.
A B C generate random value.
How to make store input value from random int like table I ...
0
votes
0
answers
16
views
How to add provisioning profile to IPA file?
I downloaded an IPA off the web and I want to upload it to WORKSPACE ONE UEM by vmware for demo testing, but I keep getting errors I need to attach provisioning profile
How can I edit the IPA so I can ...
1
vote
1
answer
202
views
Can I post a non-signed MSIX app on the Microsoft store?
I just created an app that I want to publish to the Microsoft Store, so I packed it into MSIX format but I get this message when trying to launch the package (see picture):
This app package is not ...
1
vote
1
answer
43
views
How to Implement NgRx Effect to Conditionally Trigger Modal Based on Product Price?
I want to check if the cost of the product is over 10 using NgRx state management. Then, if the product value is over 10 I want to show the
sval
(sweetalert) element.
I have this code in reducer.ts:
...