├── 01 - My Application Projects ├── 1. Basics Android Studio │ ├── 01 - Creating First App │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── Good Morning Show │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── goodmorningshow │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── goodmorningshow │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── goodmorningshow │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── Multiplication Table │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── multiplicationtable │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── multiplicationtable │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── multiplicationtable │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── README.md │ │ └── Sum of Two Number │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── sumoftwonumber │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── sumoftwonumber │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── sumoftwonumber │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ ├── 02 - Layout & Activity │ │ ├── First Task App │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── firsttask │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── firsttask │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ └── my_image.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── firsttask │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── Fourth Task App │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fourthtask │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── fourthtask │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── fourthtask │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── README.md │ │ ├── Second Task App │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── secondtask │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── secondtask │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── four.jpg │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ ├── one.jpg │ │ │ │ │ │ ├── three.jpg │ │ │ │ │ │ └── two.jpg │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── secondtask │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── Third Task App │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── thirdtask │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── thirdtask │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── thirdtask │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── first.jpg │ │ ├── fourth.jpg │ │ ├── second.gif │ │ └── third.gif │ ├── 03 - Multiscreen Activity │ │ ├── 01 - Task │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice01 │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── practice01 │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ └── java.jpg │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice01 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── 02 - Task │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice02 │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── practice02 │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice02 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── 03 - Task │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── project3 │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── project3 │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ └── java.jpg │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── project3 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.jpg │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── Practice Set - Activity Text Pass │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── practice │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ └── SecondActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ └── activity_second.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── Practice Set - Implicit Intent │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── jarRepositories.xml │ │ │ │ └── misc.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── implicitintent │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── goodmorning │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── implicitintent │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── implicitintent │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ └── README.md │ └── 04 - Listview and Recycler View │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── Practice ListView │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── listview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── listview │ │ │ │ │ │ ├── AmitAdapter.java │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── my_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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── listview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ └── README.md ├── 2. Fire Base │ └── README.md ├── 3. Advertisment Use │ └── README.md ├── 4. Payment Gateway │ └── README.md └── README.md ├── 02 - Code With Harry Projects ├── 1. Chapter ( Creating First App ) │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ ├── Good Morning Show │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── goodmorningshow │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── goodmorningshow │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── goodmorningshow │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── Multiplication Table │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── multiplicationtable │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── multiplicationtable │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── multiplicationtable │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── README.md │ └── Sum of Two Number │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ └── misc.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── sumoftwonumber │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── sumoftwonumber │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── goodmorning │ │ │ └── example │ │ │ └── sumoftwonumber │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── 3. Chapter ( Layout & Activity ) │ ├── First Task App │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── firsttask │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── firsttask │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── my_image.png │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── firsttask │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── Fourth Task App │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── fourthtask │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fourthtask │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── fourthtask │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── README.md │ ├── Second Task App │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── secondtask │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── secondtask │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── four.jpg │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── one.jpg │ │ │ │ │ ├── three.jpg │ │ │ │ │ └── two.jpg │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── secondtask │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── Third Task App │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── thirdtask │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── thirdtask │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── thirdtask │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── first.jpg │ ├── fourth.jpg │ ├── second.gif │ └── third.gif ├── 4. Chapter ( Multiscreen Activity ) │ ├── 01 - Task │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice01 │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice01 │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── java.jpg │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── practice01 │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── 02 - Task │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice02 │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice02 │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── practice02 │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── 03 - Task │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── project3 │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── project3 │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── java.jpg │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── project3 │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.jpg │ ├── 5.gif │ ├── 6.gif │ ├── Practice Set - Implicit Intent │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── implicitintent │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── implicitintent │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── implicitintent │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── Practice Set - Pass String to Another Activity │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── practice │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── practice │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── SecondActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── activity_second.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── practice │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── README.md ├── 5. Chapter ( Listview and Recycler View ) │ ├── 1.jpg │ ├── 2.jpg │ ├── Practice ListView │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── jarRepositories.xml │ │ │ └── misc.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── goodmorning │ │ │ │ │ └── example │ │ │ │ │ └── listview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── goodmorning │ │ │ │ │ │ └── example │ │ │ │ │ │ └── listview │ │ │ │ │ │ ├── AmitAdapter.java │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── my_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-night │ │ │ │ │ └── themes.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── goodmorning │ │ │ │ └── example │ │ │ │ └── listview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── README.md ├── 6. Chapter ( Media ) │ └── README.md ├── 7. Chapter ( Data Base ) │ └── README.md └── README.md ├── 05 - Extras Things ├── Thumbnil │ ├── android_anuj_bhaiya_full.jpg │ ├── android_freecode.jpg │ ├── android_harry_full.png │ ├── android_sngel_harry.jpg │ ├── java_aman.jpg │ ├── java_anuj.jpg │ ├── java_harry.jpg │ ├── java_navin.jpg │ ├── kotlin_anuj.jpg │ ├── kotlin_freecode.jpg │ ├── kotlin_suneja.jpg │ └── kunal_git.jpg ├── YTChannels │ ├── abc.txt │ ├── anuj.png │ ├── codingcafe.png │ ├── codingflow.png │ ├── flipkart.jpeg │ ├── harry.png │ ├── instagram.jpeg │ ├── neatroots.png │ ├── quiz.png │ ├── tcode.png │ └── whatsapp.jpeg ├── aman_bhaiya.png ├── anuj.png ├── banner.png ├── harry.png ├── kunal_khuswaha.png ├── own.png └── udacity.png └── README.md /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/01.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/02.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/03.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/.name: -------------------------------------------------------------------------------- 1 | Good Morning Show -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Good Morning Show/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Good Morning Show" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/.name: -------------------------------------------------------------------------------- 1 | Multiplication Table -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Multiplication Table/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Multiplication Table" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/.name: -------------------------------------------------------------------------------- 1 | Sum of Two Number -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/01 - Creating First App/Sum of Two Number/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Sum of Two Number" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | First Task -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/First Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "First Task" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Fourth Task -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Fourth Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Fourth Task" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Second Task -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/res/drawable/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/res/drawable/one.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/res/drawable/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/app/src/main/res/drawable/two.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Second Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Second Task" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Third Task -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/Third Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Third Task" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/first.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/fourth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/fourth.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/second.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/second.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/third.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/02 - Layout & Activity/third.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice 01 -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/drawable/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/drawable/java.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/01 - Task/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice 01" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice 02 -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/02 - Task/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice 02" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Project 3 -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/drawable/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/drawable/java.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/03 - Task/settings.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/1.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/2.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/3.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/4.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/5.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/6.gif -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Activity Text Pass/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/.idea/.name: -------------------------------------------------------------------------------- 1 | Implicit Intent -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/Practice Set - Implicit Intent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Implicit Intent" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/03 - Multiscreen Activity/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/1.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/2.jpg -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.gitignore -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/.name: -------------------------------------------------------------------------------- 1 | List View -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/compiler.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/gradle.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/.idea/misc.xml -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/app/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/build.gradle -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradle.properties -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradlew -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/gradlew.bat -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/Practice ListView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "List View" -------------------------------------------------------------------------------- /01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/1. Basics Android Studio/04 - Listview and Recycler View/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/2. Fire Base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/2. Fire Base/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/3. Advertisment Use/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/3. Advertisment Use/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/4. Payment Gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/4. Payment Gateway/README.md -------------------------------------------------------------------------------- /01 - My Application Projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/01 - My Application Projects/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/01.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/02.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/03.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/.name: -------------------------------------------------------------------------------- 1 | Good Morning Show -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Good Morning Show/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Good Morning Show" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/.name: -------------------------------------------------------------------------------- 1 | Multiplication Table -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Multiplication Table/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Multiplication Table" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/.name: -------------------------------------------------------------------------------- 1 | Sum of Two Number -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/1. Chapter ( Creating First App )/Sum of Two Number/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Sum of Two Number" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | First Task -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/drawable/my_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/drawable/my_image.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/First Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "First Task" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Fourth Task -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Fourth Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Fourth Task" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Second Task -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/four.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/one.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/three.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/drawable/two.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Second Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Second Task" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/.name: -------------------------------------------------------------------------------- 1 | Third Task -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/Third Task App/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Third Task" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/first.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/fourth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/fourth.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/second.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/second.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/third.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/3. Chapter ( Layout & Activity )/third.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice 01 -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/drawable/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/drawable/java.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/01 - Task/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice 01" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice 02 -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/02 - Task/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice 02" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/.name: -------------------------------------------------------------------------------- 1 | Project 3 -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/drawable/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/drawable/java.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/03 - Task/settings.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/1.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/2.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/3.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/4.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/5.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/6.gif -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/.name: -------------------------------------------------------------------------------- 1 | Implicit Intent -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Implicit Intent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Implicit Intent" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/.idea/.name: -------------------------------------------------------------------------------- 1 | Practice -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/Practice Set - Pass String to Another Activity/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Practice" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/4. Chapter ( Multiscreen Activity )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/1.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/2.jpg -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.gitignore -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/.name: -------------------------------------------------------------------------------- 1 | List View -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/compiler.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/gradle.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/.idea/misc.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/proguard-rules.pro -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/build.gradle -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradle.properties -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradlew -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/gradlew.bat -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/Practice ListView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "List View" -------------------------------------------------------------------------------- /02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/5. Chapter ( Listview and Recycler View )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/6. Chapter ( Media )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/6. Chapter ( Media )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/7. Chapter ( Data Base )/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/7. Chapter ( Data Base )/README.md -------------------------------------------------------------------------------- /02 - Code With Harry Projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/02 - Code With Harry Projects/README.md -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/android_anuj_bhaiya_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/android_anuj_bhaiya_full.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/android_freecode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/android_freecode.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/android_harry_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/android_harry_full.png -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/android_sngel_harry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/android_sngel_harry.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/java_aman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/java_aman.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/java_anuj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/java_anuj.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/java_harry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/java_harry.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/java_navin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/java_navin.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/kotlin_anuj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/kotlin_anuj.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/kotlin_freecode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/kotlin_freecode.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/kotlin_suneja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/kotlin_suneja.jpg -------------------------------------------------------------------------------- /05 - Extras Things/Thumbnil/kunal_git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/Thumbnil/kunal_git.jpg -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/abc.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/anuj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/anuj.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/codingcafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/codingcafe.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/codingflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/codingflow.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/flipkart.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/flipkart.jpeg -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/harry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/harry.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/instagram.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/instagram.jpeg -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/neatroots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/neatroots.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/quiz.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/tcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/tcode.png -------------------------------------------------------------------------------- /05 - Extras Things/YTChannels/whatsapp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/YTChannels/whatsapp.jpeg -------------------------------------------------------------------------------- /05 - Extras Things/aman_bhaiya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/aman_bhaiya.png -------------------------------------------------------------------------------- /05 - Extras Things/anuj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/anuj.png -------------------------------------------------------------------------------- /05 - Extras Things/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/banner.png -------------------------------------------------------------------------------- /05 - Extras Things/harry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/harry.png -------------------------------------------------------------------------------- /05 - Extras Things/kunal_khuswaha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/kunal_khuswaha.png -------------------------------------------------------------------------------- /05 - Extras Things/own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/own.png -------------------------------------------------------------------------------- /05 - Extras Things/udacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/05 - Extras Things/udacity.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maityamit/Android-Development-Codes-and-Notes/HEAD/README.md --------------------------------------------------------------------------------