├── .DS_Store ├── .gitignore ├── android-architecture-component ├── .DS_Store ├── LatihanAndroidKTX │ ├── LatihanFlexibleFragment │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myflexiblefragment │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── myflexiblefragment │ │ │ │ │ │ ├── CategoryFragment.kt │ │ │ │ │ │ ├── DetailCategoryFragment.kt │ │ │ │ │ │ ├── HomeFragment.kt │ │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ │ ├── OptionDialogFragment.kt │ │ │ │ │ │ └── ProfileActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_profile.xml │ │ │ │ │ ├── fragment_category.xml │ │ │ │ │ ├── fragment_detail_category.xml │ │ │ │ │ ├── fragment_home.xml │ │ │ │ │ └── fragment_option_dialog.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myflexiblefragment │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ ├── libs.versions.toml │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── LatihanSingleEvent │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ ├── ApiService.kt │ │ │ │ │ ├── Event.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ ├── RestaurantResponse.kt │ │ │ │ │ └── ReviewAdapter.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_review.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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── restaurantreview │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanLiveData │ ├── .DS_Store │ └── kotlin │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mylivedata │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mylivedata │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainViewModel.kt │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mylivedata │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanLiveDataWithAPI │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── restaurantreview │ │ │ │ │ │ ├── ApiConfig.java │ │ │ │ │ │ ├── ApiService.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ │ ├── ReviewAdapter.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── CustomerReviewsItem.java │ │ │ │ │ │ ├── PostReviewResponse.java │ │ │ │ │ │ ├── Restaurant.java │ │ │ │ │ │ └── RestaurantResponse.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── item_review.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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ ├── data │ │ │ │ │ └── remote │ │ │ │ │ │ ├── response │ │ │ │ │ │ └── RestaurantResponse.kt │ │ │ │ │ │ └── retrofit │ │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ │ └── ApiService.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ └── ReviewAdapter.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_review.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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── restaurantreview │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanLiveDataWithSingleEvent │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── restaurantreview │ │ │ │ │ │ ├── ApiConfig.java │ │ │ │ │ │ ├── ApiService.java │ │ │ │ │ │ ├── Event.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ │ ├── ReviewAdapter.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── CustomerReviewsItem.java │ │ │ │ │ │ ├── PostReviewResponse.java │ │ │ │ │ │ ├── Restaurant.java │ │ │ │ │ │ └── RestaurantResponse.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── item_review.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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ ├── data │ │ │ │ │ └── remote │ │ │ │ │ │ ├── response │ │ │ │ │ │ └── RestaurantResponse.kt │ │ │ │ │ │ └── retrofit │ │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ │ └── ApiService.kt │ │ │ │ │ ├── ui │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ └── ReviewAdapter.kt │ │ │ │ │ └── util │ │ │ │ │ └── Event.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_review.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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── restaurantreview │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanViewModel │ ├── .DS_Store │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myviewmodel │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainViewModel.kt │ │ │ └── res │ │ │ ├── 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_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts └── README.md ├── background-process ├── .DS_Store ├── LatihanBackgroundThread │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybackgroundthread │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mybackgroundthread │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybackgroundthread │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mybackgroundthread │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanBackgroundThreadWithProgressBar │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myasynctaskwithprogressbar │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MyAsyncCallback.java │ │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myasynctaskwithprogressbar │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myasynctaskwithprogressbar │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myasynctaskwithprogressbar │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanLoopJ │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myquote │ │ │ │ │ ├── ListQuotesActivity.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── QuoteAdapter.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_list_quotes.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_quote.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myquote │ │ │ │ ├── ListQuotesActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── QuoteAdapter.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_list_quotes.xml │ │ │ ├── activity_main.xml │ │ │ └── item_quote.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanRetrofit │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── restaurantreview │ │ │ │ │ │ ├── ApiConfig.java │ │ │ │ │ │ ├── ApiService.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── ReviewAdapter.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── CustomerReviewsItem.java │ │ │ │ │ │ ├── PostReviewResponse.java │ │ │ │ │ │ ├── Restaurant.java │ │ │ │ │ │ └── RestaurantResponse.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── item_review.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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── restaurantreview │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── restaurantreview │ │ │ │ │ ├── data │ │ │ │ │ ├── response │ │ │ │ │ │ └── RestaurantResponse.kt │ │ │ │ │ └── retrofit │ │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ │ └── ApiService.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ReviewAdapter.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_review.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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── restaurantreview │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts └── README.md ├── fragment └── LatihanFragment │ ├── java │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myflexiblefragment │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myflexiblefragment │ │ │ │ │ ├── CategoryFragment.java │ │ │ │ │ ├── DetailCategoryFragment.java │ │ │ │ │ ├── HomeFragment.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── OptionDialogFragment.java │ │ │ │ │ └── ProfileActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_profile.xml │ │ │ │ ├── fragment_category.xml │ │ │ │ ├── fragment_detail_category.xml │ │ │ │ ├── fragment_home.xml │ │ │ │ └── fragment_option_dialog.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myflexiblefragment │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── kotlin │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myflexiblefragment │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myflexiblefragment │ │ │ │ ├── CategoryFragment.kt │ │ │ │ ├── DetailCategoryFragment.kt │ │ │ │ ├── HomeFragment.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── OptionDialogFragment.kt │ │ │ │ └── ProfileActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_profile.xml │ │ │ ├── fragment_category.xml │ │ │ ├── fragment_detail_category.xml │ │ │ ├── fragment_home.xml │ │ │ └── fragment_option_dialog.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── myflexiblefragment │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── kotlinfragment.zip │ └── settings.gradle ├── local-data-persistent ├── .DS_Store ├── LatihanPreferencesDataStore │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── mydatastore │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── mydatastore │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ │ ├── SettingPreferences.java │ │ │ │ │ │ └── ViewModelFactory.java │ │ │ │ └── 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.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── mydatastore │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── mydatastore │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── mydatastore │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ ├── SettingPreferences.kt │ │ │ │ │ └── ViewModelFactory.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── mydatastore │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanReadAndWriteFile │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myreadwritefile │ │ │ │ │ ├── FileHelper.java │ │ │ │ │ ├── FileModel.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myreadwritefile │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myreadwritefile │ │ │ │ │ ├── FileHelper.kt │ │ │ │ │ ├── FileModel.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myreadwritefile │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanRepository (coroutines) │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── newsapp │ │ │ │ ├── data │ │ │ │ ├── NewsRepository.kt │ │ │ │ ├── Result.kt │ │ │ │ ├── local │ │ │ │ │ ├── entity │ │ │ │ │ │ └── NewsEntity.kt │ │ │ │ │ └── room │ │ │ │ │ │ ├── NewsDao.kt │ │ │ │ │ │ └── NewsDatabase.kt │ │ │ │ └── remote │ │ │ │ │ ├── response │ │ │ │ │ └── NewsResponse.kt │ │ │ │ │ └── retrofit │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ └── ApiService.kt │ │ │ │ ├── di │ │ │ │ └── Injection.kt │ │ │ │ ├── ui │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── NewsAdapter.kt │ │ │ │ ├── NewsFragment.kt │ │ │ │ ├── NewsViewModel.kt │ │ │ │ ├── SectionsPagerAdapter.kt │ │ │ │ └── ViewModelFactory.kt │ │ │ │ └── utils │ │ │ │ └── DateFormatter.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_bookmark_white.xml │ │ │ ├── ic_bookmarked_white.xml │ │ │ ├── ic_broken_image_black.xml │ │ │ ├── ic_error.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_loading.xml │ │ │ └── ic_refresh_black.xml │ │ │ ├── layout │ │ │ ├── activity_home.xml │ │ │ ├── fragment_news.xml │ │ │ └── item_news.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle.kts ├── LatihanRepository (finish) │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── newsapp │ │ │ │ │ ├── data │ │ │ │ │ ├── NewsRepository.java │ │ │ │ │ ├── Result.java │ │ │ │ │ ├── local │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── NewsEntity.java │ │ │ │ │ │ └── room │ │ │ │ │ │ │ ├── NewsDao.java │ │ │ │ │ │ │ └── NewsDatabase.java │ │ │ │ │ └── remote │ │ │ │ │ │ ├── response │ │ │ │ │ │ ├── ArticlesItem.java │ │ │ │ │ │ ├── NewsResponse.java │ │ │ │ │ │ └── Source.java │ │ │ │ │ │ └── retrofit │ │ │ │ │ │ ├── ApiConfig.java │ │ │ │ │ │ └── ApiService.java │ │ │ │ │ ├── di │ │ │ │ │ └── Injection.java │ │ │ │ │ ├── ui │ │ │ │ │ ├── HomeActivity.java │ │ │ │ │ ├── NewsAdapter.java │ │ │ │ │ ├── NewsFragment.java │ │ │ │ │ ├── NewsViewModel.java │ │ │ │ │ ├── SectionsPagerAdapter.java │ │ │ │ │ └── ViewModelFactory.java │ │ │ │ │ └── utils │ │ │ │ │ ├── AppExecutors.java │ │ │ │ │ └── DateFormatter.java │ │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_bookmark_white.xml │ │ │ │ ├── ic_bookmarked_white.xml │ │ │ │ ├── ic_broken_image_black.xml │ │ │ │ ├── ic_error.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── ic_loading.xml │ │ │ │ └── ic_refresh_black.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_home.xml │ │ │ │ ├── fragment_news.xml │ │ │ │ └── item_news.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── newsapp │ │ │ │ ├── data │ │ │ │ ├── NewsRepository.kt │ │ │ │ ├── Result.kt │ │ │ │ ├── local │ │ │ │ │ ├── entity │ │ │ │ │ │ └── NewsEntity.kt │ │ │ │ │ └── room │ │ │ │ │ │ ├── NewsDao.kt │ │ │ │ │ │ └── NewsDatabase.kt │ │ │ │ └── remote │ │ │ │ │ ├── response │ │ │ │ │ └── NewsResponse.kt │ │ │ │ │ └── retrofit │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ └── ApiService.kt │ │ │ │ ├── di │ │ │ │ └── Injection.kt │ │ │ │ ├── ui │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── NewsAdapter.kt │ │ │ │ ├── NewsFragment.kt │ │ │ │ ├── NewsViewModel.kt │ │ │ │ ├── SectionsPagerAdapter.kt │ │ │ │ └── ViewModelFactory.kt │ │ │ │ └── utils │ │ │ │ ├── AppExecutors.kt │ │ │ │ └── DateFormatter.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_bookmark_white.xml │ │ │ ├── ic_bookmarked_white.xml │ │ │ ├── ic_broken_image_black.xml │ │ │ ├── ic_error.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_loading.xml │ │ │ └── ic_refresh_black.xml │ │ │ ├── layout │ │ │ ├── activity_home.xml │ │ │ ├── fragment_news.xml │ │ │ └── item_news.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanRepository (starter) │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── newsapp │ │ │ │ │ ├── data │ │ │ │ │ ├── local │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── NewsEntity.java │ │ │ │ │ │ └── room │ │ │ │ │ │ │ ├── NewsDao.java │ │ │ │ │ │ │ └── NewsDatabase.java │ │ │ │ │ └── remote │ │ │ │ │ │ ├── response │ │ │ │ │ │ ├── ArticlesItem.java │ │ │ │ │ │ ├── NewsResponse.java │ │ │ │ │ │ └── Source.java │ │ │ │ │ │ └── retrofit │ │ │ │ │ │ ├── ApiConfig.java │ │ │ │ │ │ └── ApiService.java │ │ │ │ │ ├── ui │ │ │ │ │ ├── HomeActivity.java │ │ │ │ │ ├── NewsAdapter.java │ │ │ │ │ ├── NewsFragment.java │ │ │ │ │ └── SectionsPagerAdapter.java │ │ │ │ │ └── utils │ │ │ │ │ ├── AppExecutors.java │ │ │ │ │ └── DateFormatter.java │ │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_bookmark_white.xml │ │ │ │ ├── ic_bookmarked_white.xml │ │ │ │ ├── ic_broken_image_black.xml │ │ │ │ ├── ic_error.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── ic_loading.xml │ │ │ │ └── ic_refresh_black.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_home.xml │ │ │ │ ├── fragment_news.xml │ │ │ │ └── item_news.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── newsapp │ │ │ │ ├── data │ │ │ │ ├── local │ │ │ │ │ ├── entity │ │ │ │ │ │ └── NewsEntity.kt │ │ │ │ │ └── room │ │ │ │ │ │ ├── NewsDao.kt │ │ │ │ │ │ └── NewsDatabase.kt │ │ │ │ └── remote │ │ │ │ │ ├── response │ │ │ │ │ └── NewsResponse.kt │ │ │ │ │ └── retrofit │ │ │ │ │ ├── ApiConfig.kt │ │ │ │ │ └── ApiService.kt │ │ │ │ ├── ui │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── NewsAdapter.kt │ │ │ │ ├── NewsFragment.kt │ │ │ │ └── SectionsPagerAdapter.kt │ │ │ │ └── utils │ │ │ │ ├── AppExecutors.kt │ │ │ │ └── DateFormatter.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_bookmark_white.xml │ │ │ ├── ic_bookmarked_white.xml │ │ │ ├── ic_broken_image_black.xml │ │ │ ├── ic_error.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_loading.xml │ │ │ └── ic_refresh_black.xml │ │ │ ├── layout │ │ │ ├── activity_home.xml │ │ │ ├── fragment_news.xml │ │ │ └── item_news.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanRoom │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynoteapps │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── mynoteapps │ │ │ │ │ │ ├── database │ │ │ │ │ │ ├── Note.java │ │ │ │ │ │ ├── NoteDao.java │ │ │ │ │ │ └── NoteRoomDatabase.java │ │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── DateHelper.java │ │ │ │ │ │ ├── NoteDiffCallback.java │ │ │ │ │ │ └── ViewModelFactory.java │ │ │ │ │ │ ├── repository │ │ │ │ │ │ └── NoteRepository.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── insert │ │ │ │ │ │ ├── NoteAddUpdateActivity.java │ │ │ │ │ │ └── NoteAddUpdateViewModel.java │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── MainViewModel.java │ │ │ │ │ │ └── NoteAdapter.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_add.png │ │ │ │ │ └── ic_clear.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_add.png │ │ │ │ │ └── ic_clear.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_add.png │ │ │ │ │ └── ic_clear.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ic_add.png │ │ │ │ │ └── ic_clear.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── ic_add.png │ │ │ │ │ └── ic_clear.png │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_note_add_update.xml │ │ │ │ │ └── item_note.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_form.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mynoteapps │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mynoteapps │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynoteapps │ │ │ │ │ ├── database │ │ │ │ │ ├── Note.kt │ │ │ │ │ ├── NoteDao.kt │ │ │ │ │ └── NoteRoomDatabase.kt │ │ │ │ │ ├── helper │ │ │ │ │ ├── DateHelper.kt │ │ │ │ │ ├── NoteDiffCallback.kt │ │ │ │ │ └── ViewModelFactory.kt │ │ │ │ │ ├── repository │ │ │ │ │ └── NoteRepository.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── insert │ │ │ │ │ ├── NoteAddUpdateActivity.kt │ │ │ │ │ └── NoteAddUpdateViewModel.kt │ │ │ │ │ └── main │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ └── NoteAdapter.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_add.png │ │ │ │ └── ic_clear.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_add.png │ │ │ │ └── ic_clear.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_add.png │ │ │ │ └── ic_clear.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_add.png │ │ │ │ └── ic_clear.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_add.png │ │ │ │ └── ic_clear.png │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_note_add_update.xml │ │ │ │ └── item_note.xml │ │ │ │ ├── menu │ │ │ │ └── menu_form.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mynoteapps │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanSQLite │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynotesapp │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── NoteAddUpdateActivity.java │ │ │ │ │ ├── adapter │ │ │ │ │ └── NoteAdapter.java │ │ │ │ │ ├── db │ │ │ │ │ ├── DatabaseContract.java │ │ │ │ │ ├── DatabaseHelper.java │ │ │ │ │ └── NoteHelper.java │ │ │ │ │ ├── entity │ │ │ │ │ └── Note.java │ │ │ │ │ └── helper │ │ │ │ │ └── MappingHelper.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_add.xml │ │ │ │ ├── ic_clear.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_note_add_update.xml │ │ │ │ └── item_note.xml │ │ │ │ ├── menu │ │ │ │ └── menu_form.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mynotesapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── NoteAddUpdateActivity.kt │ │ │ │ ├── adapter │ │ │ │ └── NoteAdapter.kt │ │ │ │ ├── db │ │ │ │ ├── DatabaseContract.kt │ │ │ │ ├── DatabaseHelper.kt │ │ │ │ └── NoteHelper.kt │ │ │ │ ├── entity │ │ │ │ └── Note.kt │ │ │ │ └── helper │ │ │ │ └── MappingHelper.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_add.xml │ │ │ ├── ic_clear.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_note_add_update.xml │ │ │ └── item_note.xml │ │ │ ├── menu │ │ │ └── menu_form.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_foreground.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanSettingPreference │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mysettingpreference │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MyPreferenceFragment.java │ │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ └── preferences.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mysettingpreference │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mysettingpreference │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyPreferenceFragment.kt │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ └── preferences.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mysettingpreference │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanSharedPreference │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mysharedpreference │ │ │ │ │ ├── FormUserPreferenceActivity.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── UserModel.java │ │ │ │ │ └── UserPreference.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_form_user_preference.xml │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mysharedpreference │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mysharedpreference │ │ │ │ │ ├── FormUserPreferenceActivity.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── UserModel.kt │ │ │ │ │ └── UserPreference.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_form_user_preference.xml │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mysharedpreference │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts └── README.md ├── navigation ├── LatihanActionBar │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myactionbar │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MenuActivity.java │ │ │ │ │ └── MenuFragment.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_announcement_white_24.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_search_white_24px.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_menu.xml │ │ │ │ └── fragment_menu.xml │ │ │ │ ├── menu │ │ │ │ └── option_menu.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ └── gradle.properties │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myappbar │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MenuActivity.kt │ │ │ │ └── MenuFragment.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── baseline_announcement_24.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_menu.xml │ │ │ └── fragment_menu.xml │ │ │ ├── menu │ │ │ └── option_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanBottomNavigation │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybottomnavigation │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── mybottomnavigation │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── ProfileFragment.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── DashboardFragment.java │ │ │ │ │ │ └── DashboardViewModel.java │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── HomeFragment.java │ │ │ │ │ │ └── HomeViewModel.java │ │ │ │ │ │ └── notifications │ │ │ │ │ │ ├── NotificationsFragment.java │ │ │ │ │ │ └── NotificationsViewModel.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_account_circle_black_24dp.xml │ │ │ │ │ ├── ic_dashboard_black_24dp.xml │ │ │ │ │ ├── ic_home_black_24dp.xml │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── ic_notifications_black_24dp.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── fragment_dashboard.xml │ │ │ │ │ ├── fragment_home.xml │ │ │ │ │ ├── fragment_notifications.xml │ │ │ │ │ └── fragment_profile.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── bottom_nav_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 │ │ │ │ │ └── mobile_navigation.xml │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mybottomnavigation │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mybottomnavigation │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybottomnavigation │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── ProfileFragment.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── DashboardFragment.kt │ │ │ │ │ └── DashboardViewModel.kt │ │ │ │ │ ├── home │ │ │ │ │ ├── HomeFragment.kt │ │ │ │ │ └── HomeViewModel.kt │ │ │ │ │ └── notifications │ │ │ │ │ ├── NotificationsFragment.kt │ │ │ │ │ └── NotificationsViewModel.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_account_circle_black_24dp.xml │ │ │ │ ├── ic_dashboard_black_24dp.xml │ │ │ │ ├── ic_home_black_24dp.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_notifications_black_24dp.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_dashboard.xml │ │ │ │ ├── fragment_home.xml │ │ │ │ ├── fragment_notifications.xml │ │ │ │ └── fragment_profile.xml │ │ │ │ ├── menu │ │ │ │ └── bottom_nav_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 │ │ │ │ └── mobile_navigation.xml │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mybottomnavigation │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanNavigationComponent │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mynavigation │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynavigation │ │ │ │ │ ├── CategoryFragment.kt │ │ │ │ │ ├── DetailCategoryFragment.kt │ │ │ │ │ ├── HomeFragment.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ProfileActivity.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── slide_in_right.xml │ │ │ │ └── slide_out_left.xml │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_profile.xml │ │ │ │ ├── fragment_category.xml │ │ │ │ ├── fragment_detail_category.xml │ │ │ │ └── fragment_home.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 │ │ │ │ └── main_navigation.xml │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mynavigation │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanNavigationDrawer │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mynavigationdrawer │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynavigationdrawer │ │ │ │ │ ├── CartFragment.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── SubwayActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── gallery │ │ │ │ │ ├── GalleryFragment.kt │ │ │ │ │ └── GalleryViewModel.kt │ │ │ │ │ ├── home │ │ │ │ │ ├── HomeFragment.kt │ │ │ │ │ └── HomeViewModel.kt │ │ │ │ │ └── slideshow │ │ │ │ │ ├── SlideshowFragment.kt │ │ │ │ │ └── SlideshowViewModel.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ └── ic_menu_slideshow.xml │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_home.png │ │ │ │ ├── ic_hotel.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_map.png │ │ │ │ ├── ic_shopping_cart.png │ │ │ │ ├── ic_subway.png │ │ │ │ └── side_nav_bar.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_subway.xml │ │ │ │ ├── app_bar_main.xml │ │ │ │ ├── content_main.xml │ │ │ │ ├── fragment_cart.xml │ │ │ │ ├── fragment_gallery.xml │ │ │ │ ├── fragment_home.xml │ │ │ │ ├── fragment_slideshow.xml │ │ │ │ └── nav_header_main.xml │ │ │ │ ├── menu │ │ │ │ ├── activity_main_drawer.xml │ │ │ │ └── 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 │ │ │ │ ├── navigation │ │ │ │ └── mobile_navigation.xml │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mynavigationdrawer │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── LatihanTabLayout │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── .name │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mytablayout │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── mytablayout │ │ │ │ │ │ ├── HomeFragment.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── ProfileFragment.java │ │ │ │ │ │ └── SectionsPagerAdapter.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── fragment_home.xml │ │ │ │ │ └── fragment_profile.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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mytablayout │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── .idea │ │ └── .name │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mytablayout │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mytablayout │ │ │ │ │ ├── HomeFragment.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── ProfileFragment.kt │ │ │ │ │ └── SectionsPagerAdapter.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_home.xml │ │ │ │ └── fragment_profile.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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mytablayout │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ ├── libs.versions.toml │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts └── README.md ├── scheduler ├── LatihanAlarmManager │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myalarmmanager │ │ │ │ │ ├── AlarmReceiver.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── utils │ │ │ │ │ ├── DatePickerFragment.java │ │ │ │ │ └── TimePickerFragment.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_access_time_black.xml │ │ │ │ ├── ic_date_range_black.xml │ │ │ │ └── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myalarmmanager │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myalarmmanager │ │ │ │ │ ├── AlarmReceiver.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── utils │ │ │ │ │ ├── DatePickerFragment.kt │ │ │ │ │ └── TimePickerFragment.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── baseline_access_time_24.xml │ │ │ │ ├── baseline_date_range_24.xml │ │ │ │ └── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myalarmmanager │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanBroadcastReceiver │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-web.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybroadcastreceiver │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── SmsReceiver.java │ │ │ │ │ └── SmsReceiverActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_sms_receiver.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mybroadcastreceiver │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mybroadcastreceiver │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── SmsReceiver.kt │ │ │ │ │ └── SmsReceiverActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_sms_receiver.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── mybroadcastreceiver │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanNotification │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── simplenotif │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_notifications_white_48px.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── simplenotif │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── simplenotif │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── baseline_notifications_active_24.xml │ │ │ │ └── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── simplenotif │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LatihanTaskAndBackStack │ ├── .DS_Store │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mydeepnavigation │ │ │ │ │ ├── DetailActivity.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_email_black_24dp.png │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_detail.xml │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── kotlin │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── simplenotif │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── simplenotif │ │ │ │ │ ├── DetailActivity.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── baseline_notifications_active_24.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_detail.xml │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── simplenotif │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle └── LatihanWorkManager │ ├── java │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myworkmanager │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myworkmanager │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MyWorker.java │ │ │ │ │ └── Response.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── baseline_notifications_24.xml │ │ │ │ └── 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-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myworkmanager │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── kotlin │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myworkmanager │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myworkmanager │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyWorker.kt │ │ │ │ └── Response.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── baseline_notifications_24.xml │ │ │ └── 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-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── myworkmanager │ │ └── ExampleUnitTest.java │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts └── testing ├── LatihanUITest ├── java │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myunittest │ │ │ │ └── MainActivityTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myunittest │ │ │ │ │ ├── CuboidModel.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainViewModel.java │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myunittest │ │ │ └── MainViewModelTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── kotlin │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myunittest │ │ │ └── MainActivityTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myunittest │ │ │ │ ├── CuboidModel.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainViewModel.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_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── myunittest │ │ └── MainViewModelTest.kt │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── LatihanUnitTest ├── java │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── myunittest │ │ │ │ │ ├── CuboidModel.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainViewModel.java │ │ │ └── res │ │ │ │ ├── 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_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myunittest │ │ │ └── MainViewModelTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── kotlin │ ├── .gitignore │ ├── .idea │ └── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myunittest │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myunittest │ │ │ │ ├── CuboidModel.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainViewModel.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_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── myunittest │ │ └── MainViewModelTest.kt │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .gradle 3 | -------------------------------------------------------------------------------- /android-architecture-component/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/.DS_Store -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanFlexibleFragment/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanFlexibleFragment/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanFlexibleFragment/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanAndroidKTX/LatihanFlexibleFragment/gradlew -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanSingleEvent/.idea/.name: -------------------------------------------------------------------------------- 1 | RestaurantReview -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanSingleEvent/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanSingleEvent/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanAndroidKTX/LatihanSingleEvent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanLiveData/.DS_Store -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/kotlin/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyLiveData 3 | %d seconds elapsed 4 | Hello Dicoding! 5 | 6 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveData/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanLiveData/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithAPI/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithAPI/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Restaurant Review" -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithAPI/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithSingleEvent/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanLiveDataWithSingleEvent/.DS_Store -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithSingleEvent/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithSingleEvent/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Restaurant Review" -------------------------------------------------------------------------------- /android-architecture-component/LatihanLiveDataWithSingleEvent/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-architecture-component/LatihanViewModel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanViewModel/.DS_Store -------------------------------------------------------------------------------- /android-architecture-component/LatihanViewModel/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanViewModel/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /android-architecture-component/LatihanViewModel/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanViewModel/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-architecture-component/LatihanViewModel/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/android-architecture-component/LatihanViewModel/kotlin/gradlew -------------------------------------------------------------------------------- /android-architecture-component/README.md: -------------------------------------------------------------------------------- 1 | # Android Architecture Component 2 | -------------------------------------------------------------------------------- /background-process/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/.DS_Store -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThread/.DS_Store -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThread/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThread/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThread/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThread/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThread/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanBackgroundThreadWithProgressBar/.DS_Store -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/java/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyAsyncTaskWithProgressBar 3 | Progress 4 | start 5 | 6 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyAsyncTaskWithProgressBar 3 | Progress 4 | start 5 | 6 | -------------------------------------------------------------------------------- /background-process/LatihanBackgroundThreadWithProgressBar/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/build.gradle.kts: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | alias(libs.plugins.androidApplication) apply false 4 | alias(libs.plugins.jetbrainsKotlinAndroid) apply false 5 | } -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/LatihanLoopJ/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanLoopJ/kotlin/gradlew -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Restaurant Review" -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /background-process/LatihanRetrofit/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/background-process/LatihanRetrofit/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /background-process/README.md: -------------------------------------------------------------------------------- 1 | # Background Process 2 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fragment/LatihanFragment/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fragment/LatihanFragment/kotlin/kotlinfragment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/fragment/LatihanFragment/kotlin/kotlinfragment.zip -------------------------------------------------------------------------------- /local-data-persistent/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/.DS_Store -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/java/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyDataStore 3 | Dark Mode 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanPreferencesDataStore/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My DataStore 3 | Dark Mode 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanPreferencesDataStore/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanPreferencesDataStore/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/java/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8dp 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanReadAndWriteFile/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/app/src/main/java/com/dicoding/picodiploma/myreadwritefile/FileModel.kt: -------------------------------------------------------------------------------- 1 | package com.dicoding.picodiploma.myreadwritefile 2 | 3 | data class FileModel( 4 | var filename: String? = null, 5 | var data: String? = null 6 | ) -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8dp 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanReadAndWriteFile/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanReadAndWriteFile/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanReadAndWriteFile/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (coroutines)/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (coroutines)/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (coroutines)/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (coroutines)/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (coroutines)/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (coroutines)/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/java/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (finish)/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = 'News App' 3 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (finish)/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (finish)/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (finish)/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/java/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (starter)/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = 'News App' 3 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (starter)/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRepository (starter)/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRepository (starter)/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/.DS_Store -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-hdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-hdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-hdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-hdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-mdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-mdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-mdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-mdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxxhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/drawable-xxxhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-hdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-hdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-hdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-hdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-mdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-mdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-mdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-mdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxxhdpi/ic_add.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/drawable-xxxhdpi/ic_clear.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanRoom/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanRoom/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSQLite/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSQLite/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches/build_file_checksums.ser 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSettingPreference/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches/build_file_checksums.ser 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSettingPreference/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSettingPreference/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSettingPreference/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSharedPreference/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSharedPreference/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /local-data-persistent/LatihanSharedPreference/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/local-data-persistent/LatihanSharedPreference/kotlin/gradlew -------------------------------------------------------------------------------- /local-data-persistent/README.md: -------------------------------------------------------------------------------- 1 | # Local Data Persistent 2 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanActionBar/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/.idea/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/.idea/gradle.properties -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | -------------------------------------------------------------------------------- /navigation/LatihanActionBar/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanActionBar/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyBottomNavigation' 3 | -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanBottomNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanBottomNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationComponent/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /navigation/LatihanNavigationComponent/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationComponent/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_home.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_hotel.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_map.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_shopping_cart.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/drawable/ic_subway.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanNavigationDrawer/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanNavigationDrawer/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/.idea/.name: -------------------------------------------------------------------------------- 1 | MyTabLayout -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyTabLayout' 3 | -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/.idea/.name: -------------------------------------------------------------------------------- 1 | MyTabLayout -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/build.gradle.kts: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | alias(libs.plugins.androidApplication) apply false 4 | alias(libs.plugins.jetbrainsKotlinAndroid) apply false 5 | } -------------------------------------------------------------------------------- /navigation/LatihanTabLayout/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/navigation/LatihanTabLayout/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/README.md: -------------------------------------------------------------------------------- 1 | # Navigation 2 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/.DS_Store -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /scheduler/LatihanAlarmManager/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanAlarmManager/kotlin/gradlew -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/.DS_Store -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/java/gradlew -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /scheduler/LatihanBroadcastReceiver/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanBroadcastReceiver/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanNotification/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/.DS_Store -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches/build_file_checksums.ser 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanNotification/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches/build_file_checksums.ser 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | .DS_Store 9 | /build 10 | /captures 11 | .externalNativeBuild 12 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /scheduler/LatihanNotification/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanNotification/kotlin/gradlew -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/.DS_Store -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/drawable/ic_email_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/drawable/ic_email_black_24dp.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | 6 | -------------------------------------------------------------------------------- /scheduler/LatihanTaskAndBackStack/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanTaskAndBackStack/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/java/gradlew -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='My WorkManager' 3 | -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /scheduler/LatihanWorkManager/kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/scheduler/LatihanWorkManager/kotlin/gradlew -------------------------------------------------------------------------------- /testing/LatihanUITest/java/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testing/LatihanUITest/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/build.gradle.kts: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | alias(libs.plugins.androidApplication) apply false 4 | alias(libs.plugins.jetbrainsKotlinAndroid) apply false 5 | } -------------------------------------------------------------------------------- /testing/LatihanUITest/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUITest/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testing/LatihanUnitTest/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/build.gradle.kts: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | alias(libs.plugins.androidApplication) apply false 4 | alias(libs.plugins.jetbrainsKotlinAndroid) apply false 5 | } -------------------------------------------------------------------------------- /testing/LatihanUnitTest/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-android-fundamental-labs/a1ea065f5d10d78c08349155ed1d9eb8d5f559ae/testing/LatihanUnitTest/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- 1 | # Testing 2 | --------------------------------------------------------------------------------