Exemple #1
0
        public DeviceListPresenter(IRecipizerView _view)
        {
            this.view  = _view;
            devices    = new List <BluetoothDevice>();
            DeviceDict = new Dictionary <string, BluetoothDevice>();


            view.RequestPermission();

            thisPhone = BluetoothAdapter.DefaultAdapter;

            StartDiscoveryProcess();
        }