├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflow │ └── build.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── pull_request_template.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflow/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/.github/workflow/build.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/README.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodeflap/Android-A-Z/HEAD/pull_request_template.md --------------------------------------------------------------------------------