Organizadores: Juan Tomaylla y Juan Handal
Links de Interes
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader | |
| == Shell |
| fun ImageView.loadImage(url: String?){ | |
| if(url != null){ | |
| Glide.with(this.context) | |
| .load(url) | |
| .fitCenter() | |
| .into(this) | |
| } | |
| } | |
| myImageView.loadImage(“!insert an url here!”) |