4,195 questions
1
vote
2
answers
69
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
1
answer
958
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
1
answer
63
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
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
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 ...
0
votes
1
answer
133
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
1
answer
66
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 ...
1
vote
2
answers
92
views
Use string in another sub
I am aware I'm not the first to have this question. Still I cannot find the solution.
I have some vba code for my solidworks, that works fine. However, I want to use a string that I defined in one sub,...
1
vote
1
answer
327
views
Calling convention and stack, returning value from call?
Does anyone know what happens after a call pushes a value on the stack, it is popped off by callee, then the return address is popped off by callee? Perhaps with some assembly?
I think for the ...
0
votes
1
answer
27
views
Can't supply assets via call Solidity
I have contract and want to supply testnet USDC to Compound on Sepolia, but this doesn't work with call opcode in Solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {IERC20} ...
0
votes
1
answer
36
views
how to open Call setting screen from android app programmatically
I am trying to navigate from my app to device's Call setting screen and voicemail setting screen.
I am looking for Action to create intent that can navigate to setting screen.
or other way to open ...
1
vote
1
answer
146
views
How can I remove a placed call with TelecomManager.placeCall()?
I am working on an application that can manage calls. And the call provider platform is Twilio. But there is an issue when I make an outgoing call using TelecomManager.placeCall(). It works for the ...
0
votes
1
answer
43
views
Rxjs sequential API calls results with only one call
I do have such a code:
enum State {
SUCCESS = 'success',
ERROR = 'error'
}
const files: File[] = [...some files here];
const toBase64 = (file: File): Observable<string>; //this works ...
0
votes
1
answer
167
views
Execute a Oracle query providing a parameter
My query takes a parameter and needs to be executed for all values coming from a table. How do I call my query? Please help.
Query to execute:
select &&pnbr, pname from PERSON where pno=&&...
0
votes
1
answer
2k
views
How will i add call invitation (signaling) in zego cloud?
import 'package:flutter/material.dart';
import 'package:zego_uikit_prebuilt_call/zego_uikit_prebuilt_call.dart';
class VideoCallScreen extends StatefulWidget {
const VideoCallScreen({
super.key,...
0
votes
1
answer
316
views
Is there a way to use .call function to transfer ERC20 token?
I am using this function to transfer ERC20 token to target address in solidity.
IERC20(rewardToken).transfer(target, amountTo);
While compiling this, it was giving me warning below.
Warning!
So I've ...
0
votes
1
answer
134
views
How to play wav file during voice call in Android 13 so that the receiver can listen the sound?
I'm trying to build an application which can push an audio file inside the ongoing voice call so that receiver can listen the sound and we can record the audio through application
I found some codes ...
0
votes
2
answers
76
views
What should the object type be to have a chained call?
Can someone please tell me what the difference is between the two codes for class Point and class Dog? Dog compiles without any error. Point throws an error if the point object is from the stack and ...
1
vote
0
answers
168
views
agora_rtc_engine implementation for video and voice call within a chat module
What went wrong:
Running Gradle task 'assembleDebug'...
Execution failed for task ':agora_rtc_engine:buildCMakeDebug[arm64-v8a]'.
Running Gradle task 'assembleDebug'...
com.android.ide.common.process....
-1
votes
1
answer
112
views
Android whastapp call to reject or not
Android/Java: I'm trying to block WhatsApp calls but I'm not being able to do it. Does anyone have a way to intercept the WhatsApp call? I would only need to obtain the number and the call button, to ...
1
vote
2
answers
62
views
Run function several times VBA
I want to call a function several time (with differents values) when I click on a button.
But when I click on it, the function run 1 time (for chart 7 in the example) and then stop. The function don't ...
0
votes
1
answer
155
views
Call a variable from a str
I have an Excel spreadsheet - that I read via pandas - with some values corresponding to A + x ; A being an already defined value and x being an int.
This Excel is a list of subjects with each subject ...
0
votes
0
answers
27
views
one global var with two values within 1 module after import
I have this multiload module that multiprocess.Popen two other modules. Module1 has to call a function in module2 and change a (for module2 global) var. But after that call there live two different ...
0
votes
0
answers
63
views
Mrt.exe launch in python
How to launch MRT.exe in python?
I tried writing method for launching this program in my python program.
here is code:
@typing.override
@functools.cache
def __interactive_mode__(self) -> None:
...
0
votes
2
answers
85
views
How do I call multiple python functions by reference to operate on a variable so that I can change the sequence of function calls easily?
I want to create a 'function pipeline', like a factory.
Let's say I have the following functions:
def func1(var):
var = # do something with var
return var
def func2(var):
var = # do ...