Affichage des articles dont le libellé est send. Afficher tous les articles
Affichage des articles dont le libellé est send. Afficher tous les articles

mercredi 26 mars 2014

Is there any way to send the nook color display to a TV? With hdmi cable or wireless topic




Is there any way to send the nook color display to a TV? With hdmi cable or wirelessly?
Is there an app that allows mirroring the display possibly?

Nook Color rooted CM7, Phiremod returns



Sent from my ASUS Transformer Pad TF300T using xda app-developers app





lundi 24 mars 2014

[Q] Store and Send data automatically Using SQLite Database topic




Hi my app will do wifi scan and send the data (using JSON Array) to splunk server(web server) periodically, now at the time of wifi disconnection I cant send, so I am planning to store the scan result using SQLite database and automatically send them to server when it reconnect to the wifi network. Kindly help me how to do that.

FYI: when the user is disconnected the app will scan and store data for every 1 min and when reconnect it should send automatically the stored data to the server.

I can start the scan when disconnection happens but dont know how to store the data in JSON format in SQLite and send them automatically to server without getting request form the server.

Thanks in Advance





Send idle wakelock topic




Anyone know what this is/does etc?



Sent from my Nexus 5 using Tapatalk





mardi 18 mars 2014

[Q] Htc one x-no sound when I send a video topic




I have a htc one x and I have sound when I receive a snapchat videos, but have no sound when I send a video.... can anyone help please?





mardi 11 mars 2014

[Q] Problem: unable to send or receive calls topic




Hi I just updated my paranoid android rom to 4.1 beta and am now unable to make or receive calls now. I tried reflashing the rom but no luck anyone else have this problem? anyone know how to fix it?





lundi 10 mars 2014

I can't download or send anything after installing wanam rom topic




Hello everybody,
2 days ago I installed wanamlite rom on my I9500 device and since then I can't download any file from any application like chrome audiko and etc and I can't even recieve or send pictures on whatsapp please help me I tried everything including wipe everything and reinstall the rom....





dimanche 23 février 2014

phone power button broken. how to i reset to send to verizon topic




Hello my phone's power button just died and my phone wont turn on. Its being replaced by verizon for free. Is there any way I can reformat it so I dont get in trouble for an open boot loader and a rooted rom? My phone wont turn on at all because the power button is not connected. So I need to do something when its powered off to reset it. Thank you





vendredi 21 février 2014

Samsung Email - send from? topic




Hi

I probably know that this isn't possible but just checking, but by using the built in email client, can it "send from" other aliases like the Gmail and Web apps can? If so, where is the setting?

Thanks

Sent from my SM-N9005 using Tapatalk





[Q] SMS will Send but not Receive topic




I completed a clean wipe (including wipe of cache partition and dalvik cache) and am running cm-11-20140218-NIGHTLY-toroplus on CDMA Sprint galaxy nexus. I have also had this issue with the cm-11-20140211-NIGHTLY-toroplus and cm-11-20140210-SNAPSHOT-M3 as well. I have updated Sprint PMS and Sprint profile.

I am able to send MMS/SMS messages and the other person will receive them. But I cannot receive MMS/SMS messages that are sent to me. When I have tried to setup Whisper, it is unable to get SMS verification.

I've worked through as many of the possibilities as my limited knowledge has allowed and posted a brief message in the Cyanogen forums, but I have not received any responses. I am very much enjoying the new life my Gnex has now that it is updated, but the SMS problem seems to be close to a deal breaker.

Does this group have any suggestions on what may be occurring to cause this?
Suggestions on other avenues to try?

Many thanks for any responses.





[Q] Phone giving location when send SMS topic




Hello, I really hope someone here can help me out. My girlfriend has a GS3, and when she sends text messages to certain people, it will give her location automatically via text message. I have never seen it from my end when I text her, but just now I got this after I sent her a text message: "Attention word received, Getting location. Please wait up to 5 minutes for a response." and then a few moments later I received, " GPS location failed, Network-based location: Accuracy 30 Meters..." and then gave her full location; Latitude, longitude, speed, and bearing and then gave a google maps link to her location and the address of where she is. She has asked me to help get her to turn it off before, and I've tried to research it but have not been able to find anything. Please help!





