Android :: Google Voice Outgoing Calls Not Working
Nov 2, 2010
Seems to be a big problem with Google Voice starting sometime last night. Outgoing calls from an Android phone are not working. The phone number dialed just rings and rings and is rarely ringing the other end. When it does ring the other end, it's showing the relay number, not the Google Voice number and when the person picks up, no one's there.Relay number is not letting me make calls with the google voice app.Google Mobile Help Current work around is to either call your Google Voice number directly and use it that way. Or use the web interface to call back. Still haven't found any confirmations from Google about this or if a fix is coming.
View 1 Replies
Jun 14, 2010
I can't make calls using google voice. What happens is I will dial a number and press send, then something will pop up asking me if I want to make the call with GV or without GV. I choose WITH GV and it will start out okay, but after 5 seconds it goes back to the normal call screen and calls regularly with out GV. Is there anyone who can help me out with this? I have a droid eris.
View 8 Replies
View Related
Jan 15, 2010
Anyone know why I would get a lot of calls to my google voice number on my bill? I never actually call my voicemail. I always use the gv app to read the transcription of listen to the message play if I can't understand the transcription.
View 6 Replies
View Related
Feb 26, 2010
I have Google voice with my own cell #, not a GV #. But when I go to make a call with with the regular keypad or via GV there is no option to place the call with GV. When I go to GV settings the only options it has are never use GV, ask every time I place an international call, or use GV for international calls only. Never a mention of using GV for domestic calls. Anyone know why? Currently using Droid with 2.0.1.
View 1 Replies
View Related
Jul 3, 2010
Everything was working fine until updated to frf91. Now I cannot receive any incoming calls but can make outgoing calls. Anyone else having this problem? Or know how to fix it?
View 1 Replies
View Related
Apr 16, 2010
is there a way to make all incoming Google Voice calls always ring? I want to use Google Voice as an emergency line so even if my phone is on silent, it'd still ring anyone know if that's possible?
View 4 Replies
View Related
Dec 11, 2009
Whenever I have someone call my Google Voice number, it rings for a split second, then goes immediately to a missed call icon on my droid. It will then ring for another split second, and add yet another missed call. Every call coming to my number gets around 5 missed calls. The call from their end seems normal, as all they hear is ringing. On my end, I cant even answer the call because it vanishes right away.
View 8 Replies
View Related
Jun 4, 2010
I've got the google voice app installed and set to make all calls through GV but finding the phone app isn't making calls using GV. Anyone else running into this? Tried restarting the phone with no change.
View 3 Replies
View Related
Mar 25, 2010
I can text, receive text, and also receive calls from my Google Voice #.But when I try to make calls using my google voice # it keeps showing my actual phone number to the people I'm calling.I've set the phone to ask whether or not to use google voice or actual # and I've also tried the use google voice for all calls and I get the same results for both, it keeps calling from my actual #.Hopefully I'm making sense with my problem.
View 5 Replies
View Related
Nov 22, 2010
so i was playing w/my google voice, and now all my calls to my Cell number somehow go to my google voice number which is a different number then my cell number. I just want my calls to my cell to go to my cell voicemail but I can not figure out how to deactivate whatever I've done. Can anyone help?
View 6 Replies
View Related
Nov 30, 2010
After updating to 2.1 on my X10, I noticed that I cannot use Google Voice to make phone calls (either selecting "use Google Voice for all calls" or "use Google Voice for international phones). It seems that the issue has to do with the SE dialer. Is there a way to go to the stock generic Android dialer? If not, any other suggestions?
View 2 Replies
View Related
Jul 22, 2010
Looks like the new GV app gives each contact an individual number when calling out.This means that instead of being able to program one outbound number to my Fam and friends list and getting free outbound calls, I am now back to paying for my minutes used on each call, reguardless if it's GV or Standard.
View 14 Replies
View Related
May 12, 2009
public final Cursor query (Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) Query the given URI, returning a Cursor over the result set.Parameters uri The URI, using the content:// scheme, for the content to retrieve. projection A list of which columns to return. Passing null will return all columns, which is discouraged to prevent reading data from storage that isn't going to be used. selection A filter declaring which rows to return, formatted as an SQL WHERE clause (excluding the WHERE itself). Passing null will return all rows for the given URI. selectionArgs You may include ?s in selection, which will be replaced by the values from selectionArgs, in the order that they appear in the selection. The values will be bound as Strings. sortOrder How to order the rows, formatted as an SQL ORDER BY clause (excluding the ORDER BY itself). Passing null will use the default sort order, which may be unordered.
View 3 Replies
View Related
Oct 9, 2010
Is there any way to make google voice calls to an international number (from the US to South Korea) for free using the Google Voice app on my Dx? How do I make sure Google Voice is making the call and that I am not being charged international fees?
View 1 Replies
View Related
Feb 16, 2010
Does anyone know how I can change something in the settings to remove the +1 in front of all of my incoming numbers?
Example: +1(555)555-5555
When someone leaves me a message and i press callback it calls that number and Verizon wont recognize that +1 extension in front of the area code.
View 3 Replies
View Related
Jun 18, 2009
On android, is it possible to listen for all outgoing call events? i.e. my code get invoked when users make an out-going phone call? One possible way is to periodically pull call-log database for that information. But I would like to know if i can register for a notification when outgoing call happens?
View 3 Replies
View Related
Nov 16, 2010
I'm a newbie android developer, I'm trying to develop an application; a background service which listens to incoming/outgoing calls/messages.
View 1 Replies
View Related
Aug 18, 2010
I'm having troubles with intercepting outgoing calls. In fact, it works perfectly on emulator 2.1 and 2.2, and was running also perfectly on my HTC Desire when i was in 2.1 version.
View 8 Replies
View Related
Aug 10, 2009
I have started developing a tool, which should react on an outgoing call or sms and also to be started at boot time. The start at boot time does work properly, but I'm not able to receive the broadcasts for the outgoing calls.
Who can tell me, what is wrong with my code? For this, I added two receivers in my manifest and implemented the broadcast receivers:
manifest.xml: <receiver android:enabled="true" android:name=".BootUpReceiver"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" /> </intent-filter> </receiver>
<receiver android:name=".TelephoneViewer" android:enabled="true" android:exported="true"
android:permission=""> <intent-filter> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
<action android:name="android.intent.action.PHONE_STATE" />
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter> </receiver>
TelephoneViewer.java: public class TelephoneViewer extends BroadcastReceiver {
@Override public void onReceive(Context context, Intent intent) {
Log.d(this.getClass().getSimpleName(), "Telephoneviewer.onReceive()");
Toast.makeText(context,"TelephoneViewer.onReceive()", Toast.LENGTH_SHORT).show(); }
View 4 Replies
View Related
Apr 25, 2010
Is there an app available to make a password required to make a call?
View 1 Replies
View Related
Jun 5, 2010
I just installed google voice on my new EVO, and I can't get it to dial with gv, it just dials from my cell number. I have went into gv and changed the setting to "always dial using google voice" and still it dials with my cell number. Any ideas what I am doing wrong?
View 5 Replies
View Related
Sep 28, 2010
how should I create a service that would keep on running in the Background and listen for incoming and outgoing calls? I don't want the service to die at any point in time.I have created a Broadcast Receiver in my service class that is set for ACTION_PHONE_STATE_CHANGED action.In my BroadcastReceiver, I have set up a PhoneStateListener that would listen for changes in phone states.Is this the right approach?
View 3 Replies
View Related
Sep 1, 2010
I've done a bunch of searching on google and elsewhere on this in the past but have not seem to have found anything on the topic, but it came back on my mind today after making a call.
Almost [anytime?] I am speaking on the phone [with anyone?] I will intermittently get a "touch tone" sound blasted in my ear randomly. At first I thought it may have been because my ear/face was hitting a button on the screen, but this happens even when the keypad is hidden. The other odd thing is that it only seems to happen on MY end, the caller on the other end will *NEVER* hear it when I have asked.
I *do* use google voice for all my calls. I do not know if this happens outside of GV or if it has anything to do with it. Any ideas why this could be, or has anyone run into this issue?
Today it was in my mind because it was happening a LOT (every minute or so) when I was talking to one of my friends. I never took note about it happening more often with her vs. other people or not [honestly, I don't use TALK so much on my phone] but we had a longer conversation today and it kept happening randomly.
It's definitely coming through the headset and not out of the speaker (ie: it will drown out the voice on the other end), and I did disable all touch-tone sounds on the phone. It is the sound you would receive through a regular phone system through the headset, not a chinsy "beep" or something the phone itself would make, it's coming across the "line" but again only I am hearing it.
View 7 Replies
View Related
Dec 10, 2009
Since the Google Voice app update a few weeks ago, I notice that when placing calls, either the wrong number is called OR it doesn't show the proper caller ID (picture or name). Is anyone else experiencing this issue as well?
View 3 Replies
View Related
May 10, 2010
Is there a setting or app that can block outgoing calls to people who are NOT on your contact list?
View 5 Replies
View Related
Oct 2, 2010
I've gotten some complaints about the sound quality of my Evo compared to other cell phones on outgoing calls. And reviews have mentioned that the phone aspect of the Evo is not its strong suit.Is it possible that future updates could improve sound quality? Or is that strictly a hardware issue?
View 5 Replies
View Related
Jan 4, 2010
I have a new Moto Droid and the google voice app was working fine at first but now it isn't. I cleared the cache and data in the app but it didn't fix the problem. Any ideas?
View 8 Replies
View Related
Aug 6, 2010
Google voice won't work on my 2.2. I set it up but when I call it gives me a verizon error. Any ideas?
View 9 Replies
View Related
May 4, 2010
I like to SMS these numbers for my contacts so I can send the same text to multiple people. Usually the texts also appear in my Google Voice App, but since today the people haven't been getting my texts. I know this by them telling me and the texts not appearing in my GV app.
View 1 Replies
View Related
Oct 19, 2010
It will take incoming calls, send and receive sms and use data just fine but when I go to make an outgoing call I get this screen. The only way to fix it is to reboot the phone. Once I had to reboot twice in a row.
View 8 Replies
View Related