├── .gitignore ├── .idea └── a14-made-labs2.iml ├── Custom View └── MyCustomView │ ├── java │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mycustomview │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mycustomview │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyButton.java │ │ │ │ └── MyEditText.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── bg_button.xml │ │ │ ├── bg_button_disable.xml │ │ │ ├── ic_close_black_24dp.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 │ ├── 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 │ │ │ └── mycustomview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mycustomview │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyButton.kt │ │ │ │ └── MyEditText.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── bg_button.xml │ │ │ ├── bg_button_disable.xml │ │ │ ├── ic_close_black_24dp.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 │ │ └── mycustomview │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Instrumental Test └── MyInstrumentalTest │ ├── 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 │ ├── 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 │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Localization └── MyLocalization │ ├── java │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ ├── build_file_checksums.ser │ │ │ └── gradle_models.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mylocalization │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── main_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-es │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── 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 │ │ │ └── mylocalization │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── mylocalization │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── main_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-es │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── mylocalization │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Navigation ├── MyActionBar │ ├── java │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ ├── build_file_checksums.ser │ │ │ │ └── gradle_models.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── vcs.xml │ │ ├── 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_24px.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 │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myactionbar │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MenuActivity.kt │ │ │ │ └── MenuFragment.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_announcement_white_24px.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 ├── MyBottomNavigation │ ├── 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 │ │ ├── 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 │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── MyNavigation │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynavigation │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── mynavigation │ │ │ │ │ │ ├── CategoryFragment.java │ │ │ │ │ │ ├── DetailCategoryFragment.java │ │ │ │ │ │ ├── HomeFragment.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── ProfileActivity.java │ │ │ │ └── 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 │ │ ├── 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 │ │ │ │ └── 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 │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── MyNavigationDrawer │ ├── java │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── dicoding │ │ │ │ │ └── picodiploma │ │ │ │ │ └── mynavigationdrawer │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── dicoding │ │ │ │ │ │ └── picodiploma │ │ │ │ │ │ └── mynavigationdrawer │ │ │ │ │ │ ├── CartFragment.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── SubwayActivity.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── gallery │ │ │ │ │ │ ├── GalleryFragment.java │ │ │ │ │ │ └── GalleryViewModel.java │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── HomeFragment.java │ │ │ │ │ │ └── HomeViewModel.java │ │ │ │ │ │ └── slideshow │ │ │ │ │ │ ├── SlideshowFragment.java │ │ │ │ │ │ └── SlideshowViewModel.java │ │ │ │ └── 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 │ │ ├── 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 │ │ │ │ └── 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 │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle └── MyTabLayout │ ├── java │ ├── .gitignore │ ├── 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 │ ├── 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.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 │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md ├── RecyclerView └── MyRecyclerView │ ├── java │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myrecyclerview │ │ │ │ ├── MainActivity.java │ │ │ │ ├── adapter │ │ │ │ ├── CardViewHeroAdapter.java │ │ │ │ ├── GridHeroAdapter.java │ │ │ │ └── ListHeroAdapter.java │ │ │ │ └── model │ │ │ │ └── Hero.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── item_cardview_hero.xml │ │ │ ├── item_grid_hero.xml │ │ │ └── item_row_hero.xml │ │ │ ├── menu │ │ │ └── menu_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 │ │ │ ├── ids.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 │ │ │ └── myrecyclerview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myrecyclerview │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── CardViewHeroAdapter.kt │ │ │ │ ├── GridHeroAdapter.kt │ │ │ │ └── ListHeroAdapter.kt │ │ │ │ └── model │ │ │ │ └── Hero.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── item_cardview_hero.xml │ │ │ ├── item_grid_hero.xml │ │ │ └── item_row_hero.xml │ │ │ ├── menu │ │ │ └── menu_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 │ │ │ ├── ids.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── dicoding │ │ └── picodiploma │ │ └── myrecyclerview │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Style and Theme └── MyViewAndViewGroupWithStyle │ ├── java │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ ├── build_file_checksums.ser │ │ │ └── gradle_models.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myviewandviews │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_collections_white_18dp.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── photo_2.jpg │ │ │ └── pixel_google.jpg │ │ │ ├── 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 │ │ │ └── myviewandviews │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myviewandviews │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_collections_white_18dp.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── photo_2.jpg │ │ │ └── pixel_google.jpg │ │ │ ├── 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 │ │ └── myviewandviews │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Views and group ├── MyConstraintView ├── java │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ ├── build_file_checksums.ser │ │ │ └── gradle_models.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dicoding │ │ │ │ └── picodiploma │ │ │ │ └── myconstraintview │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_collections_white_18dp.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── photo_2.jpg │ │ │ └── pixel_google.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── layout_seller.xml │ │ │ └── layout_specification.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 │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myconstraintview │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable │ │ ├── ic_collections_white_18dp.png │ │ ├── ic_launcher_background.xml │ │ ├── photo_2.jpg │ │ └── pixel_google.jpg │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── layout_seller.xml │ │ └── layout_specification.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 └── MyViewAndViewGroup ├── java ├── .gitignore ├── .idea │ ├── caches │ │ ├── build_file_checksums.ser │ │ └── gradle_models.ser │ ├── codeStyles │ │ └── Project.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myviewandviews │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ ├── ic_collections_white_18dp.png │ │ ├── ic_launcher_background.xml │ │ ├── photo_2.jpg │ │ └── pixel_google.jpg │ │ ├── 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 │ │ └── myviewandviews │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── dicoding │ │ │ └── picodiploma │ │ │ └── myviewandviews │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable │ │ ├── ic_collections_white_18dp.png │ │ ├── ic_launcher_background.xml │ │ ├── photo_2.jpg │ │ └── pixel_google.jpg │ │ ├── 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 │ └── myviewandviews │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.idea/a14-made-labs2.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyCustomView 3 | 4 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Dec 02 08:29:34 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyCustomView 3 | 4 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Custom View/MyCustomView/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Dec 02 08:58:06 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Custom View/MyCustomView/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 01 23:05:13 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/README.md: -------------------------------------------------------------------------------- 1 | # academies 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Instrumental Test/MyInstrumentalTest/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 01 23:23:16 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Instrumental Test/MyInstrumentalTest/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Localization/MyLocalization/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 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Localization/MyLocalization/java/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /Localization/MyLocalization/java/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Localization/MyLocalization/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 01 22:22:50 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Localization/MyLocalization/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Localization/MyLocalization/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 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Localization/MyLocalization/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 01 22:43:11 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Localization/MyLocalization/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/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/MyActionBar/java/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Nov 26 15:37:46 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/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/MyActionBar/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyActionBar/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 27 08:25:32 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyActionBar/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 17:31:33 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyBottomNavigation' 3 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyBottomNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 17:44:34 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyBottomNavigation/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyBottomNavigation' 3 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 14:06:05 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyNavigation' 3 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/java/com/dicoding/picodiploma/mynavigation/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.dicoding.picodiploma.mynavigation 2 | 3 | import androidx.appcompat.app.AppCompatActivity 4 | import android.os.Bundle 5 | 6 | class MainActivity : AppCompatActivity() { 7 | 8 | override fun onCreate(savedInstanceState: Bundle?) { 9 | super.onCreate(savedInstanceState) 10 | setContentView(R.layout.activity_main) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigation/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 15:25:27 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyNavigation/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyNavigation' 3 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_home.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_hotel.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_map.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_shopping_cart.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/ic_subway.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 27 14:38:07 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyNavigationDrawer' 3 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_home.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_hotel.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_map.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_shopping_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_shopping_cart.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_subway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/ic_subway.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyNavigationDrawer/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 27 17:05:09 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyNavigationDrawer/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyNavigationDrawer' 3 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 18:43:08 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyTabLayout' 3 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Navigation/MyTabLayout/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 30 19:57:47 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Navigation/MyTabLayout/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='MyTabLayout' 3 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/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 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Nov 25 08:49:51 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/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 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/java/com/dicoding/picodiploma/myrecyclerview/model/Hero.kt: -------------------------------------------------------------------------------- 1 | package com.dicoding.picodiploma.myrecyclerview.model 2 | 3 | import android.os.Parcelable 4 | import kotlinx.android.parcel.Parcelize 5 | 6 | /** 7 | * Created by sidiqpermana on 10/29/16. 8 | */ 9 | 10 | @Parcelize 11 | data class Hero( 12 | var name: String, 13 | var description: String, 14 | var photo: String 15 | ) : Parcelable 16 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/RecyclerView/MyRecyclerView/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Nov 25 10:21:42 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /RecyclerView/MyRecyclerView/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/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 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Nov 24 12:08:14 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/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 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Style and Theme/MyViewAndViewGroupWithStyle/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Nov 24 17:02:21 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Style and Theme/MyViewAndViewGroupWithStyle/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/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 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Nov 24 10:08:06 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/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 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyConstraintView/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Nov 24 11:08:04 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Views and group/MyConstraintView/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/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 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Nov 23 16:09:40 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/java/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/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 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/ic_collections_white_18dp.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/photo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/photo_2.jpg -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/pixel_google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/drawable/pixel_google.jpg -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicodingacademy/a14-made-labs2/388fe75c97034485bb8eb02145ccfd0276d446a0/Views and group/MyViewAndViewGroup/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Nov 24 09:52:06 WIB 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 7 | -------------------------------------------------------------------------------- /Views and group/MyViewAndViewGroup/kotlin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------