├── .gitignore ├── LICENSE ├── README.md └── src ├── README.md ├── about-author └── README.md ├── about-this-book └── README.md ├── anko-and-extension-functions └── README.md ├── classes-and-functions └── README.md ├── creating-a-new-project └── README.md ├── data-classes └── README.md ├── getting-ready └── README.md ├── introduction └── README.md ├── is-this-book-for-you └── README.md ├── making-the-forecast-list-clickable └── README.md ├── operators-overloading └── README.md ├── parsing-data └── README.md ├── retrieving-data-from-api └── README.md ├── translator-talk └── README.md ├── variables-and-properties └── README.md └── writing-your-first-class └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .gradle 3 | *.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/README.md -------------------------------------------------------------------------------- /src/about-author/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/about-this-book/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/anko-and-extension-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/anko-and-extension-functions/README.md -------------------------------------------------------------------------------- /src/classes-and-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/classes-and-functions/README.md -------------------------------------------------------------------------------- /src/creating-a-new-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/creating-a-new-project/README.md -------------------------------------------------------------------------------- /src/data-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/data-classes/README.md -------------------------------------------------------------------------------- /src/getting-ready/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/getting-ready/README.md -------------------------------------------------------------------------------- /src/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/introduction/README.md -------------------------------------------------------------------------------- /src/is-this-book-for-you/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/making-the-forecast-list-clickable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/making-the-forecast-list-clickable/README.md -------------------------------------------------------------------------------- /src/operators-overloading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/operators-overloading/README.md -------------------------------------------------------------------------------- /src/parsing-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/parsing-data/README.md -------------------------------------------------------------------------------- /src/retrieving-data-from-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/retrieving-data-from-api/README.md -------------------------------------------------------------------------------- /src/translator-talk/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/variables-and-properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/variables-and-properties/README.md -------------------------------------------------------------------------------- /src/writing-your-first-class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotlinFarsi/OpenSourceTutorials-Android/HEAD/src/writing-your-first-class/README.md --------------------------------------------------------------------------------