This file contains hidden or 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
| //CÓDIGO KOTLIN | |
| package com.example.app // esto es el nombre del paquete de su app | |
| import android.Manifest | |
| import android.R | |
| import android.annotation.SuppressLint | |
| import android.app.Activity | |
| import android.app.AlertDialog | |
| import android.bluetooth.BluetoothAdapter |
This file contains hidden or 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
| Rules for Clean Code | |
| https://williamdurand.fr/2013/06/03/object-calisthenics/#:~:text=Object%20Calisthenics%20are%20programming%20exercises,under%20the%20context%20of%20gymnastics. | |
| Important Nugent Packages | |
| For Unit Tests - x Unit.net | |
| For Mocking Tests - N Substitute | |
| For Retrys - Polly | |
| For Tests Assertions - Fluen Assertions | |
| For BenchMarks - BenchmarkDotNet |