Android : On 2.2 - Being In Tethering Mode And Scanning Wifi At The SAME Time

Jul 31, 2010

Is it generally possible to have Wifi Tethering turned on (creating a Hotspot) and at the same time scanning for Wifi devices? I want several devices just discover (NOT connect) each other and log the signal strength. To do that all devices must be discoverable over Wifi and at the same time discover others.
I would just need that for some specific use case..

Android : On 2.2 -  Being in Tethering mode and scanning wifi at the SAME time


Android :: Enabling WiFi Tethering Mode

Aug 30, 2010

I am not seeing WiFi tethering app in my phone. I enabled WiFi in froyo build. But it is not showing tethering app? What do I need to enable the app?

View 2 Replies View Related

Android : Wifi Reconnects All The Time While In Background Mode

Jun 22, 2009

I'm facing a connectivity problem in my IM-client for a long time already, but still can't find out how to fix it. Found a similar bug report here: http://code.google.com/p/android/issues/detail?id=2059 except PowerManager.SCREEN_DIM_WAKE_LOCK didn't work for me :(

So here is the problem: when device goes idle, wifi is being kept connected for some unpredictable time(1-20 min), but then established connection brakes and here is what i see on the ddms console:

CODE:...............

And "-1" is coming on read() from input stream or SocketException is raised. Then my app is trying to reconnect and sometimes it's successful almost immediately, but sometimes it takes more than 2-3 tries to reconnect(WifiMonitor logs reconnects again and again) with 10 seconds timeout.

Preventing some advices - yes, there is a PARTIAL_WAKE_LOCK and wifilock held by my app, but as i can see this is not enough.

View 2 Replies View Related

General :: Faster WiFi Network Scanning In Android Devices

Apr 10, 2014

I am working on a capstone project for school, what i need is to be able to take WiFi scans (no need to connect, only scan available network BSSID and signal Levels) quickly.

Currently, the Android API takes up to 5 seconds for a scan. Is there something i can do to improve my scan rate?

View 2 Replies View Related

General :: WiFi Stuck On Scanning?

Sep 10, 2013

wrong area for this but i have a alcatel one touch 960C (not even on this site) but i cant connect to wifi at ALL. its stuck on scanning and it flashs scanning sometimes. any way to access wifi files or some sort?

ive tried everything.

hard reset.
sysetem restoring
SDK (not sure if any wifi sdk's are out there)

i dont have data so i have no way but PC to access files.

how to flash nor do i now anything on roms or flashing roms.

View 2 Replies View Related

Android :: Code For Scanning WiFi Network - Null Point Exception

Sep 4, 2010

I am trying out this code for scanning wifi networks but getting null pointer exception not sure what problem I registered all permission in manifest.

IntentFilter i = new IntentFilter();
i.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION);
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Log.i(TAG, "opening wifimanager");
WifiManager mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
mWifiManager.getScanResults();
} } ,i);
mWifiManager.startScan();

View 1 Replies View Related

General :: GT-N7000 WiFi And Bluetooth Not Scanning?

May 9, 2014

I have a samsung galaxy n7000, the wifi & bluetooth aren't working nor scanning. i've tried factory reset but nothing. or a download link for jelly bean 4.1.2 XXLT5 to reflash it.

View 2 Replies View Related

General :: How To Enable Active WiFi Scanning

Apr 18, 2012

I'm trying to enable the active scanning mode on my HTC Desire but still got no luck. I've forced Android and wpa supplicant to go in to active mode. I've retraced this and the forcing works but when wpa supplicant tries to set the driver in active mode it always got set in passive mode and I can't force it in to active mode.

Any way to force an android device to scan active for wifi networks? It doesn't mind if It's on another device. I'm desperate to get it to work.

And I know it's not power efficient but that's not the goal. The only goal is to scan as fast as possible. Scanning in active mode should make this possible.

View 1 Replies View Related

Sony Ericsson Xperia X10 :: Wifi Keeps Disconnecting - Connection Randomly Drops From Time To Time

Aug 2, 2010

When i'm connected to my router at home via wifi, the connection randomly drops from time to time. My laptop and TV is fine which are both running via the internet. The setting is set to stay connected always, even when the screen goes black.

Does anyone have a resolution for this? Perhaps static IP? if this is the answer, what should the settings be?

View 7 Replies View Related

HTC EVO 4G :: Tethering Mode / Registration Error

Oct 14, 2010

