4,196 questions
1 vote
0 answers
41 views
python numba calling problems
I was writing code for the simulation of the fluid dynamics of a layer of water. It has a function of solid_liquid_layer_angular_velocity_change: def solid_liquid_layer_angular_velocity_change( ...
1 vote
2 answers
76 views
Flutter ElevatedButton doesn't respond
I have an application with a form and now with a little experimental refactoring from last week 2 buttons doesn't do anything. Logging just say "button was click " but no method is called. ...
0 votes
0 answers
34 views
Pickup webrtc call using headset button
I've a web application using WebRTC capabilities to handle phone calls. My customers would like be able to pickup calls using headset button like they use to do with a desktop application. I didn't ...
0 votes
1 answer
966 views
Is MCP (Model Context Protocol) applicable for mobile client-side tools?
I’m developing an Android chat assistant app, which can convert an user query to tool calls by invoking a backend service API on cloud. In my case, many tools must be run on mobile client side (i.e. ...
0 votes
3 answers
372 views
CALL QSYS2.QCMDEXC AS400
I'm trying to run the command from .NET C# using non-query SQL commands on the AS400. CALL QSYS2.QCMDEXC('CPYSPLF FILE(AUMENTO1) TOFILE(*TOSTMF) JOB(557767/RAB/AUMENTO1) SPLNBR(1) TOSTMF(/REPORTES/...
0 votes
1 answer
64 views
How to make phone vibrate during a call on the latest Android?
I developed a simple dialer app with a custom ringtone and vibration using InCallService. On Android 8 it works as intended. On Android 13 the code works (without call), but during a call (ringing) ...
0 votes
0 answers
26 views
Maximum call stack exceeded
Issue: I used Clerk middleware, but it didn't work, and I encountered a Maximum Call Stack Error. Additionally, my middleware.ts file sometimes doesn’t compile. Here’s my middleware.ts file: import { ...
0 votes
0 answers
42 views
Want to get call history on android app. But Playstore rejecting app.(kotlin or java)
I am developing an app that retrieves call history to send WhatsApp messages to specific numbers. However, Google Play Store keeps rejecting the app, citing that it needs to be a default dialer app or ...
0 votes
0 answers
62 views
How to detect when a user picks up a call in a Cordova plugin
I am working on a Cordova application, and I need to detect when a user picks up a phone call. Specifically, I want to know when the microphone is being used for the call (in call mode) without ...
0 votes
0 answers
11 views
Copy a mobile number from Google, click the call icon on the Google screen, and redirect to the `MainActivity` screen in an Android Java application
I am implementing a feature similar to Google’s functionality, where the user can copy a mobile number and click the call icon on the same screen. This action should redirect the user to the ...
1 vote
1 answer
51 views
Directly calling a method in JS works, but not with .call or .apply
I have a node resulting from a call let node = document.getElementById('myID'); node is a Node, which has a classList object that has a remove() method This works for me: node.classList.remove('alert'...
0 votes
1 answer
143 views
How to add a big quantity of numbers in Call Directory Extension?
I need to implement a logic for adding a big quantity of numbers into the Call Directory Extension. I use this function for generating and adding numbers: func generatePhoneNumbers(from pattern: ...
0 votes
0 answers
97 views
Assembly Calls Itself [duplicate]
I am rather new to assembly and have been trying to understand what is happening with the call instruction within this code. I have this simple C++ program that I compiled and disassembled with gdb. #...
0 votes
1 answer
72 views
Create a subset of groups with mutate deplyr calculate R2
I have a dataset df. I would like to make two groups, containing a= Special and b=Up+ Down+ Left. Then I would like to have 2x determination coefficient and 2 regression lines for each subgroup in one ...
2 votes
0 answers
115 views
FlutterCallkitIncoming - Event Listener not working when app is terminated
I implemented the FlutterCallkitIncoming ( CallKit - pub.dev ) in my project. The call screen using FlutterCallkitIncoming will show when the notification is received from the firebase. Until this ...