Android Connect to Specific UUID Not Working

Issue #5 closed
Jason Peterson created an issue

When calling ConnectToPeripheralWithIdentifier() there are no further callbacks with device activity... to fix this update the code in PeripheralFilter.java to the following:

//lines 27 - 35
public void addUuid(String uuid)
{
    String _uuid = uuid.toUpperCase();

    if(!_filter.contains(_uuid))
    {
            _filter.add(_uuid); //add this
    }
}

Comments (3)

  1. Mehran Gul

    Have fixed this issue in android plugin by adding my uuid in filters.

    But iOS build is not working. It is not showing any device in result of a scan. Can you help plz

  2. Log in to comment