Hey all,currently i'm trying to get the direct wifi with the group feature working. But i've a little problem. When one device creates a group (which is successful) on the other device a requestGroupInfo will only return a null-Object in the listener. Why is that so, how can i get these information and how do i connect to the group?Another thing is that the App should automatically find the correct group, is there any possiblity to name the created group or add some meta information?Thanks a lotJakob
--
You received this message because you are subscribed to the Google Groups "android-platform" group.
To post to this group, send email to android-...@googlegroups.com.
To unsubscribe from this group, send email to android-platfo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-platform?hl=en.
To post to this group, send email to android-platform@googlegroups.com.
To unsubscribe from this group, send email to android-platform+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/android-platform/-/1TJqT-TSUO4J.
To post to this group, send email to android-...@googlegroups.com.
To unsubscribe from this group, send email to android-platfo...@googlegroups.com.
Is there any update here? I'm really looking to connect legacy WIFI devices to my WIFI DIRECT AP, any work around this problem?
On Monday, June 25, 2012 9:35:37 AM UTC-7, Jakob Jarosch wrote:Hey all,--currently i'm trying to get the direct wifi with the group feature working. But i've a little problem. When one device creates a group (which is successful) on the other device a requestGroupInfo will only return a null-Object in the listener. Why is that so, how can i get these information and how do i connect to the group?Another thing is that the App should automatically find the correct group, is there any possiblity to name the created group or add some meta information?Thanks a lotJakob
You received this message because you are subscribed to the Google Groups "android-platform" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-platform/-/610-iJKipuMJ.
Is there anyway to access the WifiP2pGroup object that holds the GO. The object that onGroupInfoAvailable() function receives looks like to be a copy of the GO object and not the original one.
On Tuesday, January 8, 2013 7:51:24 AM UTC-8, Irfan Sheriff wrote:You can requesetGroupInfo() on the device that has the auto GO created and do a getPassphrase() to fetch passwordOn Mon, Jan 7, 2013 at 8:04 PM, <m.f.r...@gmail.com> wrote:
Is there any update here? I'm really looking to connect legacy WIFI devices to my WIFI DIRECT AP, any work around this problem?To view this discussion on the web visit https://groups.google.com/d/msg/android-platform/-/610-iJKipuMJ.
On Monday, June 25, 2012 9:35:37 AM UTC-7, Jakob Jarosch wrote:Hey all,--currently i'm trying to get the direct wifi with the group feature working. But i've a little problem. When one device creates a group (which is successful) on the other device a requestGroupInfo will only return a null-Object in the listener. Why is that so, how can i get these information and how do i connect to the group?Another thing is that the App should automatically find the correct group, is there any possiblity to name the created group or add some meta information?Thanks a lotJakob
You received this message because you are subscribed to the Google Groups "android-platform" group.
To post to this group, send email to android-...@googlegroups.com.
To unsubscribe from this group, send email to android-platfo...@googlegroups.com.--
You received this message because you are subscribed to the Google Groups "android-platform" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-platform/-/gtxqdY09swoJ.
To view this discussion on the web visit https://groups.google.com/d/msg/android-platform/-/35y-PTgD7VgJ.
To post to this group, send email to android-...@googlegroups.com.
To unsubscribe from this group, send email to android-platfo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-platform?hl=en.
--
You received this message because you are subscribed to the Google Groups "android-platform" group.
WifiP2pConfig config = new WifiP2pConfig();How can I createGroup() with a pre specified PIN?
config.deviceAddress = null;
config.wps.pin = "00000000";
config.wps.setup = WpsInfo.PBC;
mManager.connect(mChannel, config, new WifiP2pManager.ActionListener()
{
@Override
public void onSuccess()
{
groupCallbacks.sCreateGroup();
}
@Override
public void onFailure(int reason)
{
groupCallbacks.fCreateGroup(reason);
}
});