Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
69 views

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. ...
Da Wolf's user avatar
  • 11
0 votes
1 answer
958 views

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. ...
Ivan  Wu's user avatar
  • 21
0 votes
1 answer
63 views

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) ...
siapost's user avatar
  • 16
0 votes
0 answers
42 views

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 ...
Chegz Zone's user avatar
0 votes
0 answers
11 views

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 ...
Alok Kumar's user avatar
0 votes
1 answer
133 views

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: ...
Volodymyr Pysarenko's user avatar
0 votes
1 answer
66 views

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 ...
Phil's user avatar
  • 13
1 vote
2 answers
92 views

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,...
JetskiS's user avatar
  • 143
1 vote
1 answer
327 views

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 ...
notaorb's user avatar
  • 2,210
0 votes
1 answer
27 views

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} ...
dex's user avatar
  • 11
0 votes
1 answer
36 views

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 ...
Arc Envoy's user avatar
1 vote
1 answer
146 views

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 ...
Murad Eliyev's user avatar
0 votes
1 answer
43 views

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 ...
user avatar
0 votes
1 answer
167 views

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=&&...
BauV's user avatar
  • 1
0 votes
1 answer
2k views

import 'package:flutter/material.dart'; import 'package:zego_uikit_prebuilt_call/zego_uikit_prebuilt_call.dart'; class VideoCallScreen extends StatefulWidget { const VideoCallScreen({ super.key,...
Sarah Messiahal's user avatar
0 votes
1 answer
316 views

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 ...
TopEagle's user avatar
0 votes
1 answer
134 views

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 ...
Sumit Chauhan's user avatar
0 votes
2 answers
76 views

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 ...
lehar's user avatar
  • 11
1 vote
0 answers
168 views

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....
Blasius Nkoloogi's user avatar
-1 votes
1 answer
112 views

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 ...
licannus's user avatar
1 vote
2 answers
62 views

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 ...
Greg's user avatar
  • 13
0 votes
1 answer
155 views

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 ...
Luc Borel's user avatar
0 votes
0 answers
27 views

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 ...
Plem's user avatar
  • 1
0 votes
0 answers
63 views

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: ...
anonymous 6598's user avatar
0 votes
2 answers
85 views

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 ...
skeetastax's user avatar
  • 1,816

1
2 3 4 5
84