mercredi 19 février 2014

[Q] gs3 - can't send texts - CyanogenMOD 11 KitKat topic




Hey guys,

This is my first post, and I would greatly appreciate some help. I'm clearly quite a rookie at this. But I rooted my Verizon gs3 quite some time ago, and everything has run smoothly since. I did use it while in the UK on GiffGaff Mobile, and still worked fine. Now I am using Simple Mobile.

Just today, I installed the CyanogenMod 11 KitKat. I am able to send & receive MMS. And I can receive SMS, but I cannot send SMS.

I have tried changing the SMSC number using the dialer, but it keeps reverting back to "+12063130004",145 . I have also tried using different SMSC codes using the GoSMS app. I've played around with the APNs as well, but from the little that I know about this, this only has to do with MMS not SMS, correct?

Don't know what else to do, and I can't find any threads that have helped me yet.

PLEASE help, and I would greatly appreciate it.





mardi 18 février 2014

Help, I can send and receive MMS but not SMS topic




I don't understand what could have possibly happened but I can no longer send or receive SMS messages but I can still send MMS messages. When I reboot my phone and try it will take a long time to "Send" a message but it doesn't actually send, my phone just thinks it does, but after the first one it goes just as fast as normal. Currently I am running Wicked Sensations Rom 4.3 version, but I was having this problem on a stock rooted rom as well. Also this may or may not be related but I tried to reflash the stock rooted rom before flashing to Wicked and it just wouldn't work, I tried to flash it at least 5 times before I gave up and downloaded Wicked, but even with wicked I had to flash it 3 times before it would get past the boot logo. I have tried all the dialer codes I could think of including ##3282# ##72786# and ##MSL# but those have done nothing.





lundi 10 février 2014

Send commands to USB device in Python topic




Hi fellows,
I am facing difficulties in order to send USB commands to an RFID reader.
This is the command reference of the device: https://github.com/mti-rfid/RFID_Explorer

I am working with the MTI RU-824 model.

The manufacturer of the device only provide a driver for Windows (using .Net), but we need to run the device on Linux. That's why I need to write few lines of code in Python as a new "driver".

I am using PyUSB for accessing the device, and this is few lines of my code:

================================================== ==========================

import usb.core
import usb.util
import sys

VENDOR_ID = 0x24e9
PRODUCT_ID = 0x0824

device = usb.core.find(idVendor=VENDOR_ID, idProduct=PRODUCT_ID)

if device is None:
sys.exit("Could not find Id System Barcode Reader.")
else:
print 'Device detected'

device.set_configuration()

cfg = device.get_active_configuration()
interface_number = cfg[(0, 0)].bInterfaceNumber
alternate_setting = usb.control.get_interface(device, interface_number)
usb_interface = usb.util.find_descriptor(
cfg, bInterfaceNumber=interface_number,
bAlternateSetting=alternate_setting
)

endpoint_out = usb.util.find_descriptor(
usb_interface,
# match the first OUT endpoint
custom_match=lambda e: usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_OUT
)

endpoint_in = usb.util.find_descriptor(
usb_interface,
# match the first IN endpoint
custom_match=lambda e: usb.util.endpoint_direction(e.bEndpointAddress) == usb.util.ENDPOINT_IN
)

endpoint_out.write('0x01')
print endpoint_in.read(len('0x01'), 1000)

================================================== ===========================
My question is on the last 2 lines.
I am using endpoint_out to send a command and endpoint_in to read data from the reader. Am I correct?

The problem is, when I run the code, there is an error message like this:
usb.core.USBError: [Errno 110] Operation timed out

Anyone can give a clue?
Thank you.






[Q] Text messages sometimes do not send topic




