├── .github ├── ISSUE_TEMPLATE └── android_basics_preference_datastore.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── com │ │ └── example │ │ └── wordsapp │ │ ├── LetterAdapter.kt │ │ ├── LetterListFragment.kt │ │ ├── MainActivity.kt │ │ ├── WordAdapter.kt │ │ └── WordListFragment.kt │ └── res │ ├── drawable │ ├── ic_grid_layout.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ └── ic_linear_layout.xml │ ├── layout │ ├── activity_main.xml │ ├── fragment_letter_list.xml │ ├── fragment_word_list.xml │ └── item_view.xml │ ├── menu │ └── layout_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 │ ├── navigation │ └── nav_graph.xml │ ├── values-night │ └── themes.xml │ └── values │ ├── arrays.xml │ ├── colors.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml ├── code-of-conduct.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/android_basics_preference_datastore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/.github/android_basics_preference_datastore.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/example/wordsapp/LetterAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/java/com/example/wordsapp/LetterAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/wordsapp/LetterListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/java/com/example/wordsapp/LetterListFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/wordsapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/java/com/example/wordsapp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/wordsapp/WordAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/java/com/example/wordsapp/WordAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/wordsapp/WordListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/java/com/example/wordsapp/WordListFragment.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_grid_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/drawable/ic_grid_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_linear_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/drawable/ic_linear_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_letter_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/layout/fragment_letter_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_word_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/layout/fragment_word_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/layout/item_view.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/layout_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/menu/layout_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-developer-training/android-basics-kotlin-words-app/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Words" --------------------------------------------------------------------------------