(bootloader) Check 'Allow OEM Unlock' in Developer Options.
FAILED (remote failure)
finished. total time: 0.007s
1 20160410 15:30:32 user@box:~ $ fastboot devices
0012711246 fastboot
0 20160410 15:30:49 user@box:~ $
## Recovery
Usando o [TWRP para Moto E surnia](https://twrp.me/devices/motorolamotoelte.html):
adb reboot bootloader
fastboot flash recovery recovery.img
fastboot reboot
Instalação manual de apps
-------------------------
adb install app.apk
Upgrade
-------
Procedimento:
* Atualizar ROM.
* Atualizar apps via F-Droid.
* Atualizar apks manualmente.
* Alguns apps podem ser auto-autualizáveis.
Arquivos
--------
Movendo arquivos do sdcard para o armazenamento interno:
adb shell
cd /storage/emulated/0
mv /storage/1FAC-34C3/Music/* Music/
Backups
-------
* [Full Phone Backup without Unlock or … | Samsung Galaxy Nexus](https://forum.xda-developers.com/galaxy-nexus/general/guide-phone-backup-unlock-root-t1420351).
* [How to use ADB backup to back up your unrooted phone - Pocketables](http://www.pocketables.com/2012/09/how-to-use-adb-backup-to-back-up-your-unrooted-phone.html).
adb backup -all
adb restore backup.ab
Dicas
-----
* [Hide Certain Files in Android Music Player (or Photo Gallery)](http://www.guidingtech.com/15563/hide-certain-files-android-music-player-photo-gallery/):
touch /storage/emulated/0/SomeApp/Media/.nomedia
* [Validating the Android 4.2.2 RSA fingerprint](https://shred.zone/cilla/page/374/validating-the-android-422-rsa-fingerprint.html):
awk '{print $1}' < ~/.android/adbkey.pub | openssl base64 -A -d -a | openssl md5 -c | \
awk '{print $2}' | tr '[:lower:]' '[:upper:]'
Referências
-----------
* [List of custom android firmware](https://en.wikipedia.org/wiki/List_of_custom_Android_firmware).