So after 10 or so times I finally got the sync manager to download to the pc and it worked once. Now in tethering mode it won't connect and I get a Sprint pcs registration error. Spent 2 hrs on the line with Sprint to no avail.

View 4 Replies View Related

Android :: Wifi Tethering And Hot Spot?

Aug 15, 2010

idk what those 2 things are, it looks useful but i dont understand what is used for and how.

View 2 Replies View Related

Android :: Phone With WiFi Tethering Feature?

Aug 8, 2010

I am new to the whole android OS and looking to join in very soon. The feature I am mostly interested in is WiFi tethering. I would like you guys to suggest to me the cheapest handset that I can accomplish such a feature with? Whether the phone comes with the application to do it or it can be done via alternate methods [root].

View 5 Replies View Related

Android :: PdaNet Now Available - Free USB Tethering Over 3G Or WiFi

Mar 16, 2009

PdaNet has been one of the most popular software for Windows Mobile phones, Palm OS phones and the iPhone. It is now ported to the Android system! Unlike other tethering software that only supports Proxy connections, PdaNet provides you with FULL Internet access so all your email, instant message programs will work without any setting changes on the computer. Just like the old PdaNet, it is as simple as clicking on the PdaNet tray icon and your computer will go online instantly.

You can follow the latest update of PdaNet for Android at
http://junefabrics.com/android

View 49 Replies View Related

Android :: Wifi Tethering On HTC Legend Without Rooting?

Jun 25, 2010

Can I find an app that will make my HTC Legend able to act as a wifi router, without rooting the phone?

View 3 Replies View Related

General :: WiFi Tethering With OpenVPN For Android

Nov 15, 2012

Download a terminal client, e.g. ConnectBot and connect to your local shell.Enter `su` to become root. (Double check with whoami afterwards). Enable wifi tethering and ensure your data connection is working (connect to VPN)

Run `netcfg` and note your interface names (typically tun0 and wlan0 (ignore m.wlan0 or similar, only take the one with a real mac address), as is on my SGSII)..Double check the subnet for your wlan0 device and enter the following commands:

iptables -A POSTROUTING -s 192.168.43.0/24 -j MASQUERADE -t nat
(setup a postrouting entry for the tethered devices subnet, implementing NAT)
iptables -A FORWARD -j ACCEPT -i wlan0 -o tun0
forward packets from tethered devices across the tunnel
iptables -A FORWARD -j ACCEPT -i tun0 -o wlan0
forward packets from the tunnel to the tethered devices

Note, because you are using NAT, you will need to configure port forwards on your Android device to be able to run servers etc on tethered devices. Unlikely you'll need to worry about that though. Feedback if it worked or not. Posting this now from my home IP, OpenVPN for Android and these iptable rules!

View 2 Replies View Related

General :: Enable WiFi Tethering If Not In ROM / Android 4.1.1

Mar 24, 2013

I have PIPO M8 3G tablet running on Android 4.1.1, the problem is that Tethering and Portable hotspot are missing from the menu.

Is there any way to enable tethering if it's not in the ROM?

The device is ROOTED.It also cannot make phone calls and send SMS is there a way to enable them too?

View 2 Replies View Related

General :: Android WiFi Hotspots Without Tethering

Dec 24, 2012

I want to host an INFRASTRUCTURE (not AD-HOC), otherwise known as a SoftAP (Access point) on wifi. This is possible with many applications, but they all want to use a mobile data connection. Is there any application that allows you to host a SoftAP WITHOUT a 2G/3G/4G connection? This is just for playing over WIFI between a samsung galaxy s3 and an older android 2.1 tablet. These cannot see AdHoc networks.

Anyways, I'm interested in any application that allows hosting of an infrastructure WiFi network without tethering to just host a wireless lan point.

View 2 Replies View Related

HTC Hero :: Wifi App Takes Long Time To Connect To Home Wifi

Dec 29, 2009

My Hero takes a long time to connect to my home wifi. I usually go in to the settings and hit "Scan" repeatedly before it connects. Sometimes it fails connect, and I have to go into Settings to try again. Is there a way/app to scan automatically or re-attempt to connect again? Maybe there's something I'm not thinking of?

View 1 Replies View Related

Android :: WiFi Tether From Google Code And USB Tethering Cap?

Sep 16, 2010

I signed for for a tethering plan with my carrier that included a 1 GB cap on USB Tethering. I was wondering if WiFi tethering would go against this cap or would it look like I'm using regular internet on my phone. I have (real) unlimited 3G with my plan and I am using Wireless Tether from Google code.

