├── LICENSE ├── README.md ├── code_samples ├── arch-components │ └── ViewModelExample │ │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alifyz │ │ │ │ └── www │ │ │ │ └── viewmodelexample │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── alifyz │ │ │ │ │ └── www │ │ │ │ │ └── viewmodelexample │ │ │ │ │ ├── CounterViewModel.kt │ │ │ │ │ ├── Fragment1.kt │ │ │ │ │ ├── Fragment2.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── fragment_layout.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── alifyz │ │ │ └── www │ │ │ └── viewmodelexample │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle ├── data │ ├── README.md │ └── SAMPLES.md └── user_interface │ ├── drawer │ ├── .idea │ │ └── codeStyles │ │ │ └── codeStyleConfig.xml │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── alifyz │ │ │ │ └── com │ │ │ │ └── navdrawer │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable-v21 │ │ │ ├── ic_menu_camera.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_share.xml │ │ │ └── ic_menu_slideshow.xml │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── app_bar_main.xml │ │ │ ├── content_main.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 │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ └── mock_ui │ ├── README.md │ └── details-ui.xml └── homework ├── Lesson4 ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── alifyz │ │ │ └── lesson4 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── alifyz │ │ │ │ └── lesson4 │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── alifyz │ │ └── lesson4 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── lesson-2-activity-state.md ├── lesson2 ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── alifyz │ │ │ └── lesson2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── alifyz │ │ │ │ └── lesson2 │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── alifyz │ │ └── lesson2 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── lesson4-user-navigation ├── .gitignore ├── .idea │ ├── assetWizardSettings.xml │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── alifyz │ │ │ └── usernavigation │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── alifyz │ │ │ │ └── usernavigation │ │ │ │ ├── MainActivity.kt │ │ │ │ └── OrderActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── icon.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_order.xml │ │ │ └── fragment_order.xml │ │ │ ├── menu │ │ │ └── menu_order.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-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── alifyz │ │ └── usernavigation │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── lesson8 └── notification ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── alifyz │ │ └── notification │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── alifyz │ │ │ └── notification │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── alifyz │ └── notification │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/README.md -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/build.gradle -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/proguard-rules.pro -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/androidTest/java/com/alifyz/www/viewmodelexample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/androidTest/java/com/alifyz/www/viewmodelexample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/CounterViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/CounterViewModel.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/Fragment1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/Fragment1.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/Fragment2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/Fragment2.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/java/com/alifyz/www/viewmodelexample/MainActivity.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/layout/fragment_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/layout/fragment_layout.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/app/src/test/java/com/alifyz/www/viewmodelexample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/app/src/test/java/com/alifyz/www/viewmodelexample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/build.gradle -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/gradle.properties -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/arch-components/ViewModelExample/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /code_samples/arch-components/ViewModelExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /code_samples/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/data/README.md -------------------------------------------------------------------------------- /code_samples/data/SAMPLES.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/build.gradle -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/proguard-rules.pro -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/java/alifyz/com/navdrawer/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/java/alifyz/com/navdrawer/MainActivity.kt -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/layout/app_bar_main.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/build.gradle -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/gradle.properties -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/drawer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /code_samples/user_interface/drawer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /code_samples/user_interface/mock_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/mock_ui/README.md -------------------------------------------------------------------------------- /code_samples/user_interface/mock_ui/details-ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/code_samples/user_interface/mock_ui/details-ui.xml -------------------------------------------------------------------------------- /homework/Lesson4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.gitignore -------------------------------------------------------------------------------- /homework/Lesson4/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /homework/Lesson4/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /homework/Lesson4/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/gradle.xml -------------------------------------------------------------------------------- /homework/Lesson4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/misc.xml -------------------------------------------------------------------------------- /homework/Lesson4/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /homework/Lesson4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /homework/Lesson4/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/build.gradle -------------------------------------------------------------------------------- /homework/Lesson4/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/proguard-rules.pro -------------------------------------------------------------------------------- /homework/Lesson4/app/src/androidTest/java/com/alifyz/lesson4/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/androidTest/java/com/alifyz/lesson4/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/java/com/alifyz/lesson4/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/java/com/alifyz/lesson4/MainActivity.kt -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /homework/Lesson4/app/src/test/java/com/alifyz/lesson4/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/app/src/test/java/com/alifyz/lesson4/ExampleUnitTest.kt -------------------------------------------------------------------------------- /homework/Lesson4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/build.gradle -------------------------------------------------------------------------------- /homework/Lesson4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/gradle.properties -------------------------------------------------------------------------------- /homework/Lesson4/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /homework/Lesson4/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /homework/Lesson4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/gradlew -------------------------------------------------------------------------------- /homework/Lesson4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/Lesson4/gradlew.bat -------------------------------------------------------------------------------- /homework/Lesson4/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /homework/lesson-2-activity-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson-2-activity-state.md -------------------------------------------------------------------------------- /homework/lesson2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.gitignore -------------------------------------------------------------------------------- /homework/lesson2/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /homework/lesson2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.idea/gradle.xml -------------------------------------------------------------------------------- /homework/lesson2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.idea/misc.xml -------------------------------------------------------------------------------- /homework/lesson2/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /homework/lesson2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/lesson2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /homework/lesson2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/build.gradle -------------------------------------------------------------------------------- /homework/lesson2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/proguard-rules.pro -------------------------------------------------------------------------------- /homework/lesson2/app/src/androidTest/java/com/alifyz/lesson2/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/androidTest/java/com/alifyz/lesson2/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/java/com/alifyz/lesson2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/java/com/alifyz/lesson2/MainActivity.kt -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /homework/lesson2/app/src/test/java/com/alifyz/lesson2/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/app/src/test/java/com/alifyz/lesson2/ExampleUnitTest.kt -------------------------------------------------------------------------------- /homework/lesson2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/build.gradle -------------------------------------------------------------------------------- /homework/lesson2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/gradle.properties -------------------------------------------------------------------------------- /homework/lesson2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /homework/lesson2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /homework/lesson2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/gradlew -------------------------------------------------------------------------------- /homework/lesson2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson2/gradlew.bat -------------------------------------------------------------------------------- /homework/lesson2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.gitignore -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/gradle.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/misc.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/build.gradle -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/proguard-rules.pro -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/androidTest/java/com/alifyz/usernavigation/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/androidTest/java/com/alifyz/usernavigation/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/java/com/alifyz/usernavigation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/java/com/alifyz/usernavigation/MainActivity.kt -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/java/com/alifyz/usernavigation/OrderActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/java/com/alifyz/usernavigation/OrderActivity.kt -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/drawable/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/drawable/icon.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/layout/activity_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/layout/activity_order.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/layout/fragment_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/layout/fragment_order.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/menu/menu_order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/menu/menu_order.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/app/src/test/java/com/alifyz/usernavigation/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/app/src/test/java/com/alifyz/usernavigation/ExampleUnitTest.kt -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/build.gradle -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/gradle.properties -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/gradlew -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson4-user-navigation/gradlew.bat -------------------------------------------------------------------------------- /homework/lesson4-user-navigation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /homework/lesson8/notification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.gitignore -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/gradle.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/misc.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/.idea/vcs.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /homework/lesson8/notification/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/build.gradle -------------------------------------------------------------------------------- /homework/lesson8/notification/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/proguard-rules.pro -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/androidTest/java/com/alifyz/notification/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/androidTest/java/com/alifyz/notification/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/java/com/alifyz/notification/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/java/com/alifyz/notification/MainActivity.kt -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /homework/lesson8/notification/app/src/test/java/com/alifyz/notification/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/app/src/test/java/com/alifyz/notification/ExampleUnitTest.kt -------------------------------------------------------------------------------- /homework/lesson8/notification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/build.gradle -------------------------------------------------------------------------------- /homework/lesson8/notification/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/gradle.properties -------------------------------------------------------------------------------- /homework/lesson8/notification/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /homework/lesson8/notification/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /homework/lesson8/notification/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/gradlew -------------------------------------------------------------------------------- /homework/lesson8/notification/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alifyz/Android-Certification/HEAD/homework/lesson8/notification/gradlew.bat -------------------------------------------------------------------------------- /homework/lesson8/notification/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------