This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<List<Models.Printer>> ListAllPrinters() | |
{ | |
//Gets all printers inside the Database | |
var printerDevices = await _deviceService.GetAllPrinters(); | |
//Gets all unpaired Bluetooth devices | |
var unpairedDevices = BluetoothDevice.GetDeviceSelectorFromPairingState(false); | |
//Gets all paired Bluetooth devices | |
var pairedDevices = BluetoothDevice.GetDeviceSelectorFromPairingState(true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ActiveMinutesActivity extends AppCompatActivity implements IActiveMinutesView { | |
private static final String TAG = ActiveMinutesActivity.class.getSimpleName(); | |
public static String CHECK_SH_JOB_ID_KEY = "check_sh_job_id_key"; | |
@Inject | |
IActiveMinutesPresenter mPresenter; | |
@Inject | |
SharedPreferences mSharedPreferences; | |
@BindView(R.id.toolbar) | |
Toolbar mToolbar; | |
private JobManager mJobManager; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package criminalintent.android.bignerdranch.com.criminalintent; | |
import java.util.UUID; | |
/** | |
* Created by koemdzhiev on 23/02/2015. | |
*/ | |
public class Crime { | |
private UUID mId; | |
private String mTitle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/build |