├── .gitattributes ├── README.md ├── improved └── system │ └── bin │ ├── check-archive.sh │ └── flash-archive.sh ├── install.bat ├── install.sh ├── original └── system │ └── bin │ ├── check-archive.sh │ └── flash-archive.sh ├── template ├── README.md └── genymotion-ready ├── uninstall.bat └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/README.md -------------------------------------------------------------------------------- /improved/system/bin/check-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/improved/system/bin/check-archive.sh -------------------------------------------------------------------------------- /improved/system/bin/flash-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/improved/system/bin/flash-archive.sh -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/install.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/install.sh -------------------------------------------------------------------------------- /original/system/bin/check-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/original/system/bin/check-archive.sh -------------------------------------------------------------------------------- /original/system/bin/flash-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/original/system/bin/flash-archive.sh -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/template/README.md -------------------------------------------------------------------------------- /template/genymotion-ready: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/template/genymotion-ready -------------------------------------------------------------------------------- /uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/uninstall.bat -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rovo89/GenyFlash/HEAD/uninstall.sh --------------------------------------------------------------------------------