├── .gitignore ├── 01-what-is-asynchronous-programming └── projects │ ├── challenge │ └── .keep │ ├── final │ └── .keep │ └── starter │ └── .keep ├── 02-setting-up-your-build-environments └── projects │ ├── challenge │ └── .keep │ ├── final │ └── .keep │ └── starter │ └── .keep ├── 03-getting-started-with-coroutines └── projects │ ├── final │ └── getting_started_with_coroutines │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt │ └── starter │ └── getting_started_with_coroutines │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── Main.kt ├── 04-suspending-functions └── projects │ ├── final │ └── suspending_functions │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Api.kt │ │ ├── Main.kt │ │ └── User.kt │ └── starter │ └── suspending_functions │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ ├── Api.kt │ ├── Main.kt │ └── User.kt ├── 05-async-await └── projects │ ├── final │ └── async_await │ │ ├── .gitignore │ │ ├── .idea │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── workspace.xml │ │ ├── build.gradle │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ ├── src │ │ └── main │ │ │ └── kotlin │ │ │ ├── AsyncAwait.kt │ │ │ └── CustomScope.kt │ │ └── users.txt │ └── starter │ └── async_await │ ├── .gitignore │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ ├── src │ └── main │ │ └── kotlin │ │ ├── AsyncAwait.kt │ │ └── CustomScope.kt │ └── users.txt ├── 06-coroutine-context └── projects │ ├── final │ ├── .keep │ └── coroutine-context │ │ ├── build.gradle │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── contextProvider │ │ ├── CoroutineContextProvider.kt │ │ └── CoroutineContextProviderImpl.kt │ └── starter │ ├── .keep │ └── coroutine-context │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ ├── Main.kt │ └── contextProvider │ ├── CoroutineContextProvider.kt │ └── CoroutineContextProviderImpl.kt ├── 07-context-switch-and-dispatching └── projects │ ├── final │ └── context-switch-and-dispatching │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt │ └── starter │ └── context-switch-and-dispatching │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── Main.kt ├── 08-exception-handling └── projects │ ├── final │ └── ExceptionHandling │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── raywenderlich │ │ └── exceptionhandling │ │ ├── CallbackWrapping.kt │ │ ├── CoroutineExceptionHandlingExample.kt │ │ ├── ExceptionHandlingForChild.kt │ │ ├── GlobalExceptionHandler.kt │ │ ├── SupervisorJob.kt │ │ ├── SupervisorScope.kt │ │ └── TryCatch.kt │ └── starter │ └── ExceptionHandling │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── com │ └── raywenderlich │ └── exceptionhandling │ ├── CallbackWrapping.kt │ ├── CoroutineExceptionHandlingExample.kt │ ├── ExceptionHandlingForChild.kt │ ├── GlobalExceptionHandler.kt │ ├── SupervisorJob.kt │ ├── SupervisorScope.kt │ └── TryCatch.kt ├── 09-manage-cancellation └── projects │ ├── final │ └── ManageCancellation │ │ ├── .gitignore │ │ ├── .idea │ │ └── workspace.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── raywenderlich │ │ └── managecancellation │ │ ├── CancelAndJoinCoroutineExample.kt │ │ ├── CancelChildren.kt │ │ ├── CancellationExceptionExample.kt │ │ ├── CooperativeCancellation.kt │ │ ├── JoinAllCoroutineExample.kt │ │ ├── JoinCoroutineExample.kt │ │ ├── StdLibCancellation.kt │ │ ├── TimeoutCancellationExceptionHandling.kt │ │ ├── WithTimeoutExample.kt │ │ └── WithTimeoutOrNullExample.kt │ └── starter │ └── ManageCancellation │ ├── .gitignore │ ├── .idea │ └── workspace.xml │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── com │ └── raywenderlich │ └── managecancellation │ ├── CancelAndJoinCoroutineExample.kt │ ├── CancelChildren.kt │ ├── CancellationExceptionExample.kt │ ├── CooperativeCancellation.kt │ ├── JoinAllCoroutineExample.kt │ ├── JoinCoroutineExample.kt │ ├── StdLibCancellation.kt │ ├── TimeoutCancellationExceptionHandling.kt │ ├── WithTimeoutExample.kt │ └── WithTimeoutOrNullExample.kt ├── 10-building-sequences-and-iterators-with-yield └── projects │ ├── final │ ├── .keep │ └── sequences-and-iterators │ │ ├── build.gradle │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── raywenderlich │ │ └── sequence │ │ ├── GeneratorExample.kt │ │ ├── IteratorExample.kt │ │ ├── IteratorYieldAllExample.kt │ │ ├── SequenceExample.kt │ │ ├── SequenceYieldAllExample.kt │ │ └── SequenceYieldExample.kt │ └── starter │ ├── .keep │ └── sequences-and-iterators │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── com │ └── raywenderlich │ └── sequence │ ├── GeneratorExample.kt │ ├── IteratorExample.kt │ ├── IteratorYieldAllExample.kt │ ├── SequenceExample.kt │ ├── SequenceYieldAllExample.kt │ └── SequenceYieldExample.kt ├── 11-beginning-with-coroutine-flow └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── beginning_with_coroutines_flow │ │ ├── build.gradle │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt │ └── starter │ ├── .keep │ └── beginning_with_coroutines_flow │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── Main.kt ├── 12-sharedflow-and-stateflow ├── assets │ └── .keep └── projects │ ├── final │ └── sharedflow_and_stateflow │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── Main.kt │ └── starter │ └── sharedflow_and_stateflow │ ├── .gitignore │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── Main.kt ├── 13-testing-coroutines └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── testing_coroutines │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── contextProvider │ │ │ ├── CoroutineContextProvider.kt │ │ │ └── CoroutineContextProviderImpl.kt │ │ │ ├── model │ │ │ └── User.kt │ │ │ ├── presentation │ │ │ └── MainPresenter.kt │ │ │ └── view │ │ │ └── MainView.kt │ │ └── test │ │ └── kotlin │ │ └── view │ │ └── MainViewTest.kt │ └── starter │ ├── .keep │ └── testing_coroutines │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ ├── main │ └── kotlin │ │ ├── contextProvider │ │ ├── CoroutineContextProvider.kt │ │ └── CoroutineContextProviderImpl.kt │ │ ├── model │ │ └── User.kt │ │ ├── presentation │ │ └── MainPresenter.kt │ │ └── view │ │ └── MainView.kt │ └── test │ └── kotlin │ └── view │ └── MainViewTest.kt ├── 14-coroutines-and-android ├── assets │ └── .keep └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── DisneyExplorer │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raywenderlich │ │ │ │ │ └── android │ │ │ │ │ └── disneyexplorer │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── common │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ │ └── FlowUtils.kt │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ │ ├── DisneyApiService.kt │ │ │ │ │ │ └── DisneyApiServiceImpl.kt │ │ │ │ │ └── repository │ │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ │ ├── di │ │ │ │ │ └── DependencyHolder.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── activity │ │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ │ ├── DisneyActivity.kt │ │ │ │ │ ├── IntroActivity.kt │ │ │ │ │ └── UiLayerActivity.kt │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ │ ├── compose │ │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ └── DisneyViewModel.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── rotation.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_loading.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_background_processing.xml │ │ │ │ ├── activity_intro.xml │ │ │ │ ├── activity_networking.xml │ │ │ │ ├── activity_persistence.xml │ │ │ │ ├── activity_ui_layer.xml │ │ │ │ ├── list_item_character.xml │ │ │ │ └── list_item_number.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── starter │ ├── .keep │ └── DisneyExplorer │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ ├── App.kt │ │ │ │ ├── common │ │ │ │ └── utils │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ └── FlowUtils.kt │ │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ ├── model │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ ├── networking │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ ├── DisneyApiService.kt │ │ │ │ │ └── DisneyApiServiceImpl.kt │ │ │ │ └── repository │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ ├── di │ │ │ │ └── DependencyHolder.kt │ │ │ │ └── ui │ │ │ │ ├── activity │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ ├── DisneyActivity.kt │ │ │ │ ├── IntroActivity.kt │ │ │ │ └── UiLayerActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ └── list │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ ├── compose │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewmodel │ │ │ │ └── DisneyViewModel.kt │ │ └── res │ │ │ ├── anim │ │ │ └── rotation.xml │ │ │ ├── drawable │ │ │ └── ic_loading.xml │ │ │ ├── layout │ │ │ ├── activity_background_processing.xml │ │ │ ├── activity_intro.xml │ │ │ ├── activity_networking.xml │ │ │ ├── activity_persistence.xml │ │ │ ├── activity_ui_layer.xml │ │ │ ├── list_item_character.xml │ │ │ └── list_item_number.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raywenderlich │ │ └── android │ │ └── disneyexplorer │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 15-coroutines-in-the-ui-layer ├── assets │ └── .keep └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── DisneyExplorer │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raywenderlich │ │ │ │ │ └── android │ │ │ │ │ └── disneyexplorer │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── common │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ │ └── FlowUtils.kt │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ │ ├── DisneyApiService.kt │ │ │ │ │ │ └── DisneyApiServiceImpl.kt │ │ │ │ │ └── repository │ │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ │ ├── di │ │ │ │ │ └── DependencyHolder.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── activity │ │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ │ ├── DisneyActivity.kt │ │ │ │ │ ├── IntroActivity.kt │ │ │ │ │ └── UiLayerActivity.kt │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ │ ├── compose │ │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ └── DisneyViewModel.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── rotation.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_loading.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_background_processing.xml │ │ │ │ ├── activity_intro.xml │ │ │ │ ├── activity_networking.xml │ │ │ │ ├── activity_persistence.xml │ │ │ │ ├── activity_ui_layer.xml │ │ │ │ ├── list_item_character.xml │ │ │ │ └── list_item_number.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── starter │ ├── .keep │ └── DisneyExplorer │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ ├── App.kt │ │ │ │ ├── common │ │ │ │ └── utils │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ └── FlowUtils.kt │ │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ ├── model │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ ├── networking │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ ├── DisneyApiService.kt │ │ │ │ │ └── DisneyApiServiceImpl.kt │ │ │ │ └── repository │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ ├── di │ │ │ │ └── DependencyHolder.kt │ │ │ │ └── ui │ │ │ │ ├── activity │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ ├── DisneyActivity.kt │ │ │ │ ├── IntroActivity.kt │ │ │ │ └── UiLayerActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ └── list │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ ├── compose │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewmodel │ │ │ │ └── DisneyViewModel.kt │ │ └── res │ │ │ ├── anim │ │ │ └── rotation.xml │ │ │ ├── drawable │ │ │ └── ic_loading.xml │ │ │ ├── layout │ │ │ ├── activity_background_processing.xml │ │ │ ├── activity_intro.xml │ │ │ ├── activity_networking.xml │ │ │ ├── activity_persistence.xml │ │ │ ├── activity_ui_layer.xml │ │ │ ├── list_item_character.xml │ │ │ └── list_item_number.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raywenderlich │ │ └── android │ │ └── disneyexplorer │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 16-networking-with-coroutines ├── assets │ └── .keep └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── DisneyExplorer │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raywenderlich │ │ │ │ │ └── android │ │ │ │ │ └── disneyexplorer │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── common │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ │ └── FlowUtils.kt │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ │ └── repository │ │ │ │ │ │ └── DisneyRepository.kt │ │ │ │ │ ├── di │ │ │ │ │ └── DependencyHolder.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── activity │ │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ │ ├── DisneyActivity.kt │ │ │ │ │ ├── IntroActivity.kt │ │ │ │ │ └── UiLayerActivity.kt │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ │ ├── compose │ │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ └── DisneyViewModel.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── rotation.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_loading.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_background_processing.xml │ │ │ │ ├── activity_intro.xml │ │ │ │ ├── activity_networking.xml │ │ │ │ ├── activity_persistence.xml │ │ │ │ ├── activity_ui_layer.xml │ │ │ │ ├── list_item_character.xml │ │ │ │ └── list_item_number.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── starter │ ├── .keep │ └── DisneyExplorer │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ ├── App.kt │ │ │ │ ├── common │ │ │ │ └── utils │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ └── FlowUtils.kt │ │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ ├── model │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ ├── networking │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ └── repository │ │ │ │ │ └── DisneyRepository.kt │ │ │ │ ├── di │ │ │ │ └── DependencyHolder.kt │ │ │ │ └── ui │ │ │ │ ├── activity │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ ├── DisneyActivity.kt │ │ │ │ ├── IntroActivity.kt │ │ │ │ └── UiLayerActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ └── list │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ ├── compose │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewmodel │ │ │ │ └── DisneyViewModel.kt │ │ └── res │ │ │ ├── anim │ │ │ └── rotation.xml │ │ │ ├── drawable │ │ │ └── ic_loading.xml │ │ │ ├── layout │ │ │ ├── activity_background_processing.xml │ │ │ ├── activity_intro.xml │ │ │ ├── activity_networking.xml │ │ │ ├── activity_persistence.xml │ │ │ ├── activity_ui_layer.xml │ │ │ ├── list_item_character.xml │ │ │ └── list_item_number.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raywenderlich │ │ └── android │ │ └── disneyexplorer │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 17-persistence-and-coroutines ├── assets │ └── .keep └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── DisneyExplorer │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raywenderlich │ │ │ │ │ └── android │ │ │ │ │ └── disneyexplorer │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── common │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ │ └── FlowUtils.kt │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ │ └── repository │ │ │ │ │ │ └── DisneyRepository.kt │ │ │ │ │ ├── di │ │ │ │ │ └── DependencyHolder.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── activity │ │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ │ ├── DisneyActivity.kt │ │ │ │ │ ├── IntroActivity.kt │ │ │ │ │ └── UiLayerActivity.kt │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ │ ├── compose │ │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ └── DisneyViewModel.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── rotation.xml │ │ │ │ ├── drawable-night │ │ │ │ ├── ic_loading.xml │ │ │ │ └── icn_refresh.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_loading.xml │ │ │ │ └── icn_refresh.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_background_processing.xml │ │ │ │ ├── activity_intro.xml │ │ │ │ ├── activity_networking.xml │ │ │ │ ├── activity_persistence.xml │ │ │ │ ├── activity_ui_layer.xml │ │ │ │ ├── list_item_character.xml │ │ │ │ └── list_item_number.xml │ │ │ │ ├── menu │ │ │ │ └── menu_disney.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── starter │ ├── .keep │ └── DisneyExplorer │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ ├── App.kt │ │ │ │ ├── common │ │ │ │ └── utils │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ └── FlowUtils.kt │ │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ ├── model │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ ├── networking │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ └── repository │ │ │ │ │ └── DisneyRepository.kt │ │ │ │ ├── di │ │ │ │ └── DependencyHolder.kt │ │ │ │ └── ui │ │ │ │ ├── activity │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ ├── DisneyActivity.kt │ │ │ │ ├── IntroActivity.kt │ │ │ │ └── UiLayerActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ └── list │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ ├── compose │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ └── DisneyComposeActivity.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewmodel │ │ │ │ └── DisneyViewModel.kt │ │ └── res │ │ │ ├── anim │ │ │ └── rotation.xml │ │ │ ├── drawable-night │ │ │ ├── ic_loading.xml │ │ │ └── icn_refresh.xml │ │ │ ├── drawable │ │ │ ├── ic_loading.xml │ │ │ └── icn_refresh.xml │ │ │ ├── layout │ │ │ ├── activity_background_processing.xml │ │ │ ├── activity_intro.xml │ │ │ ├── activity_networking.xml │ │ │ ├── activity_persistence.xml │ │ │ ├── activity_ui_layer.xml │ │ │ ├── list_item_character.xml │ │ │ └── list_item_number.xml │ │ │ ├── menu │ │ │ └── menu_disney.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raywenderlich │ │ └── android │ │ └── disneyexplorer │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 18-coroutines-and-jetpack ├── assets │ └── .keep └── projects │ ├── challenge │ └── .keep │ ├── final │ ├── .keep │ └── DisneyExplorer │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raywenderlich │ │ │ │ │ └── android │ │ │ │ │ └── disneyexplorer │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── common │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ │ └── FlowUtils.kt │ │ │ │ │ ├── data │ │ │ │ │ ├── database │ │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ │ ├── networking │ │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ │ └── repository │ │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ │ ├── di │ │ │ │ │ └── DependencyHolder.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── activity │ │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ │ ├── DisneyActivity.kt │ │ │ │ │ ├── IntroActivity.kt │ │ │ │ │ └── UiLayerActivity.kt │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ │ └── list │ │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ │ ├── compose │ │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ │ ├── DisneyComposeActivity.kt │ │ │ │ │ └── Toolbar.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ └── DisneyViewModel.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── rotation.xml │ │ │ │ ├── drawable-night │ │ │ │ ├── ic_loading.xml │ │ │ │ └── icn_refresh.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_loading.xml │ │ │ │ └── icn_refresh.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_background_processing.xml │ │ │ │ ├── activity_intro.xml │ │ │ │ ├── activity_networking.xml │ │ │ │ ├── activity_persistence.xml │ │ │ │ ├── activity_ui_layer.xml │ │ │ │ ├── list_item_character.xml │ │ │ │ └── list_item_number.xml │ │ │ │ ├── menu │ │ │ │ └── menu_disney.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ui │ │ │ └── viewmodel │ │ │ └── DisneyViewModelTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── starter │ ├── .keep │ └── DisneyExplorer │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── raywenderlich │ │ │ └── android │ │ │ └── disneyexplorer │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── raywenderlich │ │ │ │ └── android │ │ │ │ └── disneyexplorer │ │ │ │ ├── App.kt │ │ │ │ ├── common │ │ │ │ └── utils │ │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ └── FlowUtils.kt │ │ │ │ ├── data │ │ │ │ ├── database │ │ │ │ │ ├── CharacterDao.kt │ │ │ │ │ └── DisneyDatabase.kt │ │ │ │ ├── model │ │ │ │ │ ├── CharactersResponse.kt │ │ │ │ │ └── DisneyCharacter.kt │ │ │ │ ├── networking │ │ │ │ │ ├── DisneyApi.kt │ │ │ │ │ └── DisneyApiService.kt │ │ │ │ └── repository │ │ │ │ │ ├── DisneyRepository.kt │ │ │ │ │ └── DisneyRepositoryImpl.kt │ │ │ │ ├── di │ │ │ │ └── DependencyHolder.kt │ │ │ │ └── ui │ │ │ │ ├── activity │ │ │ │ ├── BackgroundProcessingActivity.kt │ │ │ │ ├── DisneyActivity.kt │ │ │ │ ├── IntroActivity.kt │ │ │ │ └── UiLayerActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── NumbersAdapter.kt │ │ │ │ └── list │ │ │ │ │ ├── CharacterViewHolder.kt │ │ │ │ │ └── DisneyAdapter.kt │ │ │ │ ├── compose │ │ │ │ ├── DisneyCharacterCard.kt │ │ │ │ ├── DisneyComposeActivity.kt │ │ │ │ └── Toolbar.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── viewmodel │ │ │ │ └── DisneyViewModel.kt │ │ └── res │ │ │ ├── anim │ │ │ └── rotation.xml │ │ │ ├── drawable-night │ │ │ ├── ic_loading.xml │ │ │ └── icn_refresh.xml │ │ │ ├── drawable │ │ │ ├── ic_loading.xml │ │ │ └── icn_refresh.xml │ │ │ ├── layout │ │ │ ├── activity_background_processing.xml │ │ │ ├── activity_intro.xml │ │ │ ├── activity_networking.xml │ │ │ ├── activity_persistence.xml │ │ │ ├── activity_ui_layer.xml │ │ │ ├── list_item_character.xml │ │ │ └── list_item_number.xml │ │ │ ├── menu │ │ │ └── menu_disney.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── raywenderlich │ │ └── android │ │ └── disneyexplorer │ │ └── ui │ │ └── viewmodel │ │ └── DisneyViewModelTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LICENSE ├── README.md └── scripts ├── make-codex-branch.sh └── make-codex-subdirectory.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/.gitignore -------------------------------------------------------------------------------- /01-what-is-asynchronous-programming/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-what-is-asynchronous-programming/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-what-is-asynchronous-programming/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-setting-up-your-build-environments/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-setting-up-your-build-environments/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-setting-up-your-build-environments/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/.gitignore -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/build.gradle -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradlew -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/gradlew.bat -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'getting_started_with_coroutines' -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/final/getting_started_with_coroutines/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/.gitignore -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/build.gradle -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradlew -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/gradlew.bat -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'getting_started_with_coroutines' -------------------------------------------------------------------------------- /03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/03-getting-started-with-coroutines/projects/starter/getting_started_with_coroutines/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/.gitignore -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/build.gradle -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/gradlew -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/gradlew.bat -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'suspending_functions' -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/Api.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/Api.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/final/suspending_functions/src/main/kotlin/User.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/.gitignore -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/build.gradle -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/gradlew -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/gradlew.bat -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'suspending_functions' -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/Api.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/Api.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/04-suspending-functions/projects/starter/suspending_functions/src/main/kotlin/User.kt -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/.gitignore -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/.idea/gradle.xml -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/.idea/misc.xml -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/.idea/workspace.xml -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/build.gradle -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/gradlew -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/gradlew.bat -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'async_await' -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/src/main/kotlin/AsyncAwait.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/src/main/kotlin/AsyncAwait.kt -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/src/main/kotlin/CustomScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/src/main/kotlin/CustomScope.kt -------------------------------------------------------------------------------- /05-async-await/projects/final/async_await/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/final/async_await/users.txt -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/.gitignore -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/build.gradle -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/gradlew -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/gradlew.bat -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'async_await' -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/src/main/kotlin/AsyncAwait.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/src/main/kotlin/AsyncAwait.kt -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/src/main/kotlin/CustomScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/src/main/kotlin/CustomScope.kt -------------------------------------------------------------------------------- /05-async-await/projects/starter/async_await/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/05-async-await/projects/starter/async_await/users.txt -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/build.gradle -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/gradlew -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/gradlew.bat -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'coroutine_context' -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProvider.kt -------------------------------------------------------------------------------- /06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProviderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/final/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProviderImpl.kt -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/build.gradle -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/gradlew -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/gradlew.bat -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'coroutine_context' -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProvider.kt -------------------------------------------------------------------------------- /06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProviderImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/06-coroutine-context/projects/starter/coroutine-context/src/main/kotlin/contextProvider/CoroutineContextProviderImpl.kt -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/build.gradle -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'context_switch_and_dispatching' -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/07-context-switch-and-dispatching/projects/final/context-switch-and-dispatching/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/starter/context-switch-and-dispatching/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/07-context-switch-and-dispatching/projects/starter/context-switch-and-dispatching/build.gradle -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/starter/context-switch-and-dispatching/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'context_switch_and_dispatching' -------------------------------------------------------------------------------- /07-context-switch-and-dispatching/projects/starter/context-switch-and-dispatching/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/07-context-switch-and-dispatching/projects/starter/context-switch-and-dispatching/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /08-exception-handling/projects/final/ExceptionHandling/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/final/ExceptionHandling/build.gradle -------------------------------------------------------------------------------- /08-exception-handling/projects/final/ExceptionHandling/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/final/ExceptionHandling/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /08-exception-handling/projects/final/ExceptionHandling/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/final/ExceptionHandling/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /08-exception-handling/projects/final/ExceptionHandling/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/final/ExceptionHandling/settings.gradle -------------------------------------------------------------------------------- /08-exception-handling/projects/final/ExceptionHandling/src/main/kotlin/com/raywenderlich/exceptionhandling/TryCatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/final/ExceptionHandling/src/main/kotlin/com/raywenderlich/exceptionhandling/TryCatch.kt -------------------------------------------------------------------------------- /08-exception-handling/projects/starter/ExceptionHandling/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/starter/ExceptionHandling/build.gradle -------------------------------------------------------------------------------- /08-exception-handling/projects/starter/ExceptionHandling/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/starter/ExceptionHandling/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /08-exception-handling/projects/starter/ExceptionHandling/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/starter/ExceptionHandling/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /08-exception-handling/projects/starter/ExceptionHandling/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/08-exception-handling/projects/starter/ExceptionHandling/settings.gradle -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/.gitignore -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/.idea/workspace.xml -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/build.gradle -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /09-manage-cancellation/projects/final/ManageCancellation/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/final/ManageCancellation/settings.gradle -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/.gitignore -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/.idea/workspace.xml -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/build.gradle -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /09-manage-cancellation/projects/starter/ManageCancellation/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/09-manage-cancellation/projects/starter/ManageCancellation/settings.gradle -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/build.gradle -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/gradlew -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/gradlew.bat -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/final/sequences-and-iterators/settings.gradle -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/build.gradle -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/gradlew -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/gradlew.bat -------------------------------------------------------------------------------- /10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/10-building-sequences-and-iterators-with-yield/projects/starter/sequences-and-iterators/settings.gradle -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/build.gradle -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/gradlew -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/gradlew.bat -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'beginning_with_coroutines_flow' -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/final/beginning_with_coroutines_flow/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/build.gradle -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/gradlew -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/gradlew.bat -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'beginning_with_coroutines_flow' -------------------------------------------------------------------------------- /11-beginning-with-coroutine-flow/projects/starter/beginning_with_coroutines_flow/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | 3 | } 4 | 5 | -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/.gitignore -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/build.gradle -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradlew -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/gradlew.bat -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/settings.gradle -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/final/sharedflow_and_stateflow/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/.gitignore -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/build.gradle -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/gradlew -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/gradlew.bat -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/settings.gradle -------------------------------------------------------------------------------- /12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/12-sharedflow-and-stateflow/projects/starter/sharedflow_and_stateflow/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/build.gradle -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/gradlew -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/gradlew.bat -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'testing_coroutines' -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/contextProvider/CoroutineContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/contextProvider/CoroutineContextProvider.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/model/User.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/presentation/MainPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/presentation/MainPresenter.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/view/MainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/src/main/kotlin/view/MainView.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/final/testing_coroutines/src/test/kotlin/view/MainViewTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/final/testing_coroutines/src/test/kotlin/view/MainViewTest.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/build.gradle -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/gradlew -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/gradlew.bat -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'testing_coroutines' -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/contextProvider/CoroutineContextProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/contextProvider/CoroutineContextProvider.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/model/User.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/presentation/MainPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/presentation/MainPresenter.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/view/MainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/src/main/kotlin/view/MainView.kt -------------------------------------------------------------------------------- /13-testing-coroutines/projects/starter/testing_coroutines/src/test/kotlin/view/MainViewTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/13-testing-coroutines/projects/starter/testing_coroutines/src/test/kotlin/view/MainViewTest.kt -------------------------------------------------------------------------------- /14-coroutines-and-android/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/final/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/final/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /14-coroutines-and-android/projects/starter/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/14-coroutines-and-android/projects/starter/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/final/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/15-coroutines-in-the-ui-layer/projects/starter/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/final/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/final/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /16-networking-with-coroutines/projects/starter/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/16-networking-with-coroutines/projects/starter/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/menu/menu_disney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/menu/menu_disney.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/final/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/final/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/menu/menu_disney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/menu/menu_disney.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /17-persistence-and-coroutines/projects/starter/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/17-persistence-and-coroutines/projects/starter/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/challenge/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/menu/menu_disney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/menu/menu_disney.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/final/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/final/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/.gitignore -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/build.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/proguard-rules.pro -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/ic_loading.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable-night/icn_refresh.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable/ic_loading.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/drawable/icn_refresh.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_background_processing.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_intro.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_networking.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_persistence.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/activity_ui_layer.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_character.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/layout/list_item_number.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/menu/menu_disney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/menu/menu_disney.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/build.gradle -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle.properties -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradlew -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/gradlew.bat -------------------------------------------------------------------------------- /18-coroutines-and-jetpack/projects/starter/DisneyExplorer/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/18-coroutines-and-jetpack/projects/starter/DisneyExplorer/settings.gradle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/README.md -------------------------------------------------------------------------------- /scripts/make-codex-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/scripts/make-codex-branch.sh -------------------------------------------------------------------------------- /scripts/make-codex-subdirectory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/kco-materials/HEAD/scripts/make-codex-subdirectory.sh --------------------------------------------------------------------------------