[android-developers] Re: WiFi Direct connections drop during Bluetooth scan

2013-02-26 Thread bob
I think the scanning stage may send out some very strong signals that could cause some serious 2.4 GHz interference. Not 100 percent sure though. Additionally, I think it sends stuff out all 79 channels. So it will definitely overlap some Wifi stuff. On Tuesday, February 26, 2013 11:12:

[android-developers] Re: WiFi Direct connections drop during Bluetooth scan

2013-02-26 Thread Matt M
Thank you for the response. A constant bluetooth scan is necessary, that is what the application is designed to do - constantly detect nearby bluetooth devices. If your concern is battery drain well we have purchased numerous external power packs which will be able to power this for days. If th

[android-developers] Re: Wifi lock with WIFI_MODE_SCAN_ONLY

2013-01-05 Thread shibin
i am facing the same issue. plz let me know if find answer On Monday, April 25, 2011 11:07:16 AM UTC+5:30, seema wrote: > > Hello All, > >Here is what I do to scan on wifi while connected to 3G. > > WifiLock wifiLock = > wifiService.createWifiLock(WifiManager.WIFI_MODE_SCAN_ONLY, >

[android-developers] Re: WiFi hotspot and 2.3.6 (or newer)

2012-10-19 Thread bob
This option does exist on my HTC Evo Design phone. It has ICS. On Thursday, October 18, 2012 8:45:09 AM UTC-5, falcon74 wrote: > > Froyo apparently had an option to create a "portable hotspot

[android-developers] Re: WiFi Direct sample code issue

2012-09-06 Thread HK
Is onPause/onStop ending the connection ? On Thursday, September 6, 2012 8:12:07 PM UTC+9, Arijit Das wrote: > > I am testing the sample code for wifi direct that comes with SDK. I am > using two Galaxy Note devices (both with 4.0.4 ICS). The app runs fine till > discovering and connecting peers

[android-developers] Re: Wifi sample

2012-08-22 Thread Jega
On Wednesday, August 22, 2012 7:34:39 AM UTC-7, bob wrote: > Is there a built-in Wifi sample that does a scan and displays the Wifi > devices as they are detected? please check this link http://grepsrc.com/search?q=Wifi&defs=&refs=&path=&hist=&project=ics-mr1 -- You received this message beca

[android-developers] Re: Wifi sample

2012-08-22 Thread Jegadeesan M
Check this link http://grepsrc.com/search?q=Wifi&defs=&refs=&path=&hist=&project=ics-mr1 On Wednesday, 22 August 2012 07:34:39 UTC-7, bob wrote: > > Is there a built-in Wifi sample that does a scan and displays the Wifi > devices as they are detected? > -- You received this message because you

[android-developers] Re: WiFi-Direct hardware question

2012-08-21 Thread alu0506
So how do I get Wifi-Direct on a Nexus S? On Friday, April 6, 2012 8:55:58 AM UTC-7, EricYan wrote: > > It depends on which wifi chip the device use. > As I known, Broadcom bcm4329/4330 , Atheros 6005, and Ti 1281 can support > this feature on ICS. But, you need porting the suitable driver and fi

[android-developers] Re: Wifi Device properties !

2012-08-17 Thread bob
// To use this WifiManager method, AndroidManifest.xml must have the following permission: // WifiManager wifiManager = (WifiManager) getSystemService(Context. WIFI_SERVICE); WifiInfo wifiInfo = wifiManager.getConnectionInfo(); On Friday, August 17, 2012 12:29:07 AM UTC-5, Meena Rengaraj

[android-developers] Re: Wifi State

2012-08-10 Thread bob
// To use this WifiManager method, AndroidManifest.xml must have the following permission: // WifiManager wifiManager = (WifiManager) getSystemService(Context. WIFI_SERVICE); if (!wifiManager.isWifiEnabled()) wifiManager.setWifiEnabled(true); On Thursday, August 9, 2012 11:31:57 PM UTC-5,

Re: [android-developers] Re: Wifi Devices

2012-08-08 Thread Meena Rengarajan
Yeah , already i have added all the permissions in Manifest ! On Wed, Aug 8, 2012 at 7:48 PM, bob wrote: > // To use this WifiManager method, AndroidManifest.xml must have the > > // following permission: > > // > // android:name="android.permission.ACCESS_WIFI_STATE"/> > > WifiManager wif

[android-developers] Re: Wifi Devices

2012-08-08 Thread bob
// To use this WifiManager method, AndroidManifest.xml must have the // following permission: // WifiManager wifiManager = (WifiManager) getSystemService(Context. WIFI_SERVICE); On Wednesday, August 8, 2012 7:16:38 AM UTC-5, Meena Rengarajan wrote: > > How to send Datas to Wifi devices

Re: [android-developers] Re: WiFi

2012-08-07 Thread Asheesh Arya
import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; import android.app.Activity; import android.app.Dialog; import android.app.ProgressDialog; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import a

Re: [android-developers] Re: WiFi

2012-08-07 Thread Mulsaniya Bhadresh
public boolean haveNetworkConnection() { boolean haveConnectedWifi = false; boolean haveConnectedMobile = false; ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo[] netInfo = connectivityManag

Re: [android-developers] Re: WiFi

2012-08-07 Thread Meena Rengarajan
Yeah, i am using device now. By programmatically, how to get Wifi status in android ? On Tue, Aug 7, 2012 at 12:52 PM, Kostya Vasilyev wrote: > There is no wifi in the emulator. The classes and the methods are all > there, but they're just stubs that fail when called. > > You can mock WifiManage

Re: [android-developers] Re: WiFi

2012-08-07 Thread Kostya Vasilyev
There is no wifi in the emulator. The classes and the methods are all there, but they're just stubs that fail when called. You can mock WifiManager in your app, but ultimately, you will need a real device. 07.08.2012 11:03 пользователь "Meena Rengarajan" написал: > I would like to check from my

Re: [android-developers] Re: WiFi

2012-08-07 Thread Meena Rengarajan
I would like to check from my app whether the device has WiFi connectivity, but in order to do that, I must first find a way to get "WiFi" in the emulator. Just going to *Settings -> Wireless Networks -> Wifi Settings *says *Unable to start Wi-Fi*, it shows error (Wifi Error). Can anyone help me p

Re: [android-developers] Re: WiFi

2012-08-06 Thread Meena Rengarajan
In my Emulator how to connect Wifi in a settings to check avaliable network connections? Can anyone tell me ? On Tue, Aug 7, 2012 at 10:16 AM, Meena Rengarajan wrote: > My question is, How Android mobile detects Wifi network programmatically > and if Wifi has a printer then how does it will print

Re: [android-developers] Re: WiFi

2012-08-06 Thread Meena Rengarajan
My question is, How Android mobile detects Wifi network programmatically and if Wifi has a printer then how does it will print the datas without changing or setting up the connections in Android mobile through an Application? On Tue, Aug 7, 2012 at 12:42 AM, bob wrote: > Perhaps you could turn

[android-developers] Re: WiFi

2012-08-06 Thread bob
Perhaps you could turn off the Wifi? On Monday, August 6, 2012 6:47:28 AM UTC-5, Meena Rengarajan wrote: > > Is there any way to make the application prefers Android mobile over WiFi > connection? > -- You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: WiFi-Direct hardware question

2012-04-10 Thread EricYan
It depends on which wifi chip the device use. As I known, Broadcom bcm4329/4330 , Atheros 6005, and Ti 1281 can support this feature on ICS. But, you need porting the suitable driver and firmware for wifi direct. And you can test it through wpa_supplicant firstly, if the command connected succe

[android-developers] Re: Wifi lock question

2012-03-29 Thread Put_tiMe
Another question, if a particular app has acquired the wifi-lock. Another app goes and switches off the wifi. What happens now? Will the wifi-lock prevent the wifi from switching it off? Or is the wifi lock ignored, and the wifi radio is still switched off. On Friday, March 30, 2012 10:01:

[android-developers] Re: WiFi Error

2011-08-29 Thread Ratheesh Valamchuzhy
*Where is the reply, .. [?]:)* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-deve

[android-developers] Re: Wifi applivcation

2011-06-03 Thread Dan Winsor
On Jun 3, 9:54 am, project wrote: > Hi, > i want wireless android application that open wifi and scan for wifi > devices and connect with one. Well you'd better get cracking, then! -- Dan Winsor Soy un poco loco en el coco. -- You received this message because you are subscribed to the Googl

[android-developers] Re: Wifi application

2011-06-03 Thread Mike
On Jun 3, 9:02 am, project wrote: > Hi, > i want the code for wireless android application that open wifi and > scan for wifi > devices and connect with one. you better get busy then -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

Re: [android-developers] Re: Wifi lock with WIFI_MODE_SCAN_ONLY

2011-06-02 Thread Irfan Sheriff
Holding a scan wifilock ensures you get alteast scan capabilities and keeps wifi up - the system is still in control of whether wifi needs to connect when its turned on On Wed, Jun 1, 2011 at 10:38 PM, seema wrote: > Hello All, > > Here is what I do to scan on wifi while connected to 3

[android-developers] Re: Wifi lock with WIFI_MODE_SCAN_ONLY

2011-06-01 Thread seema
Hello All, Here is what I do to scan on wifi while connected to 3G. WifiLock wifiLock = wifiService.createWifiLock(WifiManager.WIFI_MODE_SCAN_ONLY, "MyLock"); if(!wifiLock.isHeld()){ wifiLock.acquire(); } if(wifiService.isWifiEnabled() == false){

Re: [android-developers] Re: WiFi gets jammed in "turning off" state

2011-03-17 Thread Kostya Vasilyev
I've seen something similar on my Moto Milestone if calling startScan before the previous one is complete. After a few times like this, WiFi got stuck in some kind of enabled, but not working state (i.e. scans or connects never completed). Not sure what/if there is in the logcat, though. 17.0

[android-developers] Re: WiFi gets jammed in "turning off" state

2011-03-17 Thread Urizev
I do not know, maybe. How often should I? On 16 mar, 09:52, Kostya Vasilyev wrote: > Are you sure you're not calling startScan too often? > > 16.03.2011 11:39, Urizev пишет: > > > > > > > > > > > Hi > > > I am developing an application for controlling the WiFi interface and > > I have found a pro

[android-developers] Re: Wifi sleeps... even with lock

2011-03-03 Thread bruce
Grab a screen lock as a work around. Nexus One has some issues with the low-power mode. Unfortunately, from my wireshark traces it basically fails to wakeup for multicast events due to aggressive power saving. Other devices will perform differently. It would be better if they released a patch f

[android-developers] Re: Wifi sleeps... even with lock

2011-03-02 Thread J
On 2 mar, 22:55, Irfan Sheriff wrote: > > The "full" lock thats used by default on a createWifiLock() keeps wifi up at > all times but it does not control the driver level power optimizations that > are done on devices. When screen goes off, drivers changes settings to > reduce power usage on wi

Re: [android-developers] Re: WiFi Error/Unable to connect in AVD

2011-02-02 Thread Kostya Vasilyev
02.02.2011 23:23, Kim пишет: Thanks, Kostya. Your code got me looking in the right direction. I went back to an earlier release that had been working and found two things, both of which I had to change to get it to work: 1) In my startup code I changed "while(!wifi.isWifiEnabled()) wifi.setWifi

[android-developers] Re: WiFi Error/Unable to connect in AVD

2011-02-02 Thread Kim
Thanks, Kostya. Your code got me looking in the right direction. I went back to an earlier release that had been working and found two things, both of which I had to change to get it to work: 1) In my startup code I changed "while(!wifi.isWifiEnabled()) wifi.setWifiEnabled(true);" to what I had