Hi guys. I am having problems sending text messages sometimes. 9/10 texts I send go through just fine but occasionally when I send a text it will just flash the sending logo on and on. I do not get an error message it just does not send. I thought it may be an issue with the ROM but I did a factory reset and tried three different ROMS and I am still having the same problem. I am currently running Cataclysm ROM with Franco Kernel R32. Any idea what my problem could be? Sprint is my carrier and my signal is fine when trying to send these messages. Is it possible it has something to do with my baseband/radio? I read somewhere that some people had problems with TWRP corrupting their baseband.

I'm stumped so any ideas would be appreciated. Right now when this happens I usually just restart the phone and it fixes it.





mercredi 5 février 2014

SMS Troubles - Can Send but Cannot Receive topic




Hi all. I am not on AT&T so I apologize for posting here but I wasnt sure where else to seek help. Hopefully someone may have an idea.

I recently got a phone on the Pelephone network in Israel. It is a Galaxy S3.

I am able to send SMS texts with no problem. I am also able to receive texts from other phones in Israel no problem.

For the first day or two everything went OK but then suddenly I stopped receiving texts from my friends in the US. They receive mine, but I cannot receive theirs.

My company tried diagnosing this with carrier. They insist everything should work. All the right plans are activated, etc. They even swapped out the SIM. After that the SMS worked fine again for about a day, and then, like last time, stopped working...so people in the US can still receive mine, but I cannot receive their replies anymore.

They are replying in the same way as in the past (replying to my text) so it did work...it just stopped.

I have tried a factory reset which didnt help.

Any ideas?





jeudi 30 janvier 2014

Looking for an app that can automatically turn off WiFi when I want to send MMS and t topic




Is there anything out there that can do this? I have my WiFi set to come on automatically when I get home but it causes issues when I want to send pictures via MMS. Any suggestions?





send caller ID to car bluetooth topic




Hi guys!

by default the nexus 5 does not send the caller id picture to my car when I sync the contacts.

Some Samsung devices do, so i know its possible. my phone is rooted, is there any way i could somehow add this feature without loosing the default phone program?

thanks!





mercredi 29 janvier 2014

C6903, can't send MMS on tmobile USA topic




Hi guys,

I have LTE working on my phone but I can't send or receive MMS? I have copied the exact setting on here, also tried the z1s setting but both nothing work?

Z1S APN setting

Enter name: T-Mobile Internet and MMS
APN: epc.tmobile.com
Proxy:
Port:
Username:
Password:
Server:
MMSC: h t t p : //mms.msg.eng.t-mobile.com/mms/wapenc (spaces for new poster)
MMS Proxy:
MMS Port:
MCC: 310
MNC: 260
Authentication type:
APN type: default,supl,admin,dun,mms

recommended setting for C6903

Name T-Mobile US
APN epc.tmobile.com
fast.t-mobile.com (for LTE devices)
Proxy blank
Port blank
Username blank
Password blank
Server wap.voicestream.com
MMSC ht tp: //mms.msg.eng.t-mobile.com/mms/wapenc (space for new posters)
MMS Proxy 216.155.165.50
MMS Port blank
MCC 310
MNC 260
Authentication type not set
APN Type default
APN protocol IPv4
Bearer Unspecified





Unable to send or receive pictures topic




I have a kingo rooted mj5 note 3. It was working fine until one day it stopped receiving pictures. When someone sends a picture and i click download, it will take a minute to try to download it then say "Error: Network error has occured". Then when i try to send a picture it tries to send it for like 10 minutes then quits with an error. Ive tried rebooting my phone, ive tried resetting my APN to default, my mobile data packets are on, ive tried using 3rd party mms apps, auto retrieve text messages options is on. Any suggestions?





mardi 28 janvier 2014

Hangouts will not send or receive MMS topic




I am on stock from Sprint. I just got the phone yesterday and am unable to send or receive MMS through Hangouts. Is there a fix for this or is this a known problem that has not been resolved yet? Or, is it just my phone?