├── .github └── workflows │ └── FORMAT.yml ├── README.md ├── _config.yml ├── assets └── css │ └── style.scss ├── blank ├── img ├── button.jpg ├── download-btn.png ├── icon-dropbox.png ├── icon-github.png ├── logo-android.png ├── logo-win.png └── tute │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── setup.sh ├── source-files ├── dropboxhosted.txt └── mediafirehosted.txt └── start.sh /.github/workflows/FORMAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/.github/workflows/FORMAT.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /blank: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /img/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/button.jpg -------------------------------------------------------------------------------- /img/download-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/download-btn.png -------------------------------------------------------------------------------- /img/icon-dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/icon-dropbox.png -------------------------------------------------------------------------------- /img/icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/icon-github.png -------------------------------------------------------------------------------- /img/logo-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/logo-android.png -------------------------------------------------------------------------------- /img/logo-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/logo-win.png -------------------------------------------------------------------------------- /img/tute/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/1.png -------------------------------------------------------------------------------- /img/tute/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/10.png -------------------------------------------------------------------------------- /img/tute/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/11.png -------------------------------------------------------------------------------- /img/tute/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/2.png -------------------------------------------------------------------------------- /img/tute/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/3.png -------------------------------------------------------------------------------- /img/tute/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/4.png -------------------------------------------------------------------------------- /img/tute/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/5.png -------------------------------------------------------------------------------- /img/tute/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/6.png -------------------------------------------------------------------------------- /img/tute/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/7.png -------------------------------------------------------------------------------- /img/tute/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/8.png -------------------------------------------------------------------------------- /img/tute/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/img/tute/9.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/setup.sh -------------------------------------------------------------------------------- /source-files/dropboxhosted.txt: -------------------------------------------------------------------------------- 1 | https://dl.dropboxusercontent.com/s/iengjqhgoukoxuj/w7.zip?dl=0 2 | -------------------------------------------------------------------------------- /source-files/mediafirehosted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/source-files/mediafirehosted.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKPR2007/WinDroiD/HEAD/start.sh --------------------------------------------------------------------------------