Re: [android-developers] Re: WiFi Problem

2010-12-15 Thread swapnil kamble
Peeyush, You should know when you ask question on this list, it should relate to android. If you have problem in Ubuntu Wifi ask in Ubuntu forum. On Wed, Dec 15, 2010 at 12:04 AM, peeyush varshney < varshney.peey...@gmail.com> wrote: > I have tried the same but i is not working. bu

Re: [android-developers] Re: WiFi Problem

2010-12-14 Thread peeyush varshney
I have tried the same but i is not working. building Android is fine with me. but WiFi is not working.. On Mon, Dec 13, 2010 at 11:01 AM, nysofmind wrote: > Left click on the wave icon in the top right > create New wireless > network > enter your network name, select security, and type in key. >

[android-developers] Re: WiFi Problem

2010-12-13 Thread nysofmind
Left click on the wave icon in the top right > create New wireless network > enter your network name, select security, and type in key. That should work. Then download eclipse and android sdk. I only mention this because this forum is for android, hope you are fortunate in building your apps. On D

Re: [android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Kostya Vasilyev
Ad-hoc wifi support actually #is# implemented in the lower levels of Android, wpa_supplicant. What is missing is the framework and system services support. Changing this would require building your own firmware. Another option worth looking into is leveraging wifi tethering in 2.2. You would need

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Juan
Interesting, but it only gives you a 30m range. I need minimum 1/2 mile, a full mile is the optimum. On Oct 15, 12:27 pm, Bret Foreman wrote: > You might also be able to find a Zigbee USB dongle with a Linux/ > Android driver for if you want to use add-on hardware. -- You received this message

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Juan
This is a very good idea. The key is going to be the range. For this I need one mile range in an environment with zero obstructions around the device. The bare minimum is 1/2 mile. Juan On Oct 15, 12:00 pm, Bret Foreman wrote: > You should look into mesh networking, especially the meshes designe

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Bret Foreman
You might also be able to find a Zigbee USB dongle with a Linux/ Android driver for if you want to use add-on hardware. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Bret Foreman
You should look into mesh networking, especially the meshes designed to work on top of the 802.11 stack: http://en.wikipedia.org/wiki/Mesh_networking -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andro

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Juan
Thanks, this is useful. Not promising, but useful. On Oct 15, 3:14 am, Kostya Vasilyev wrote: >   Juan, > > 14.10.2010 19:59, Juan пишет: > > > I am initiating the design of an application that would require an > > Android phone to connect to another Android phone via Ad-Hoc > > networking with o

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Juan
There is currently no deadline, I am trying to find out if an Android device can provide the connectivity that I need to make it work, with or without external hardware. If I can do that the rest is just software. It may be that to get the range and connectivity I need I will have to rely on some o

[android-developers] Re: WiFi Range and Ad-Hoc Networks

2010-10-15 Thread Bret Foreman
This kind of sounds like the Bump app on iPhones. I'm sure it's possible to get two Android phones to communicate peer-to-peer via WiFi if you're willing to go far enough down the driver stack. But you might also break the phone's ability to be a conventional WiFi client. This smells like a big pro

[android-developers] Re: wifi not remembering the access point

2010-09-22 Thread Irfan Sheriff
What does the output of $adb shell wpa_cli list_networks look like before and after you restart wifi? You could also try doing a $adb shell wpa_cli save_config after adding a network and doing restart and see if it makes a difference. On Wed, Sep 22, 2010 at 3:37 AM, kiran wrote: > Hi All >

Re: [android-developers] Re: Wifi getScanResults() on Emulator

2010-07-27 Thread Kostya Vasilyev
Hi, I've written up the way I handle debugging Wifi-specific application in the emulator here: http://kmansoft.wordpress.com/2010/07/27/debugging-wifi-in-the-emulator/ Hope this is useful. -- Kostya 27.07.2010 12:08, elham пишет: Ok . Will it be possible share the snippet which sets the fa

[android-developers] Re: Wifi getScanResults() on Emulator

2010-07-27 Thread elham
Ok . Will it be possible share the snippet which sets the fake scan results ? Thanks . On Jul 27, 12:11 pm, Kostya Vasilyev wrote: > There is no Wifi in the emulator. > > What I've done for my app is implemented a switch that generates fake > scan results just for debugging. > > -- Kostya > > 27.

[android-developers] Re: Wifi remains without events

2010-06-02 Thread Urizev
No, I am developing and testing the application in a Dev G1 device. On 2 jun, 17:45, Kostya Vasilyev wrote: > Is this the Moto Droid / Milestone by any chance? > > 02.06.2010 19:29, Urizev пишет: > > > > > > > Hi, > > > I have developed an application which manages the WiFi. It has no GUI > > and

[android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-09 Thread Zanshin
There are several bugs. It should be impossible to crash the phone by using the WifiManager. It isn't. The supplicant state doesn't always return correctly. Also, WifiManager sometimes hangs and refuses to return scan results. Then there're the issues with the Broadcom and TI wifi drivers ref

[android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-07 Thread gcstang
I get drops on my Droid as well any where from seconds to minutes after starting WiFi, whether using a browser or application. On May 6, 6:52 am, KK wrote: > I am trying to develop a streaming application and I am testing it on > multiple devices. But I am seeing some problems on Motorola Droid w

Re: [android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-07 Thread Kostya Vasilyev
There might be a bug in Droid/Milestone. I had a user report that my app, WiFi Manager crashes when enabling WiFi on the Droid. All my code does is call wifiManager.setWifiEnabled(true) -- Kostya mort писал(а) в своём письме Fri, 07 May 2010 10:01:51 +0400: You're going to want to

[android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-06 Thread mort
> You're going to want to create a > WifiManager.WifiLockhttp://developer.android.com/intl/de/reference/android/net/wifi/WifiM... I get WiFi drops even when using Android's browser or when Market is opened and updating some apps, often only a couple of seconds after the connection is established.

[android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-06 Thread Zanshin
Whoops. The drop issues aren't specific to the Droid, but happen on all Android devices AFAIK. On May 6, 6:56 am, Zanshin wrote: > You're going to want to create a > WifiManager.WifiLockhttp://developer.android.com/intl/de/reference/android/net/wifi/WifiM... > > This will likely solve most of y

[android-developers] Re: Wifi drop Issues on Motorola Droid

2010-05-06 Thread Zanshin
You're going to want to create a WifiManager.WifiLock http://developer.android.com/intl/de/reference/android/net/wifi/WifiManager.WifiLock.html This will likely solve most of your problem. The rest can be solved by my app. :P The drop issues specific to the Droid, but happens on all Android devi

[android-developers] Re: WiFi data transfer stalls as soon as screen becomes blank

2010-05-04 Thread Thilo-Alexander Ginkel
Hi Jack, On May 4, 3:18 am, jdeslip wrote: > I have the exact same problem on a download manager app I am trying to > write.  My service aquires PARTIAL_WAKE_LOCK, but when the screen is > blank wifi downloads still seem to come to a stand-still (on Nexus > One).  If I instead acquire a FULL_WAKE

[android-developers] Re: WiFi data transfer stalls as soon as screen becomes blank

2010-05-04 Thread jdeslip
Hi, I have the exact same problem on a download manager app I am trying to write. My service aquires PARTIAL_WAKE_LOCK, but when the screen is blank wifi downloads still seem to come to a stand-still (on Nexus One). If I instead acquire a FULL_WAKE_LOCK (or SCREEN_DIM) all is fine. Obviously, t

[android-developers] Re: WiFi data transfer stalls as soon as screen becomes blank

2010-04-15 Thread Thilo-Alexander Ginkel
Hello again, On Apr 11, 3:12 pm, Thilo-Alexander Ginkel wrote: > I am currently trying to figure out how to fix an annoying bug in > Sipdroid [1], which seems to be triggered by a power management > optimization in Android 2.1: > > While a SIP (VoIP) call is in progress via WiFi, the data transfe

[android-developers] Re: WiFi roaming and handoff

2010-02-25 Thread a2ronus
I assume your dev phones are running wpa_supplicant? If so, try the website and mailinglist of wpa_supplicant as well. http://hostap.epitest.fi/wpa_supplicant/ Good luck, Aäron On 25 feb, 18:26, BenYL wrote: > We are setting up a WiFi VoIP network in the office, but are having > trouble getti

[android-developers] Re: wifi RA certificate issue

2009-09-25 Thread Alex Danvy
I really can't understand how it works, if it works, myself. It's disappointing. Alex On Sep 9, 7:40 pm, Adam wrote: > hi all, > Have you notice that user is not able to importWIFIRAcertificatetoandroid. > i'm using HTC Hero and i was really surprised when i failed > to add newcertificateto my

[android-developers] Re: wifi vs. ota...

2009-08-22 Thread Roman ( T-Mobile USA)
What do you mean exactly with OTA? Current Android devices are supporting Wifi and 2G/3G data connections. When you are in a Wifi connection but lose the connection, your data connectivity is automatically switched to cellular data. When you entering a building with a know Wifi network, your previ

[android-developers] Re: Wifi reconnects all the time while in background mode

2009-06-24 Thread othy74
I'm facing the same issue. Without manual intervention (switching wi- fi off and on again) it can sometimes take several hours for wi-fi to reestablish itself. Setting 'Wi-Fi sleep policy' to 'never' also does not seem to help. I assume this is the same as issue 2059. Any update on this? --~--~

[android-developers] Re: WiFi

2009-04-14 Thread François Guillemé
Actually you can modify wpa_supplicant and add a new driver that simulate WiFi. driver_wired is a good base for that. You also need to add wpa_supplicant and dhcpcd services to init_goldfish.rc. Take a look at ADP to get hints about this part. And then you need to invoke emulator with an additional

[android-developers] Re: WiFi

2009-04-12 Thread Nithin Varamballi
Thank for reply But in the Android limitations they dont put that android not supporting WiFi http://developer.android.com/guide/developing/tools/emulator.html#limitations and also i am using desktop... I tried in emulator that it is possible to Browse Internet through Local LAN Net

[android-developers] Re: WiFi

2009-04-11 Thread Edward Falk
I didn't think it was a dumb question. The emulator could, you know, emulate it. In fact, that would be a useful feature to have. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Re: WiFi

2009-04-11 Thread mawei1981
emulator has no WIFI device, Sir. what a *** question!!! On Apr 11, 12:26 pm, Nithin wrote: > Hi to all > >                Can anyone tell me weather emulator support WiFi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[android-developers] Re: Wifi & 3G

2009-04-02 Thread susanner
Sorry to disturb,I am in China,today , 3G just starts to release numbers,and the competition between different 3G net cards is serious.I know, that android supports well of 3G, but that is in America, right? Are you using WCDMA? Here in China, there is TD-WCDMA and I guess WCDMA will be in May

[android-developers] Re: WiFi Emulator

2009-03-17 Thread Justin (Google Employee)
The emulator does not support WiFi. Also note that a retail G1 is perfectly suitable for development. There are pluses and minuses to both the ADP1 and the G1, most of which I'm sure you can find explored in different threads on this forum. Cheers, Justin Android Team @ Google On Mar 17, 7:06 am

[android-developers] Re: WiFi in Emulator

2009-01-31 Thread David Turner
there is a single ethernet port in the emulated system. It is connected to an internal firewall/router within the emulator code that emulates all connectivity through standard BSD sockets. Which connection is used depends entirely on your host machine setup, but wifi or no wifi doesn't have any imp

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread David Turner
Also, generally speaking, you can use address 0.0.0.0 to accept connections from any network interface without having to worry about the difference between the GSM and Wifi channels On Mon, Dec 8, 2008 at 8:49 PM, David Turner <[EMAIL PROTECTED]> wrote: > FYI the emulator doesn't simulate wifi, s

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread David Turner
FYI the emulator doesn't simulate wifi, so all you have is an emulated GPRS/EDGE/3G connection. On Wed, Dec 3, 2008 at 7:12 AM, Andrea <[EMAIL PROTECTED]> wrote: > > Marcio: Yeah, that is what i am looking for, but on the emulator > info.ipAddress returns 0. I hope on a real device it returns the

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread Xavier Mathews
TE"> >> > android:name="android.permission.ACCESS_WIFI_STATE"> >> >> Marcio Alexandroniwww.cialogica.com >> w Tel. 55 11 3717-2345 >>Cel. 55 11 9989-8316 >> [EMAIL PROTECTED] >> marcioalexandroni >> >> >> >> -

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread androidfromCordoba
L PROTECTED] >  marcioalexandroni > > > > -Original Message- > From: android-developers@googlegroups.com > > [mailto:[EMAIL PROTECTED] On Behalf Of Andrea > Sent: Monday, December 01, 2008 19:43 > To: Android Developers > Subject: [android-developers] Re:

[android-developers] Re: Wifi Ip Address

2008-12-08 Thread androidfromCordoba
w.cialogica.com > w  Tel. 55 11 3717-2345 >    Cel. 55 11 9989-8316 > [EMAIL PROTECTED] >  marcioalexandroni > > > > -Original Message- > From: android-developers@googlegroups.com > > [mailto:[EMAIL PROTECTED] On Behalf Of Andrea > Sent: Monday, December 01, 2008 19

[android-developers] Re: Wifi Ip Address

2008-12-03 Thread Marcio Alexandroni
: android-developers@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrea Sent: Wednesday, December 03, 2008 13:13 To: Android Developers Subject: [android-developers] Re: Wifi Ip Address Marcio: Yeah, that is what i am looking for, but on the emulator info.ipAddress returns 0. I hope on a

[android-developers] Re: Wifi Ip Address

2008-12-03 Thread Andrea
Marcio: Yeah, that is what i am looking for, but on the emulator info.ipAddress returns 0. I hope on a real device it returns the actual ipAddress. I don't have one to test! thanks to all. Andrea On Dec 3, 2:57 pm, "Marcio Alexandroni" <[EMAIL PROTECTED]> wrote: > Would it be: > >         WiFiMa

[android-developers] Re: Wifi Ip Address

2008-12-03 Thread Marcio Alexandroni
droid Developers Subject: [android-developers] Re: Wifi Ip Address Xavier: I don't want to change the ip. I want only to know the ip that is assigned to the NIC of the phone. Ed: Sure, but showipaddress.com shows only the ip with which you go out on the Internet: for example you could be co

[android-developers] Re: Wifi Ip Address

2008-12-02 Thread Jason Parekh
You can use WifiManager.getConnectionInfo().getIpAddress(). You can convert this to a String with: private static String ipAddressToString(int addr) { StringBuffer buf = new StringBuffer(); buf.append(addr & 0xff).append('.'). append((addr >>>= 8) & 0xff).append('

[android-developers] Re: Wifi Ip Address

2008-12-02 Thread Andrea
Ralf: Yes, I need to know it programmatically because I have to accept incoming connections on my phone. On Dec 2, 7:11 pm, Ralf <[EMAIL PROTECTED]> wrote: > On the device, go to the wifi settings and select the connected wifi > network. It will show you its IP address. > > If you mean programmat

[android-developers] Re: Wifi Ip Address

2008-12-02 Thread Ralf
On the device, go to the wifi settings and select the connected wifi network. It will show you its IP address. If you mean programmatically, sorry, I do not know. R/ On Mon, Dec 1, 2008 at 2:49 AM, Andrea <[EMAIL PROTECTED]> wrote: > > How can I get the Ip address assigned by a WiFi network to

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Andrea
Xavier: I don't want to change the ip. I want only to know the ip that is assigned to the NIC of the phone. Ed: Sure, but showipaddress.com shows only the ip with which you go out on the Internet: for example you could be connected to Internet behind NAT. I try to explain better my problem: I'm

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Andrea
Yes, the ip address that the dhcp server of a wifi net assigns to my device. Xavier Mathews wrote: > IP Address? > > Xavier A. Mathews > Student/Browser Specialist/Developer/Web-Master > Google Group Client Based Tech Support Specialist > Hazel Crest Illinois > [EMAIL PROTECTED]@[EMAIL PROTECTED]

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
I am nt sure you can change it. Which IP? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] "Fear of a name, only increases fear of the thing itself." On Mon, Dec 1,

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Ed
You could use the browser to access sites like http://www.showipaddress.com/ On Dec 1, 12:18 pm, Andrea <[EMAIL PROTECTED]> wrote: > Yes, the ip address that the dhcp server of a wifi net assigns to my > device. > > Xavier Mathews wrote: > > IP Address? > > > Xavier A. Mathews > > Student/Browser

[android-developers] Re: Wifi Ip Address

2008-12-01 Thread Xavier Mathews
IP Address? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] "Fear of a name, only increases fear of the thing itself." On Mon, Dec 1, 2008 at 4:49 AM, Andrea <[EMA

[android-developers] Re: Wifi communication

2008-11-17 Thread Guillaume Perrot
I don't know about bluetooth support in the SDK, but the G1 does support bluetooth, I can tune it in the settings. On Nov 17, 5:59 am, "Prashant Kalkar" <[EMAIL PROTECTED]> wrote: > Hi, > I am working on an application that need to communicate between two devices. > Initially the application was

[android-developers] Re: WiFi within of emulator

2008-11-13 Thread Monic79
I am Sorry but I do not understand. I have installed the skin HTC Dream / T-Mobile G1 on the emulator, I have a pen drive wifi and my pc is connected to the net via wifi. When I use Android API wifi in my application the emulator does not load driver wifi. You have some suggestions? Thank you ver

[android-developers] Re: WiFi within of emulator

2008-11-13 Thread indiabolbol.com
It uses the underlying systems network. I can browse on emulator G1 on my laptop which is connected to the net via wifi. On Nov 11, 9:22 pm, Monic79 <[EMAIL PROTECTED]> wrote: > Hello, > > I would like to know how to use a wireless connection of a laptop to > simulate WIFI connection in the Andro

[android-developers] Re: WiFi Ad-hoc networks in android?

2008-10-18 Thread Jason Parekh
Sorry, 1.0 doesn't support ad-hoc networks. jason On Sat, Oct 18, 2008 at 5:21 PM, corjuela <[EMAIL PROTECTED]> wrote: > > I'm interested in developing an application which involve a wifi ad- > hoc network created by the app. itself. Can anyone tell me if it is > possible? and more important ..

[android-developers] Re: Wifi SDK Available ?

2008-06-27 Thread iovis80
Hi Digit, i need to get power from different AP and to modify some parameters regarding the rate that the sensor use to get the measurment of the power. Obviously I'm searching also a wifi board with a good support for linux ('m thinking on some Atheros chipset). What I don't understand is if i ca

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Digit
as far as I know, any chip supported by the Linux kernel and the bluez stack. I really can't tell more than that On Thu, Jun 26, 2008 at 6:17 PM, Dima <[EMAIL PROTECTED]> wrote: > > Hi Digit, > is it known which WiFi/BT chips are going to be compatible with > Android SW? > > Regards > Dima > > >

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Dima
Hi Digit, is it known which WiFi/BT chips are going to be compatible with Android SW? Regards Dima On Jun 25, 2:30 pm, Digit <[EMAIL PROTECTED]> wrote: > WiFi and Bluetooth emulation are not planned for the immediate future (i.e. > won't happen before 2009) > emulation at the low-level protoco

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread Digit
it depends exactly on what you need to do. if you perform operations that require root permissions, this won't run on an unmodified Android phone, due to our security model. on the other hand, there will likely be some sort of "network service" that should export an interface to client libraries a

[android-developers] Re: Wifi SDK Available ?

2008-06-26 Thread iovis80
I'd like to use android to develop a my program but it's mandatory to have access to wifi module. Is there any possibility to do this? if there is not i have to change development platform :( On 25 Giu, 21:30, Digit <[EMAIL PROTECTED]> wrote: > WiFi and Bluetooth emulation are not planned for t

[android-developers] Re: Wifi SDK Available ?

2008-06-25 Thread Digit
WiFi and Bluetooth emulation are not planned for the immediate future (i.e. won't happen before 2009) emulation at the low-level protocol level on three distinct platforms is next to impossible. we could implement some sort of bridging with special code path in the system, but we're not there yet,