• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Mods how to activate wps tab in android??please [Root only]

abdalla

Lurker
hi thanks for this beutifull forums at first

second i want to know how to activate the wps tab gui in wireless network connection in any version of android to connect to ap that support wps by entering the ap pin like samsung sdous do as xperia arc s


i think you understand me now

really i make abig search about this but i didn;t find the answer please benefit me and all thanks for you members

i found this as resaults of my search:

this is the wpa supplicant parameters


/*
* Disable WPS tab by default; it will be enabled if wpa_supplicant is
* built with WPS support.
*/
wpsTab->setEnabled(false);
wpaguiTab->setTabEnabled(wpaguiTab->indexOf(wpsTab), false);



but i didn't know how to bebug wpa_supplicant to activate this tab in the gui

i want an answer to do that even if by adb shell in cmd

at the end thaaaaaaaaaaaaaanks for all benefit me

and thanks for your forums
 
Read what you quoted - "it will be enabled if wpa_supplicant is
* built with WPS support."

You can't change how a program was built. You can try disassembling it and comparing what you get (which will be assembly language) with the source (which is C) to see where to patch the code, but changing the source and recompiling Android is easier.
("It's easier to touch your left elbow with your left hand without breaking any bones than it is to become a horse by wishing to be one" type of easier.)

The comment you quoted is really all the information you need if you're capable of doing what you want. If that's not enough information to tell you what to do, you're not capable of doing it. Hacking isn't like "put tab A into slot B", it's more like a treasure hunt in which you're not told the area or what the treasure is. You have to figure it out with no clues. (To modify someone else's code by hacking it, you have to have designed and written a lot of your own code.)

That being said, WPS is enabled in just about every current or near current version (meaning about Jelly Bean and up) of Android.
 
("It's easier to touch your left elbow with your left hand without breaking any bones than it is to become a horse by wishing to be one" type of easier.)

hhh this may say it is impossible to do my goal >>>:p

secondery are you sure there is n't any way to do that i want to active wps tab

in my phone waaaaaaaaaa

lastly thank you for your reply my friend;)
 
If wpa_supplicant wasn't built with WPS, you can't just enable WPS, you have to hack the wpa_supplicant file to make it the same as if it had been built with WPS, or you have to recompile it with WPS enabled. That's programming 101.

You can't do something (programming, in this case) that you don't know how to do, so I guess the answer to your question is "no, there isn't any way, unless you learn how to hack or build a program". (And that's not something you can do in a month or two.)
 
Back
Top Bottom