View 1 Replies View Related

Android :: WiFi Tethering That Not Require To Root Phone?

Feb 22, 2009

Someone from WMWifiRouter had mentioned a couple months ago they were working on a product for Android but I haven't heard anymore. I was hoping they'd drop their product when paid apps went live. Any news? Any other Wifi tethering out there that doesn't require me to root my phone?

View 17 Replies View Related

Android :: Enable / Disable USB / Wifi Tethering Programmatically

Aug 20, 2010

Is there a way to enable or disable tethering (USB or wifi) on an android phone programmatically? Perhaps an API in android SDK or NDK or any even non-UI command to do that.

View 1 Replies View Related

General :: Android 4.0.4 - Reverse Tethering And WiFi Hotspot

Feb 8, 2013

I am running on Android 4.0.4. Is there a way to activate Reverse USB tethering and WiFi hotspot at the same time? I want to give internet from my PC to phone, via usb internet. Then give internet to my friends via Android Wi-Fi hotspot

View 1 Replies View Related

General :: Tethering PC Internet To Use Android Phone As WiFi Router Through USB?

May 24, 2012

is there a way to Tether pc internet on android phone using usb and then use the phone as a wifi router or hotspot.

View 4 Replies View Related

HTC EVO 4G :: Wifi Tethering Not Connecting

Nov 14, 2010

I used to have a samsung moment that was rooted and i used the samsung moment wifi tethering program. I just got the HTC Evo 4G yesterday and rooted it using the Unrevoked method (not sure if there is another). I then downloaded the Wireless Tether for root users. For some reason i cant get anthing to recognize it. I've tried looking for the signal with my ipod and laptop but nothing! What setting needs to be changed? I have tried to find this issue on other posts, but nothing.

View 3 Replies View Related

HTC EVO 4G :: USB Tethering Works With WiFi

Jul 30, 2010

While USB tethering over 3G/4G networks doesn't work unless you pay for the $30/mo hotspot feature (which I still cannot get Sprint to admit is a stupid name since I don't want a hotspot, only tethering, but I digress), you can tether and use the phone's WiFi connection.

Why would you want to? Well, I have a laptop that requires a USB dongle and now I have one less thing to carry. OK, not the best reason, but I found it interesting.

View 9 Replies View Related

HTC EVO 4G :: WiFi Tethering With WPA2

Jun 8, 2010

Any chance of a root tether application coming out with WPA2? I would think a app could be developed similar to Sprint's mobile hot spot.

View 2 Replies View Related

General :: WiFi And USB Tethering

Dec 21, 2012

I only have Internet via wifi.

Is there a way to tether the wifi i have on the Phone via USB to my PC?

View 2 Replies View Related

HTC EVO 4G :: WiFi Tethering Settings / Instructions

Jun 7, 2010

**UPDATED**
1. On your phone go to Settings > Applications > Development > and enable USB debugging.
2. Go to unrevoked.com on your HTC EVO web browser and download it and install it.
3. Run the Revoked program and click on Start. You should get a message that says, "successfully rooted"
4. Go to http://bit.ly/c2oonC and download and install the wireless_tether_2_0_2.apk with your HTC EVO web browser.
5. Run Wireless WiFi Tether (When a box pops up, click on ALLOW)

Notes:
- When you restart the phone, you have to root it again to run Wireless tether.
- Sprint will not bill you anything extra, don't worry. Droid, NexusOne users have been doing this for a while with no issues.
- You do not need to have the "$29.95" tethering plan with Sprint.
- WiFi signal is not strong, so your device had to be near by.
- WiFi tethering uses up alot of battery life. About 1% per minute or two (thats constant connection loading webpage/video streaming). WiFi tethering also worked with my iPad.

View 30 Replies View Related

Motorola Droid X :: AP WiFi Tethering Possible Yet?

Aug 16, 2010

Just upgraded from DInc to X this week. Rooted - all that fun stuff. Had AP tethering on DInc, I'm still getting adHoc with X even with version 2.0.5-pre 7. Is anyone else getting AP tethering or do we need to wait for the froyo kernal? I had originally thought any phone with the VZW wifi hotspot app had AP tethering capabilities in its kernal already.

View 4 Replies View Related

HTC EVO 4G :: WiFi Tethering - 2.2 Rooted Froyo

Aug 29, 2010

Is it working to the people that have the 2.2 rooted foroyo?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved