├── Chapter01 └── chapter_1_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ └── MainActivity.java │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter02 └── chapter_2_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ ├── HelloKotlin.kt │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter03 └── chapter_3_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ ├── HelloKotlin.kt │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter04 └── chapter_4_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ ├── Game.kt │ │ │ ├── HelloKotlin.kt │ │ │ ├── MainActivity.kt │ │ │ └── Snippets.kt │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter05 └── chapter_5_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ ├── Game.kt │ │ │ ├── HelloKotlin.kt │ │ │ ├── MainActivity.kt │ │ │ └── Snippets.kt │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter06 └── chapter_6_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── tictactoe │ │ │ ├── Game.kt │ │ │ ├── HelloKotlin.kt │ │ │ ├── MainActivity.kt │ │ │ └── Snippets.kt │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── content_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter10 └── chapter_10_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── todolist │ │ │ ├── MainActivity.kt │ │ │ └── NewTaskDialogFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── content_main.xml │ │ └── dialog_new_task.xml │ │ ├── menu │ │ └── to_do_list_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter11 └── chapter_11_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── todolist │ │ │ ├── MainActivity.kt │ │ │ ├── NewTaskDialogFragment.kt │ │ │ ├── TaskListAdapter.kt │ │ │ ├── db │ │ │ ├── TodoListDBContract.kt │ │ │ ├── room │ │ │ │ ├── AppDatabase.kt │ │ │ │ └── TaskDAO.kt │ │ │ └── sqlite │ │ │ │ └── TodoListDBHelper.kt │ │ │ └── model │ │ │ └── Task.kt │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_done_black.png │ │ ├── drawable-mdpi │ │ └── ic_done_black.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ └── ic_done_black.png │ │ ├── drawable-xxhdpi │ │ └── ic_done_black.png │ │ ├── drawable-xxxhdpi │ │ └── ic_done_black.png │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── content_main.xml │ │ ├── dialog_new_task.xml │ │ └── list_item_task.xml │ │ ├── menu │ │ └── to_do_list_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter12 └── chapter_12_source │ ├── app │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── todolist │ │ │ ├── AlarmReceiver.kt │ │ │ ├── AlarmService.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MyFirebaseInstanceIDService.kt │ │ │ ├── MyFirebaseMessagingService.kt │ │ │ ├── NewTaskDialogFragment.kt │ │ │ └── TimePickerDialog.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_notifications_active_black_48dp.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── content_main.xml │ │ └── dialog_new_task.xml │ │ ├── menu │ │ └── to_do_list_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter13 └── chapter_13_source │ ├── Gemfile │ ├── app │ ├── build.gradle │ ├── fabric.properties │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── notesapp │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ └── eunice │ │ │ │ └── notesapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── data │ │ │ │ ├── Note.kt │ │ │ │ └── NotesRepository.kt │ │ │ │ ├── notes │ │ │ │ ├── NotesContract.kt │ │ │ │ └── NotesPresenter.kt │ │ │ │ └── util │ │ │ │ ├── EspressoIdlingResource.kt │ │ │ │ └── SimpleCountingIdlingResource.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── packtpub │ │ └── eunice │ │ └── notesapp │ │ ├── ExampleUnitTest.kt │ │ └── NotesPresenterTest.kt │ ├── build.gradle │ ├── fastlane │ ├── Appfile │ ├── Fastfile │ ├── README.md │ └── report.xml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Chapter15 └── chapter_15_source │ ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── packtpub │ │ │ └── eunice │ │ │ └── funface │ │ │ └── funface │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── packtpub │ │ │ │ └── eunice │ │ │ │ └── funface │ │ │ │ └── funface │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── beard_2.png │ │ │ ├── children_2_1.jpg │ │ │ ├── children_group_picture.jpg │ │ │ ├── ic_launcher_background.xml │ │ │ ├── one.jpg │ │ │ └── one_1.jpg │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── packtpub │ │ └── eunice │ │ └── funface │ │ └── funface │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LICENSE └── README.md /Chapter01/chapter_1_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.java -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/build.gradle -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/gradle.properties -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/gradlew -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter01/chapter_1_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter01/chapter_1_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/build.gradle -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/gradle.properties -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/gradlew -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter02/chapter_2_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter02/chapter_2_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/build.gradle -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/gradle.properties -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/gradlew -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter03/chapter_3_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter03/chapter_3_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/build.gradle -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/gradle.properties -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/gradlew -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter04/chapter_4_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter04/chapter_4_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/build.gradle -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/gradle.properties -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/gradlew -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter05/chapter_5_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter05/chapter_5_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/Game.kt -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/HelloKotlin.kt -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/MainActivity.kt -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/java/com/packtpub/eunice/tictactoe/Snippets.kt -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/build.gradle -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/gradle.properties -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/gradlew -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter06/chapter_6_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter06/chapter_6_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/layout/dialog_new_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/layout/dialog_new_task.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/menu/to_do_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/menu/to_do_list_menu.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/build.gradle -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/gradle.properties -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/gradlew -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter10/chapter_10_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter10/chapter_10_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/TaskListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/TaskListAdapter.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/TodoListDBContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/TodoListDBContract.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/room/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/room/AppDatabase.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/room/TaskDAO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/room/TaskDAO.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/sqlite/TodoListDBHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/db/sqlite/TodoListDBHelper.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/model/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/java/com/packtpub/eunice/todolist/model/Task.kt -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-hdpi/ic_done_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-hdpi/ic_done_black.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-mdpi/ic_done_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-mdpi/ic_done_black.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-xhdpi/ic_done_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-xhdpi/ic_done_black.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-xxhdpi/ic_done_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-xxhdpi/ic_done_black.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable-xxxhdpi/ic_done_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable-xxxhdpi/ic_done_black.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/layout/dialog_new_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/layout/dialog_new_task.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/layout/list_item_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/layout/list_item_task.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/menu/to_do_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/menu/to_do_list_menu.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/build.gradle -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/gradle.properties -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/gradlew -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter11/chapter_11_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter11/chapter_11_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/google-services.json -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/AlarmReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/AlarmReceiver.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/AlarmService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/AlarmService.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MainActivity.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MyFirebaseInstanceIDService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MyFirebaseInstanceIDService.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MyFirebaseMessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/MyFirebaseMessagingService.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/NewTaskDialogFragment.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/TimePickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/java/com/packtpub/eunice/todolist/TimePickerDialog.kt -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/drawable/ic_notifications_active_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/drawable/ic_notifications_active_black_48dp.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/layout/dialog_new_task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/layout/dialog_new_task.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/menu/to_do_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/menu/to_do_list_menu.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/build.gradle -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/gradle.properties -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/gradlew -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter12/chapter_12_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter12/chapter_12_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/fabric.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/fabric.properties -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/google-services.json -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/androidTest/java/com/packtpub/eunice/notesapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/androidTest/java/com/packtpub/eunice/notesapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/MainActivity.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/data/Note.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/data/Note.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/data/NotesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/data/NotesRepository.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/notes/NotesContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/notes/NotesContract.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/notes/NotesPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/notes/NotesPresenter.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/util/EspressoIdlingResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/util/EspressoIdlingResource.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/util/SimpleCountingIdlingResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/java/com/packtpub/eunice/notesapp/util/SimpleCountingIdlingResource.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/test/java/com/packtpub/eunice/notesapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/test/java/com/packtpub/eunice/notesapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/app/src/test/java/com/packtpub/eunice/notesapp/NotesPresenterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/app/src/test/java/com/packtpub/eunice/notesapp/NotesPresenterTest.kt -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/build.gradle -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/fastlane/Appfile -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/fastlane/Fastfile -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/fastlane/README.md -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/fastlane/report.xml -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/gradle.properties -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/gradlew -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter13/chapter_13_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter13/chapter_13_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/build.gradle -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/proguard-rules.pro -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/androidTest/java/com/packtpub/eunice/funface/funface/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/androidTest/java/com/packtpub/eunice/funface/funface/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/java/com/packtpub/eunice/funface/funface/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/java/com/packtpub/eunice/funface/funface/MainActivity.kt -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/beard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/beard_2.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/children_2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/children_2_1.jpg -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/children_group_picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/children_group_picture.jpg -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/one.jpg -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/drawable/one_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/drawable/one_1.jpg -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/app/src/test/java/com/packtpub/eunice/funface/funface/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/app/src/test/java/com/packtpub/eunice/funface/funface/ExampleUnitTest.kt -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/build.gradle -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/gradle.properties -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/gradlew -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/Chapter15/chapter_15_source/gradlew.bat -------------------------------------------------------------------------------- /Chapter15/chapter_15_source/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Kotlin-by-building-Android-Applications/HEAD/README.md --------------------------------------------------------------------------------