General :: WiFi Access Points Enable Sync

Aug 21, 2013

I moved from Galaxy S4 to Galaxy Note 2.

Everytime I take a new phone, during initial setup it gives me to restore my settings from Google which when I enable I get all my saved wifi-access points.

This time however by mistake I didn't allow Google to restore that data in my Note 2 so now I haven't got any saved WiFi passwords.

I had backup of all user and system data from S4 via titanium backup and I tried to restore WiFi access points in Note2 which wont work (maybe compatibility or something, I don't know)

how can i re-enable or force a re-sync that Google to restore my WiFi access points to my mobile or what can i do to get all my saved WiFi profiles back.

General :: WiFi access points enable sync


Android :: Detecting Ad Hoc WiFi Access Points

Feb 9, 2009

I am developing an application on the android platform. The app performs continues WiFi scan and sends information about the list of visible access points to server. However, I need to remove all the Ad Hoc points. The android.net.wifi.ScanResult api does not seem to have any information on "mode" of the network. Is there anyway I can distinguish a given point is Ad Hoc or Master?

View 3 Replies View Related

HTC EVO 4G :: WiFi Access Points With Manual Connect Only Option?

Oct 27, 2010

I think this should be simple enough but I haven't found a solution. I would like to leave my WiFi radio on. This way, the phone will automatically connect to certain access points (that I have previously connected to). However, there are certain access points that I would only like the phone to connect to if I elect to manually connect to them. I can't seem to find this setting anywhere. The only two options I have on access points once connected is to Forget network and Change password. I want it to remember those but only connect when I manually tell it to.

View 6 Replies View Related

Android :: Signal Strength Of Each WiFi Access Points?

Aug 9, 2010

I am building an application reading the signal strength of each available WiFi access point. I've written code like:

wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
// Get WiFi status
WifiInfo info = wifi.getConnectionInfo();
textStatus.append(" WiFi Status: " + info.toString());
// List available networks
List<WifiConfiguration> configs = wifi.getConfiguredNetworks();

However, I have two problems:
In debugging, configs only contains one connection. However, I can see that there are several APs available in the system's wifi setting. i.e. configs is an incomplete list. I don't know how to get the signal strength in Wifi Configuration. I am using HTC Hero and Android 1.5.

View 2 Replies View Related

Android :: No Automatic WiFi Handover Between Access Points

Nov 16, 2010

I have a Samsung Galaxy S, running Froyo. I have an issue with WiFi handover, so I am posting here (in addition to the SGS section) in case this is an Android issue rather than an SGS-specific issue. I have two WiFi Access Points (APs) at home, both using the same SSID, but on different channels.

I expected the SGS to automatically move (handover) from one AP to another based on signal strengths that vary depending on where I am. However, this does not happen. It stays on the AP that it is connected to, even when moving to very poor signal levels. I need to manually trigger this (e.g by disconnecting from the AP). Any configuration or Android app. By the way, I also tried configuring the APs with different SSIDs, but this didn't work either.

View 1 Replies View Related

Motorola Droid :: Roaming Between Multiple WiFi Access Points With Same SSID?

Nov 7, 2009

Just got my hands on a Droid and now I'm working out some kinks. My iPhone and laptop have no problem roaming aggressively between multiple access points we have at work that share the same SSID. I can't seem to get the Droid to do the same thing. I've tried downloading some wifi scanners, but they don't quite cut it. Is there a setting I'm missing? The expected behavior would be for the Droid to happily associate with any AP that shares a "remembered" SSID. Right now, it requires manually going into settings and associating with each and every AP in order for it to hop automatically as I move around the building.

View 4 Replies View Related

Samsung Galaxy S :: How To Enable Phone As WiFi Access Point?

Sep 30, 2010

I have my samsung galaxy s phone. I would like to know how to enable it as Access Point and connect to net using my laptop. I went under Settings > Wireless Networks, but cant find?

View 1 Replies View Related

General :: Block Settings - But Allow Adding Access Points?

Nov 13, 2013

I use an AppLocker on my daughter's phone. It works great, but there is one problem it causes.I need to keep her and others out of the settings so it's blocked. But I need to be able to allow her to add access points so she's not eating away our data plan.

Is there an App Locker that will allow this? Or is there an alternative Wifi manager that I could install and allow that would work even when settings is blocked?

View 1 Replies View Related

Android :: HTTP / Access Points

Aug 1, 2009

I am just a beginner in the Android and was experimenting with HTTP.I have published the result of my experimentation through the following link http://kausikdas.webs.com/apps/blog/show/1489440-http-in-android. I am yet to get a device but working with the Simulator.I need feedbacks on the possible network problems I should handle. e.g.: 1. Do I need to discover the access points and dial one before connecting? 2. How can I know which services (Data/Data & Voice/Voice/No/Emergency etc.) current network is supporting? 3. Anything more to take care of?

View 3 Replies View Related

Android :: Network Connections / Access Points

Jul 16, 2010

I have some code that uses a network connection. I create a connection by calling openConnection() on a URL object. Is there any documentation that explains how this process works? Which access point is being used? When that access point becomes invalid, will it automatically switch to another accespoint? etc. I would like to use only WiFi access points and otherwise fail even tho 3G or GPRS could be available, is that possible?

View 7 Replies View Related

Android :: Info About Different Networks - Access Points Under SSID

Sep 17, 2010

If I use getScanResult() I will be able to get the information about different networks but for example if I am in a school where all access points are under network (SSID) "The school". Will getScanResult() filter out other access points than the one it's closest to and only return 1 BSSID for that network?

View 2 Replies View Related

General :: Auto Enable WiFi?

Sep 29, 2013

Is there an app that lets me automatically turn on wifi when I try to connect to the Internet and after a while not using it to disable it? I really need that because I hate toggling wifi and sometimes my sister doesn't disable it and my battery is drained

View 6 Replies View Related

Android :: How To Scan Access Points And Select Strongest Signal?

May 13, 2010

I am currently trying to write a class in Android that will Scan for access points, calculate which access point has the best signal and then connect to that access point. So the application will be able to scan on the move and attach to new access points on the go. I have the scanning and calculation of the best signal working. But when it comes to attaching to the best access point I am having trouble. It appears that enableNetwork(netid, othersTrueFalse) is the only method for attaching to an Access point but this causes problems as from my Scan Results I am not able to get the id of the access point with the strongest signal.

This is my code:
---
public void doWifiScan(){ scanTask = new TimerTask() { public void run() { handler.post(new Runnable() { public void run() { sResults = wifiManager.scan(getBaseContext());
if(sResults!=null) Log.d("TIMER", "sResults count" + sResults.size());
ScanResult scan = wifiManager.calculateBestAP(sResults);
wifiManager.addNewAccessPoint(scan); } }); }};
t.schedule(scanTask, 3000, 30000); }
---

public ScanResult calculateBestAP(List<ScanResult> sResults){ ScanResult bestSignal = null;
for (ScanResult result : sResults) { if (bestSignal == null || WifiManager.compareSignalLevel(bestSignal.level, result.level) < 0) bestSignal = result;
} String message = String.format("%s networks found. %s is the strongest. %s is the bsid", sResults.size(), bestSignal.SSID, bestSignal.BSSID);
Log.d("sResult", message); return bestSignal; }
---
public void addNewAccessPoint(ScanResult scanResult){ WifiConfiguration wc = new WifiConfiguration();
wc.SSID = '"' + scanResult.SSID + '"';
//wc.preSharedKey = ""password""; wc.hiddenSSID = true;
wc.status = WifiConfiguration.Status.ENABLED;
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
wc.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
wc.allowedProtocols.set(WifiConfiguration.Protocol.RSN);
int res = mainWifi.addNetwork(wc);
Log.d("WifiPreference", "add Network returned " + res );
boolean b = mainWifi.enableNetwork(res, false);
Log.d("WifiPreference", "enableNetwork returned " + b );
}
---

When I try to use addNewAccessPoint(ScanResult scanResult) it just adds another AP to the list in the settings application with the same name as the one with the best signal, so I end up with loads of duplicates and not actually attaching to them. Can anyone point me in the direction of a better solution?

View 12 Replies View Related

General :: How To Enable Desktop Notifications Without WiFi

Jan 30, 2014

I have installed Desktop Notifications and Pushbullet. Both apps require me to enable them in the Notification Mirroring Service. To do that it always takes me wifi to switch the wifi on.I don't have wifi, I have 3G. How do I enable the service without wifi?

View 3 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

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 :: Enable WiFi To HTC One S Android Mobile?

Nov 5, 2012

Earlier i used Apple Iphone 3Gs , but now shifted to HTC One S

Problem i am facing is , i can't connect wifi from laptop to HTC one S through connectify

Through connectify,wifi sharing is available for other laptops and iphone , but it is not working for HTC one S

As some one posted in other thread http:[url]...that we can see 3 options, but only 2 options are displaying in my connectify... i dont have wifi access point in the advance option...only ad hoc

I am working on Panasonic CF 29 laptop , Windows 7 Ultimate32 bit OS with Intel Pro/Wireless 220BG network Connection 9.1.1.15 version..

I tried Update Driver , it is saying as uptodate... but still the problem exists , i cant connect wifi and also Hosted Network is showing No (while i run a command in cmd prompt)

and one more thing while i used mhotspot also no use it is saying as the group or resource is not in the correct state to perform. enable wifi to my HTC one S android mobile also....

View 2 Replies View Related

General :: XOLO Q1100 - How To Enable WiFi Direct

Mar 1, 2014

I bought xolo q1100.... 1.4ghz snapdrogon ....720 ips hd display....... but there is no option for wifi direct.....

How could i find wifi direct application ????

View 2 Replies View Related

General :: Enable Adhoc WiFi On Xoom MZ604

Feb 16, 2012

I have a Motorola MZ604, wifi only, with Android 4.0.3 from Team EOS XOOM ICS 4.0.3 Wingray MZ604 NIGHTLIES, build 57.

I want to connect it to an Adhoc WiFi port from my mobile phone: Hotspot (Nokia N9), but the XOOM can not find it. But with my laptop, I can connect it very easy.

I listen about, and suggest to install the zip file: wpa_supplicant, at:

[URL]

Probably it works for older version of Android 3, but I tried once, and it did not work, and also I have to reinstall the Nightlies again.Any verified file and way to do it?

View 1 Replies View Related

Android :: Sync And Map - Show Map Path Only Between Two Points - Src - Dest

Nov 24, 2010

I have just started with android ...

I have to develop an android application which should sync with data on webserver..

User adds some data using website, then data should be pulled and synced with data on android device...
I am not sure how to implement this...

Also I have to show map path only between two points (src,dest).. I have googled and it lloks like there is no built-in... only way is to use overlays and draw method.. is my understanding correct?

View 1 Replies View Related

Android :: Connectivity On Android / No Access Points For 3G Or GPRS

May 5, 2010

I have a couple of questions about connectivity on Android, if anyone has any insight it would be great. What is the default when an application wants to wirelessly connect? Is it WLan? And if WLan is switched off or there is no access points around is it 3G or GPRS? Is a device always ip connected? Or when its disabled from WLan or 3G does it's lose its IP address?

Is an application, for example the browser only ever connected to one IP address? Or can it be connected to multiple addresses for each radio such as GPRS or WiFi (WLan)? Can an application decide which connection to open a socket to? For example can I create an application and decide whether to connect the socket to the WLan or GPRS? Or does the OS decide? Finally how do native applications handle connectivity? In the same manner?

View 3 Replies View Related

General :: Using Old Droid To Access WiFi

Dec 14, 2011

As I've retired and now on a fixed income, I'm planning to go from smart to dumb and get a basic phone and plan for only voice and text. However, that will leave me with a droid that is disconnected from Verizon. Can I basically then use the phone as a small wi-fi tablet and access the internet and email, not to mention other app?

View 2 Replies View Related

General :: Access To PC Through Phone WiFi?

Feb 1, 2013

I have a Wifi router, both PC and Android 4.0 (and 2.3 one) linked through Wifi to this router.

how can i access my pc's shared directories through wifi directly?

View 3 Replies View Related

General :: Cannot Access AC With ForumRunner Or Browser With WiFi

Feb 18, 2013

A couple days ago I had a window pop-up on my SGS3 about WiFi access.

There were 3 web sites listed, but the one that struck me was the one about Android Central.

I don't have a clue how I got the window to open, or even why it did, but the entry for AC said WiFi access to this site was blocked.

Sure enough, I cannot access AC through Forum Runner, but I can get here with Tapatalk 2.I also cannot access it with a browser. Either Chrome or the stock one.

View 4 Replies View Related

General :: Not Switching From WiFi To 2G / 3G On (No Internet Access)

Feb 27, 2014

In my home, i have poor isp connection loosing internet access most of the time. This results in WiFi available and no internet access in my mobile (Nexus 4, Android 4.2.2). Am tired of searching relevant solution "avoid poor connection - under wifi advance settings", with applications and tasker script,

View 1 Replies View Related

General :: Sharing Laptop Internet On Android Phone While Using Phone WiFi Hotspot Enable?

Apr 4, 2013

I have samsung android phone which can be used as wifi hotspot. My question is can I use my laptop internet on android phone by connection laptop to android phone hotspot as phone is unable to connect adhoc network.

View 1 Replies View Related

Android :: How To Enable / Disable Access Point Network (APN)?

Jun 22, 2009

How to enable/disable Access Point Network (APN)?

View 2 Replies View Related

HTC EVO 4G :: Access Control Enable Purpose On Wireless Tether

Sep 19, 2010

what does the access control enable purpose on the wireless tether i have mine disable.

View 1 Replies View Related

General :: Samsung Galaxy Mini Plus WiFi - Don't Have Internet Access?

Jun 9, 2012

I have problem with wifi conection. I'm normally connected to wifi but I don't have internet access.

View 2 Replies View Related

General :: Access Guest WiFi Network Using Own Personal Smartphone

May 17, 2012

My company has a guest Wifi network and a regular employee wifi network that requires a password. I was wondering if I were to access the guest wifi network using my own personal smartphone, what kind of privacy would I have?

Are there any easy apps to encrypt myself while on it? I see SSH Tunnel and Connectbot, but I don't have a server.

View 1 Replies View Related







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