├── 1. Arithematic Calculator ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 9 │ │ │ └── f │ │ │ │ └── 9f2ce52c3d3bdf9a57afee7914f7242939947202 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 9 │ │ └── f │ │ │ └── 9f2ce52c3d3bdf9a57afee7914f7242939947202 │ │ └── index.pb ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── arithematiccalculator │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── arithematiccalculator │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── arithematiccalculator │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 10. Animation ├── .gitignore ├── .idea │ ├── .gitignore │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 8 │ │ │ └── e │ │ │ │ └── 8ed81315330f3ea349e6c54894fd45f89da6561a │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 8 │ │ └── e │ │ │ └── 8ed81315330f3ea349e6c54894fd45f89da6561a │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── animation │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── animation │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── anim │ │ │ ├── alpha.xml │ │ │ ├── move_animation.xml │ │ │ ├── rotation.xml │ │ │ └── scale.xml │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── font │ │ │ └── arsenal_bold_italic.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── animation │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 11. LottieAnimation(CustomAnimation) ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 6 │ │ │ └── 6 │ │ │ │ └── 662204df2f1b86d25e29bdc3c15b95aa8bc9f895 │ │ ├── 8 │ │ │ └── c │ │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── f │ │ │ ├── 0 │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ └── 4 │ │ │ │ └── f4a01d6a4fcb971362ec00a83903fd3902f52164 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 6 │ │ └── 6 │ │ │ └── 662204df2f1b86d25e29bdc3c15b95aa8bc9f895 │ │ ├── 8 │ │ └── c │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── f │ │ ├── 0 │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ └── 4 │ │ │ └── f4a01d6a4fcb971362ec00a83903fd3902f52164 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── lottieanimationcustomanimation │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── lottieanimationcustomanimation │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── anim │ │ │ └── animation.xml │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── raw │ │ │ └── anim.json │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── lottieanimationcustomanimation │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 12. Fragment ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 0 │ │ │ ├── 4 │ │ │ │ └── 04115ac03bfb604aba4bd46dbdffafbc0eca249a │ │ │ └── 7 │ │ │ │ └── 07865cc1d7f2f0d74fe9f4764f24c9ea824f3f6d │ │ ├── 1 │ │ │ └── f │ │ │ │ └── 1fe2d2fe727c1645c7f1e3ed324c1bf9667101c4 │ │ ├── 9 │ │ │ └── a │ │ │ │ └── 9aaf2052e6928535cd220b70fca139c75ade3b1e │ │ ├── b │ │ │ └── f │ │ │ │ └── bf06f1e376fc40a60d21ba6a71c4f18c4e5c7d2e │ │ ├── f │ │ │ ├── 0 │ │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ │ └── 4 │ │ │ │ └── f4a01d6a4fcb971362ec00a83903fd3902f52164 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 0 │ │ ├── 4 │ │ │ └── 04115ac03bfb604aba4bd46dbdffafbc0eca249a │ │ └── 7 │ │ │ └── 07865cc1d7f2f0d74fe9f4764f24c9ea824f3f6d │ │ ├── 1 │ │ └── f │ │ │ └── 1fe2d2fe727c1645c7f1e3ed324c1bf9667101c4 │ │ ├── 9 │ │ └── a │ │ │ └── 9aaf2052e6928535cd220b70fca139c75ade3b1e │ │ ├── b │ │ └── f │ │ │ └── bf06f1e376fc40a60d21ba6a71c4f18c4e5c7d2e │ │ ├── f │ │ ├── 0 │ │ │ └── f07866736216be0ee2aba49e392191aeae700a35 │ │ └── 4 │ │ │ └── f4a01d6a4fcb971362ec00a83903fd3902f52164 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── fragment │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fragment │ │ │ │ ├── ImageView1.java │ │ │ │ ├── ImageView2.java │ │ │ │ ├── ImageView3.java │ │ │ │ ├── ImageView4.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── cb1.jpeg │ │ │ ├── cb2.jpeg │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_image_view1.xml │ │ │ ├── fragment_image_view2.xml │ │ │ ├── fragment_image_view3.xml │ │ │ └── fragment_image_view4.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── fragment │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 13. BroadcastReciever (AirplaneMode) ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 2 │ │ │ └── a │ │ │ │ └── 2a71ee7475510f0171f61df008d4736dc40189b0 │ │ ├── f │ │ │ └── e │ │ │ │ └── fe47b6af78980d3889e829d7af1487b896499863 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 2 │ │ └── a │ │ │ └── 2a71ee7475510f0171f61df008d4736dc40189b0 │ │ ├── f │ │ └── e │ │ │ └── fe47b6af78980d3889e829d7af1487b896499863 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── broadcastreciever │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── broadcastreciever │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyBroadcastReciever.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── broadcastreciever │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 14. BroadcastReciever(BatteryLevel) ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 2 │ │ │ └── b │ │ │ │ └── 2b9026050ef3d9635f104adcad5a09e7694829c9 │ │ ├── a │ │ │ └── 1 │ │ │ │ └── a1fd7ea6f331a46216e80dbddbb3e67cd75f0e78 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 2 │ │ └── b │ │ │ └── 2b9026050ef3d9635f104adcad5a09e7694829c9 │ │ ├── a │ │ └── 1 │ │ │ └── a1fd7ea6f331a46216e80dbddbb3e67cd75f0e78 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── broadcastrecieverbatterylevel │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── broadcastrecieverbatterylevel │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyBroadcastReciever.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── broadcastrecieverbatterylevel │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 15. MediaPlayer ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 8 │ │ │ └── c │ │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── c │ │ │ └── f │ │ │ │ └── cfd8fef3a1b46930fb2eca62d6ccb437f24d0739 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 8 │ │ └── c │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── c │ │ └── f │ │ │ └── cfd8fef3a1b46930fb2eca62d6ccb437f24d0739 │ │ └── index.pb ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── mediaplayer │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── mediaplayer │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── raw │ │ │ ├── song1.mp3 │ │ │ └── song2.mp3 │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── mediaplayer │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 16. Student Database ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 7 │ │ │ └── 6 │ │ │ │ └── 764f77bc732f27a12b8d9a59a527cbec52c4ae90 │ │ ├── b │ │ │ └── 5 │ │ │ │ └── b5b2154b1a5779ef808821c96591bd4edc921f80 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 7 │ │ └── 6 │ │ │ └── 764f77bc732f27a12b8d9a59a527cbec52c4ae90 │ │ ├── b │ │ └── 5 │ │ │ └── b5b2154b1a5779ef808821c96591bd4edc921f80 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── database │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── database │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyDbHelper.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── font │ │ │ └── amaranth_bold_italic.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── database │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 17. RegistrationDatabase ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 1 │ │ │ └── e │ │ │ │ └── 1e9745cf727a38d93e99ac519c15b65cebe7cd7b │ │ ├── 4 │ │ │ └── c │ │ │ │ └── 4cccf62d69cda924776708938793b198a8b34a7c │ │ ├── b │ │ │ └── 1 │ │ │ │ └── b1d308ba80b13eb0279437f4065f70ef48c563fe │ │ ├── c │ │ │ └── d │ │ │ │ └── cd81703c348c0e393520b67c15cbb1374ff754dc │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 1 │ │ └── e │ │ │ └── 1e9745cf727a38d93e99ac519c15b65cebe7cd7b │ │ ├── 4 │ │ └── c │ │ │ └── 4cccf62d69cda924776708938793b198a8b34a7c │ │ ├── b │ │ └── 1 │ │ │ └── b1d308ba80b13eb0279437f4065f70ef48c563fe │ │ ├── c │ │ └── d │ │ │ └── cd81703c348c0e393520b67c15cbb1374ff754dc │ │ └── index.pb ├── RegistrationDatabase │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── aws.xml │ │ ├── compiler.xml │ │ ├── dbnavigator.xml │ │ ├── deploymentTargetDropDown.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── sonarlint │ │ │ ├── issuestore │ │ │ ├── 1 │ │ │ │ └── e │ │ │ │ │ └── 1e9745cf727a38d93e99ac519c15b65cebe7cd7b │ │ │ ├── 4 │ │ │ │ └── c │ │ │ │ │ └── 4cccf62d69cda924776708938793b198a8b34a7c │ │ │ ├── b │ │ │ │ └── 1 │ │ │ │ │ └── b1d308ba80b13eb0279437f4065f70ef48c563fe │ │ │ ├── c │ │ │ │ └── d │ │ │ │ │ └── cd81703c348c0e393520b67c15cbb1374ff754dc │ │ │ └── index.pb │ │ │ └── securityhotspotstore │ │ │ ├── 1 │ │ │ └── e │ │ │ │ └── 1e9745cf727a38d93e99ac519c15b65cebe7cd7b │ │ │ ├── 4 │ │ │ └── c │ │ │ │ └── 4cccf62d69cda924776708938793b198a8b34a7c │ │ │ ├── b │ │ │ └── 1 │ │ │ │ └── b1d308ba80b13eb0279437f4065f70ef48c563fe │ │ │ ├── c │ │ │ └── d │ │ │ │ └── cd81703c348c0e393520b67c15cbb1374ff754dc │ │ │ └── index.pb │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── registrationdatabase │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── registrationdatabase │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── RegistrationDatabase.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── font │ │ │ │ └── amaranth_bold_italic.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── font_certs.xml │ │ │ │ ├── preloaded_fonts.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── registrationdatabase │ │ │ └── ExampleUnitTest.java │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── registrationdatabase │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── registrationdatabase │ │ │ │ ├── MainActivity.java │ │ │ │ └── RegistrationDatabase.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── font │ │ │ └── amaranth_bold_italic.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── registrationdatabase │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 18. CardView ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 2 │ │ │ └── 9 │ │ │ │ └── 297c4a55382445387f92762b0ee517d3f247d827 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 2 │ │ └── 9 │ │ │ └── 297c4a55382445387f92762b0ee517d3f247d827 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cardview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cardview │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── font │ │ │ └── amaranth_bold_italic.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cardview │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 19. SharedPreferance ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 6 │ │ │ └── 3 │ │ │ │ └── 63cbcf4904fbe8b9ffdd3a5f29ccb10cce8678f0 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 6 │ │ └── 3 │ │ │ └── 63cbcf4904fbe8b9ffdd3a5f29ccb10cce8678f0 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── sharedpreferance │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── sharedpreferance │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── sharedpreferance │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 2. BMI Calculator ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── c │ │ │ └── 3 │ │ │ │ └── c3b8b51c88f52e3b0dc5cbf18104e0400bef859c │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── c │ │ └── 3 │ │ │ └── c3b8b51c88f52e3b0dc5cbf18104e0400bef859c │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── bmicalculator │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── bmicalculator │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bmicalculator │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 20. NotificationApp ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 7 │ │ │ └── 8 │ │ │ │ └── 7855d7194349fcdff82ed65a4f52c75eaf746550 │ │ ├── 8 │ │ │ └── c │ │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── a │ │ │ └── 8 │ │ │ │ └── a8b2dfa2644fe0580ff860bb25887645016195ed │ │ ├── c │ │ │ └── 7 │ │ │ │ └── c727f5e4f828ce399f2aa97787689c5d49ddad85 │ │ ├── e │ │ │ └── d │ │ │ │ └── edbd8bdf7b0458027de4af99f67d976518e730c1 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 7 │ │ └── 8 │ │ │ └── 7855d7194349fcdff82ed65a4f52c75eaf746550 │ │ ├── 8 │ │ └── c │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── a │ │ └── 8 │ │ │ └── a8b2dfa2644fe0580ff860bb25887645016195ed │ │ ├── c │ │ └── 7 │ │ │ └── c727f5e4f828ce399f2aa97787689c5d49ddad85 │ │ ├── e │ │ └── d │ │ │ └── edbd8bdf7b0458027de4af99f67d976518e730c1 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── notificationapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── notificationapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── NotificationResult.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── download.jpeg │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── font │ │ │ └── amaranth_bold_italic.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── notificationapp │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 21. Database with All Components ├── .idea │ ├── .gitignore │ ├── 21. Database with All Components.iml │ ├── aws.xml │ ├── dbnavigator.xml │ ├── misc.xml │ ├── modules.xml │ ├── sonarlint │ │ ├── issuestore │ │ │ ├── 0 │ │ │ │ └── f │ │ │ │ │ └── 0f88a9bec9e8622323da491c6c0e514e827caa75 │ │ │ ├── 7 │ │ │ │ └── a │ │ │ │ │ └── 7a15f8dd67074c019659ea87dacc77e13002d93c │ │ │ ├── 8 │ │ │ │ └── 9 │ │ │ │ │ └── 89b4f646e54f249a0dc2afc34e380914349b4266 │ │ │ ├── e │ │ │ │ └── f │ │ │ │ │ └── efb9445803e2c9d5fd3c9206f286ed20234119ed │ │ │ ├── f │ │ │ │ └── 7 │ │ │ │ │ └── f791198d3358f8e22905bbbc8237ee89ce124a98 │ │ │ └── index.pb │ │ └── securityhotspotstore │ │ │ ├── 0 │ │ │ └── f │ │ │ │ └── 0f88a9bec9e8622323da491c6c0e514e827caa75 │ │ │ ├── 7 │ │ │ └── a │ │ │ │ └── 7a15f8dd67074c019659ea87dacc77e13002d93c │ │ │ ├── 8 │ │ │ └── 9 │ │ │ │ └── 89b4f646e54f249a0dc2afc34e380914349b4266 │ │ │ ├── e │ │ │ └── f │ │ │ │ └── efb9445803e2c9d5fd3c9206f286ed20234119ed │ │ │ ├── f │ │ │ └── 7 │ │ │ │ └── f791198d3358f8e22905bbbc8237ee89ce124a98 │ │ │ └── index.pb │ └── vcs.xml └── Databasewithcomponents │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── databasewithcomponents │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── databasewithcomponents │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainActivity2.java │ │ │ │ └── MyDatabase.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── databasewithcomponents │ │ └── ExampleUnitTest.java │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── 22. TwoIntents ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 7 │ │ │ └── 6 │ │ │ │ └── 7652636ab7efad6a8bd71e3ee2a3f240e38be605 │ │ ├── 8 │ │ │ └── b │ │ │ │ └── 8b6e9fae536cffc5e47c3807b28ab354d6a0aeba │ │ ├── b │ │ │ └── 5 │ │ │ │ └── b56d138f1bc6186971d3e3420d96ed76f71e6637 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 7 │ │ └── 6 │ │ │ └── 7652636ab7efad6a8bd71e3ee2a3f240e38be605 │ │ ├── 8 │ │ └── b │ │ │ └── 8b6e9fae536cffc5e47c3807b28ab354d6a0aeba │ │ ├── b │ │ └── 5 │ │ │ └── b56d138f1bc6186971d3e3420d96ed76f71e6637 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── twointents │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── twointents │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainActivity2.java │ │ │ │ └── MainActivity3.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_main2.xml │ │ │ └── activity_main3.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── twointents │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 23.Shared Preferance with Al lComponents ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 7 │ │ │ └── 9 │ │ │ │ └── 79f1be84c34c2c46a2bbbb7985eaf3c4d1ef6f38 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 7 │ │ └── 9 │ │ │ └── 79f1be84c34c2c46a2bbbb7985eaf3c4d1ef6f38 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── sharedpreferancewithallcomponents │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── sharedpreferancewithallcomponents │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── sharedpreferancewithallcomponents │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 24. MenueApp ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── c │ │ │ └── 8 │ │ │ │ └── c8edbace17ce989655c0f635a8f255fc7bd352cc │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── c │ │ └── 8 │ │ │ └── c8edbace17ce989655c0f635a8f255fc7bd352cc │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── menueapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── menueapp │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── my_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── menueapp │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 25. Weather_App ├── .gitignore ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── migrations.xml │ └── misc.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── weather_app │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── weather_app │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── background.jpeg │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── weather_app │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── 3. ListView_Spinner_AutocompleteTextView ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── f │ │ │ └── 8 │ │ │ │ └── f851144a386ad39d284852444c31247d8603bcea │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── f │ │ └── 8 │ │ │ └── f851144a386ad39d284852444c31247d8603bcea │ │ └── index.pb ├── 2021CSD0116_list_view.zip ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── listview_spinner_autocomplete │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── listview_spinner_autocomplete │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── listview_spinner_autocomplete │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 4. Intent ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 5 │ │ │ └── 3 │ │ │ │ └── 538f5d8747c3398dcddb43ecc13fb7dece1b8cdf │ │ ├── 8 │ │ │ └── c │ │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── d │ │ │ └── 1 │ │ │ │ └── d10a1b4a39e2908a5b95dd8df09334d2d43ec5ca │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 5 │ │ └── 3 │ │ │ └── 538f5d8747c3398dcddb43ecc13fb7dece1b8cdf │ │ ├── 8 │ │ └── c │ │ │ └── 8c55c3ccc257e5907959013f99656e4c8ec3903e │ │ ├── d │ │ └── 1 │ │ │ └── d10a1b4a39e2908a5b95dd8df09334d2d43ec5ca │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── a48intent │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── a48intent │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── second_activity.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── a48intent │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 5. RegistrationForm ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── c │ │ │ └── b │ │ │ │ └── cb0958830865f97508ce48c1498a86f225b8a0c4 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── c │ │ └── b │ │ │ └── cb0958830865f97508ce48c1498a86f225b8a0c4 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── a3registrationform │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── a3registrationform │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── a3registrationform │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 6. CourseSelection ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ └── misc.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── a4courseselection │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── a4courseselection │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── a4courseselection │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 7. Vote Elgiible App ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ └── misc.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── voteelgiibleapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── voteelgiibleapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainActivity2.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── voteelgiibleapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 8. Cake App ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 1 │ │ │ └── 9 │ │ │ │ └── 19fdab86f5449f30e61da06013889f550874cbcb │ │ ├── 2 │ │ │ └── b │ │ │ │ └── 2bad8627eea9ff17262f7ca70b83f0d8ebef040d │ │ ├── c │ │ │ └── 9 │ │ │ │ └── c91e816bb41098ade4a14744739e437477a8e0a0 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 1 │ │ └── 9 │ │ │ └── 19fdab86f5449f30e61da06013889f550874cbcb │ │ ├── 2 │ │ └── b │ │ │ └── 2bad8627eea9ff17262f7ca70b83f0d8ebef040d │ │ ├── c │ │ └── 9 │ │ │ └── c91e816bb41098ade4a14744739e437477a8e0a0 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cakeapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cakeapp │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainActivity2_selectOrder.java │ │ │ │ └── MainActivity3_selectItems.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_main_activity2_select_order.xml │ │ │ └── activity_main_activity3_select_items.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cakeapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── 9. BroadcastReciever ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── aws.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 2 │ │ │ └── a │ │ │ │ └── 2a71ee7475510f0171f61df008d4736dc40189b0 │ │ ├── f │ │ │ └── e │ │ │ │ └── fe47b6af78980d3889e829d7af1487b896499863 │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 2 │ │ └── a │ │ │ └── 2a71ee7475510f0171f61df008d4736dc40189b0 │ │ ├── f │ │ └── e │ │ │ └── fe47b6af78980d3889e829d7af1487b896499863 │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── broadcastreciever │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── broadcastreciever │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyBroadcastReciever.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── broadcastreciever │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BroadcastReviever.java ├── CSE3075_MAD_ First Set Experiments.pdf ├── CSE3075_MAD_ Second Set Experiments.pdf ├── CSE3075_MAD_ fifth Set Experiments.pdf ├── CSE3075_MAD_ fifth Set Experiments1.pdf ├── CSE3075_MAD_ fourth Set Experiments.pdf ├── CSE3075_MAD_ updated third Set Experiments.pdf ├── Database with components.zip ├── Database with components └── Databasewithcomponents │ ├── .gitignore │ ├── New Database with components.zip │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── databasewithcomponents │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── databasewithcomponents │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainActivity2.java │ │ │ │ └── MyDatabase.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── databasewithcomponents │ │ └── ExampleUnitTest.java │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── Experiment 9 menu (1).pdf ├── LICENSE ├── PracticeFragment ├── .gitignore ├── .idea │ ├── .gitignore │ ├── aws.xml │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── gradle.xml │ ├── misc.xml │ └── sonarlint │ │ ├── issuestore │ │ ├── 0 │ │ │ └── f │ │ │ │ └── 0f627a51e5efa34efa9b1450cc9f5372dcaa2ac6 │ │ ├── 7 │ │ │ └── e │ │ │ │ └── 7e55a9e8e34545313019ca7dd190c6fd988f6a16 │ │ ├── 9 │ │ │ └── 2 │ │ │ │ └── 921302f5596efca2485a58c7d6f449816444531e │ │ └── index.pb │ │ └── securityhotspotstore │ │ ├── 0 │ │ └── f │ │ │ └── 0f627a51e5efa34efa9b1450cc9f5372dcaa2ac6 │ │ ├── 7 │ │ └── e │ │ │ └── 7e55a9e8e34545313019ca7dd190c6fd988f6a16 │ │ ├── 9 │ │ └── 2 │ │ │ └── 921302f5596efca2485a58c7d6f449816444531e │ │ └── index.pb ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── practicefragment │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── Fragment3.java │ │ │ │ └── practicefragment │ │ │ │ ├── Fragment1.java │ │ │ │ ├── Fragment2.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_1.xml │ │ │ └── fragment_2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── practicefragment │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── README.md ├── ToDOlist.java ├── Viva.java ├── animation.java ├── database.java ├── intent.java ├── medaiplayer.java ├── notification.java ├── sharedPreference.java └── viva.txt /1. Arithematic Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.gitignore -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/.name: -------------------------------------------------------------------------------- 1 | Arithematic Calculator -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/aws.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/compiler.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/gradle.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/misc.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /1. Arithematic Calculator/.idea/sonarlint/securityhotspotstore/9/f/9f2ce52c3d3bdf9a57afee7914f7242939947202: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1. Arithematic Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/README.md -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/build.gradle -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/proguard-rules.pro -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /1. Arithematic Calculator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/build.gradle -------------------------------------------------------------------------------- /1. Arithematic Calculator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/gradle.properties -------------------------------------------------------------------------------- /1. Arithematic Calculator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /1. Arithematic Calculator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/gradlew -------------------------------------------------------------------------------- /1. Arithematic Calculator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/gradlew.bat -------------------------------------------------------------------------------- /1. Arithematic Calculator/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/1. Arithematic Calculator/settings.gradle -------------------------------------------------------------------------------- /10. Animation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.gitignore -------------------------------------------------------------------------------- /10. Animation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /10. Animation/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/aws.xml -------------------------------------------------------------------------------- /10. Animation/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/compiler.xml -------------------------------------------------------------------------------- /10. Animation/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /10. Animation/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/gradle.xml -------------------------------------------------------------------------------- /10. Animation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/misc.xml -------------------------------------------------------------------------------- /10. Animation/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /10. Animation/.idea/sonarlint/securityhotspotstore/8/e/8ed81315330f3ea349e6c54894fd45f89da6561a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10. Animation/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /10. Animation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /10. Animation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/build.gradle -------------------------------------------------------------------------------- /10. Animation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/proguard-rules.pro -------------------------------------------------------------------------------- /10. Animation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/anim/alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/anim/alpha.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/anim/move_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/anim/move_animation.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/anim/rotation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/anim/rotation.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/anim/scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/anim/scale.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/font/arsenal_bold_italic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/font/arsenal_bold_italic.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /10. Animation/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /10. Animation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/build.gradle -------------------------------------------------------------------------------- /10. Animation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/gradle.properties -------------------------------------------------------------------------------- /10. Animation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /10. Animation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /10. Animation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/gradlew -------------------------------------------------------------------------------- /10. Animation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/gradlew.bat -------------------------------------------------------------------------------- /10. Animation/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/10. Animation/settings.gradle -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.gitignore -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.idea/.name -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.idea/aws.xml -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.idea/compiler.xml -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.idea/gradle.xml -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/.idea/misc.xml -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/issuestore/6/6/662204df2f1b86d25e29bdc3c15b95aa8bc9f895: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/securityhotspotstore/6/6/662204df2f1b86d25e29bdc3c15b95aa8bc9f895: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/securityhotspotstore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/.idea/sonarlint/securityhotspotstore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/app/build.gradle -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/app/proguard-rules.pro -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/build.gradle -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/gradle.properties -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/gradlew -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/gradlew.bat -------------------------------------------------------------------------------- /11. LottieAnimation(CustomAnimation)/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/11. LottieAnimation(CustomAnimation)/settings.gradle -------------------------------------------------------------------------------- /12. Fragment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.gitignore -------------------------------------------------------------------------------- /12. Fragment/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /12. Fragment/.idea/.name: -------------------------------------------------------------------------------- 1 | Fragment -------------------------------------------------------------------------------- /12. Fragment/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/aws.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/compiler.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/gradle.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/misc.xml -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/0/4/04115ac03bfb604aba4bd46dbdffafbc0eca249a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/1/f/1fe2d2fe727c1645c7f1e3ed324c1bf9667101c4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/9/a/9aaf2052e6928535cd220b70fca139c75ade3b1e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/0/4/04115ac03bfb604aba4bd46dbdffafbc0eca249a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/0/7/07865cc1d7f2f0d74fe9f4764f24c9ea824f3f6d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/1/f/1fe2d2fe727c1645c7f1e3ed324c1bf9667101c4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/9/a/9aaf2052e6928535cd220b70fca139c75ade3b1e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/b/f/bf06f1e376fc40a60d21ba6a71c4f18c4e5c7d2e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/f/0/f07866736216be0ee2aba49e392191aeae700a35: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12. Fragment/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /12. Fragment/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /12. Fragment/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/build.gradle -------------------------------------------------------------------------------- /12. Fragment/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/proguard-rules.pro -------------------------------------------------------------------------------- /12. Fragment/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/drawable/cb1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/drawable/cb1.jpeg -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/drawable/cb2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/drawable/cb2.jpeg -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/layout/fragment_image_view1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/layout/fragment_image_view1.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/layout/fragment_image_view2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/layout/fragment_image_view2.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/layout/fragment_image_view3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/layout/fragment_image_view3.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/layout/fragment_image_view4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/layout/fragment_image_view4.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /12. Fragment/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /12. Fragment/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/build.gradle -------------------------------------------------------------------------------- /12. Fragment/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/gradle.properties -------------------------------------------------------------------------------- /12. Fragment/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /12. Fragment/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /12. Fragment/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/gradlew -------------------------------------------------------------------------------- /12. Fragment/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/gradlew.bat -------------------------------------------------------------------------------- /12. Fragment/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/12. Fragment/settings.gradle -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/.gitignore -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/.name: -------------------------------------------------------------------------------- 1 | Broadcast Reciever -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/.idea/aws.xml -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/.idea/compiler.xml -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/.idea/gradle.xml -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/.idea/misc.xml -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/sonarlint/securityhotspotstore/2/a/2a71ee7475510f0171f61df008d4736dc40189b0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/.idea/sonarlint/securityhotspotstore/f/e/fe47b6af78980d3889e829d7af1487b896499863: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/app/build.gradle -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/app/proguard-rules.pro -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/build.gradle -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/gradle.properties -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/gradlew -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/gradlew.bat -------------------------------------------------------------------------------- /13. BroadcastReciever (AirplaneMode)/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/13. BroadcastReciever (AirplaneMode)/settings.gradle -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/.gitignore -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/.name: -------------------------------------------------------------------------------- 1 | Broadcast Reciever (Battery Level) -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/.idea/aws.xml -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/.idea/compiler.xml -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/.idea/gradle.xml -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/.idea/misc.xml -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/sonarlint/issuestore/2/b/2b9026050ef3d9635f104adcad5a09e7694829c9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/sonarlint/securityhotspotstore/2/b/2b9026050ef3d9635f104adcad5a09e7694829c9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/.idea/sonarlint/securityhotspotstore/a/1/a1fd7ea6f331a46216e80dbddbb3e67cd75f0e78: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/app/build.gradle.kts -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/app/proguard-rules.pro -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/build.gradle.kts -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/gradle.properties -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/gradlew -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/gradlew.bat -------------------------------------------------------------------------------- /14. BroadcastReciever(BatteryLevel)/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/14. BroadcastReciever(BatteryLevel)/settings.gradle.kts -------------------------------------------------------------------------------- /15. MediaPlayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.gitignore -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/.name: -------------------------------------------------------------------------------- 1 | Media Player -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/aws.xml -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/compiler.xml -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/gradle.xml -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/misc.xml -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/sonarlint/securityhotspotstore/c/f/cfd8fef3a1b46930fb2eca62d6ccb437f24d0739: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /15. MediaPlayer/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /15. MediaPlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/README.md -------------------------------------------------------------------------------- /15. MediaPlayer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /15. MediaPlayer/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/build.gradle.kts -------------------------------------------------------------------------------- /15. MediaPlayer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/proguard-rules.pro -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/raw/song1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/raw/song1.mp3 -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/raw/song2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/raw/song2.mp3 -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /15. MediaPlayer/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /15. MediaPlayer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/build.gradle.kts -------------------------------------------------------------------------------- /15. MediaPlayer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/gradle.properties -------------------------------------------------------------------------------- /15. MediaPlayer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /15. MediaPlayer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /15. MediaPlayer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/gradlew -------------------------------------------------------------------------------- /15. MediaPlayer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/gradlew.bat -------------------------------------------------------------------------------- /15. MediaPlayer/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/15. MediaPlayer/settings.gradle.kts -------------------------------------------------------------------------------- /16. Student Database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.gitignore -------------------------------------------------------------------------------- /16. Student Database/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /16. Student Database/.idea/.name: -------------------------------------------------------------------------------- 1 | Database -------------------------------------------------------------------------------- /16. Student Database/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/aws.xml -------------------------------------------------------------------------------- /16. Student Database/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/compiler.xml -------------------------------------------------------------------------------- /16. Student Database/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /16. Student Database/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/gradle.xml -------------------------------------------------------------------------------- /16. Student Database/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/misc.xml -------------------------------------------------------------------------------- /16. Student Database/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /16. Student Database/.idea/sonarlint/securityhotspotstore/7/6/764f77bc732f27a12b8d9a59a527cbec52c4ae90: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16. Student Database/.idea/sonarlint/securityhotspotstore/b/5/b5b2154b1a5779ef808821c96591bd4edc921f80: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /16. Student Database/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /16. Student Database/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/build.gradle.kts -------------------------------------------------------------------------------- /16. Student Database/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/proguard-rules.pro -------------------------------------------------------------------------------- /16. Student Database/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /16. Student Database/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /16. Student Database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/build.gradle.kts -------------------------------------------------------------------------------- /16. Student Database/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/gradle.properties -------------------------------------------------------------------------------- /16. Student Database/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /16. Student Database/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /16. Student Database/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/gradlew -------------------------------------------------------------------------------- /16. Student Database/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/gradlew.bat -------------------------------------------------------------------------------- /16. Student Database/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/16. Student Database/settings.gradle.kts -------------------------------------------------------------------------------- /17. RegistrationDatabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.gitignore -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/.name: -------------------------------------------------------------------------------- 1 | Registration Database -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/aws.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/compiler.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/gradle.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/misc.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/issuestore/1/e/1e9745cf727a38d93e99ac519c15b65cebe7cd7b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/issuestore/c/d/cd81703c348c0e393520b67c15cbb1374ff754dc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/securityhotspotstore/1/e/1e9745cf727a38d93e99ac519c15b65cebe7cd7b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/securityhotspotstore/4/c/4cccf62d69cda924776708938793b198a8b34a7c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/securityhotspotstore/b/1/b1d308ba80b13eb0279437f4065f70ef48c563fe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/.idea/sonarlint/securityhotspotstore/c/d/cd81703c348c0e393520b67c15cbb1374ff754dc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/RegistrationDatabase/.gitignore -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/.name: -------------------------------------------------------------------------------- 1 | Registration Database -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/RegistrationDatabase/.idea/aws.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/RegistrationDatabase/.idea/misc.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/issuestore/1/e/1e9745cf727a38d93e99ac519c15b65cebe7cd7b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/issuestore/c/d/cd81703c348c0e393520b67c15cbb1374ff754dc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/securityhotspotstore/1/e/1e9745cf727a38d93e99ac519c15b65cebe7cd7b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/securityhotspotstore/4/c/4cccf62d69cda924776708938793b198a8b34a7c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/securityhotspotstore/b/1/b1d308ba80b13eb0279437f4065f70ef48c563fe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/.idea/sonarlint/securityhotspotstore/c/d/cd81703c348c0e393520b67c15cbb1374ff754dc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/RegistrationDatabase/gradlew -------------------------------------------------------------------------------- /17. RegistrationDatabase/RegistrationDatabase/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/RegistrationDatabase/gradlew.bat -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/build.gradle.kts -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/proguard-rules.pro -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /17. RegistrationDatabase/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/build.gradle.kts -------------------------------------------------------------------------------- /17. RegistrationDatabase/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/gradle.properties -------------------------------------------------------------------------------- /17. RegistrationDatabase/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /17. RegistrationDatabase/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/gradlew -------------------------------------------------------------------------------- /17. RegistrationDatabase/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/gradlew.bat -------------------------------------------------------------------------------- /17. RegistrationDatabase/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/17. RegistrationDatabase/settings.gradle.kts -------------------------------------------------------------------------------- /18. CardView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.gitignore -------------------------------------------------------------------------------- /18. CardView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /18. CardView/.idea/.name: -------------------------------------------------------------------------------- 1 | Card View -------------------------------------------------------------------------------- /18. CardView/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/aws.xml -------------------------------------------------------------------------------- /18. CardView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/compiler.xml -------------------------------------------------------------------------------- /18. CardView/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /18. CardView/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /18. CardView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/gradle.xml -------------------------------------------------------------------------------- /18. CardView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/misc.xml -------------------------------------------------------------------------------- /18. CardView/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /18. CardView/.idea/sonarlint/securityhotspotstore/2/9/297c4a55382445387f92762b0ee517d3f247d827: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /18. CardView/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /18. CardView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /18. CardView/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/build.gradle.kts -------------------------------------------------------------------------------- /18. CardView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/proguard-rules.pro -------------------------------------------------------------------------------- /18. CardView/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/font/amaranth_bold_italic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/font/amaranth_bold_italic.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values/preloaded_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values/preloaded_fonts.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /18. CardView/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /18. CardView/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/build.gradle.kts -------------------------------------------------------------------------------- /18. CardView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/gradle.properties -------------------------------------------------------------------------------- /18. CardView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /18. CardView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /18. CardView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/gradlew -------------------------------------------------------------------------------- /18. CardView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/gradlew.bat -------------------------------------------------------------------------------- /18. CardView/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/18. CardView/settings.gradle.kts -------------------------------------------------------------------------------- /19. SharedPreferance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.gitignore -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/.name: -------------------------------------------------------------------------------- 1 | Shared Preferance -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/aws.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/compiler.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/gradle.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/misc.xml -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /19. SharedPreferance/.idea/sonarlint/securityhotspotstore/6/3/63cbcf4904fbe8b9ffdd3a5f29ccb10cce8678f0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19. SharedPreferance/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /19. SharedPreferance/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/build.gradle.kts -------------------------------------------------------------------------------- /19. SharedPreferance/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/proguard-rules.pro -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /19. SharedPreferance/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /19. SharedPreferance/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/build.gradle.kts -------------------------------------------------------------------------------- /19. SharedPreferance/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/gradle.properties -------------------------------------------------------------------------------- /19. SharedPreferance/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /19. SharedPreferance/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /19. SharedPreferance/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/gradlew -------------------------------------------------------------------------------- /19. SharedPreferance/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/gradlew.bat -------------------------------------------------------------------------------- /19. SharedPreferance/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/19. SharedPreferance/settings.gradle.kts -------------------------------------------------------------------------------- /2. BMI Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.gitignore -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/.name: -------------------------------------------------------------------------------- 1 | BMI Calculator -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/aws.xml -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/compiler.xml -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/gradle.xml -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/misc.xml -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /2. BMI Calculator/.idea/sonarlint/securityhotspotstore/c/3/c3b8b51c88f52e3b0dc5cbf18104e0400bef859c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2. BMI Calculator/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /2. BMI Calculator/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/build.gradle -------------------------------------------------------------------------------- /2. BMI Calculator/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/proguard-rules.pro -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /2. BMI Calculator/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /2. BMI Calculator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/build.gradle -------------------------------------------------------------------------------- /2. BMI Calculator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/gradle.properties -------------------------------------------------------------------------------- /2. BMI Calculator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2. BMI Calculator/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /2. BMI Calculator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/gradlew -------------------------------------------------------------------------------- /2. BMI Calculator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/gradlew.bat -------------------------------------------------------------------------------- /2. BMI Calculator/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/2. BMI Calculator/settings.gradle -------------------------------------------------------------------------------- /20. NotificationApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.gitignore -------------------------------------------------------------------------------- /20. NotificationApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/.name: -------------------------------------------------------------------------------- 1 | Notification App -------------------------------------------------------------------------------- /20. NotificationApp/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/aws.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/compiler.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/gradle.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/misc.xml -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/issuestore/a/8/a8b2dfa2644fe0580ff860bb25887645016195ed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/issuestore/c/7/c727f5e4f828ce399f2aa97787689c5d49ddad85: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/securityhotspotstore/7/8/7855d7194349fcdff82ed65a4f52c75eaf746550: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/securityhotspotstore/a/8/a8b2dfa2644fe0580ff860bb25887645016195ed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/securityhotspotstore/c/7/c727f5e4f828ce399f2aa97787689c5d49ddad85: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/.idea/sonarlint/securityhotspotstore/e/d/edbd8bdf7b0458027de4af99f67d976518e730c1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /20. NotificationApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /20. NotificationApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/build.gradle.kts -------------------------------------------------------------------------------- /20. NotificationApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/drawable/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/drawable/download.jpeg -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/values/font_certs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/values/font_certs.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /20. NotificationApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /20. NotificationApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/build.gradle.kts -------------------------------------------------------------------------------- /20. NotificationApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/gradle.properties -------------------------------------------------------------------------------- /20. NotificationApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /20. NotificationApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /20. NotificationApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/gradlew -------------------------------------------------------------------------------- /20. NotificationApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/gradlew.bat -------------------------------------------------------------------------------- /20. NotificationApp/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/20. NotificationApp/settings.gradle.kts -------------------------------------------------------------------------------- /21. Database with All Components/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/21. Database with All Components/.idea/aws.xml -------------------------------------------------------------------------------- /21. Database with All Components/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/21. Database with All Components/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /21. Database with All Components/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/21. Database with All Components/.idea/misc.xml -------------------------------------------------------------------------------- /21. Database with All Components/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/21. Database with All Components/.idea/modules.xml -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/issuestore/8/9/89b4f646e54f249a0dc2afc34e380914349b4266: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/issuestore/e/f/efb9445803e2c9d5fd3c9206f286ed20234119ed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/securityhotspotstore/0/f/0f88a9bec9e8622323da491c6c0e514e827caa75: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/securityhotspotstore/7/a/7a15f8dd67074c019659ea87dacc77e13002d93c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/securityhotspotstore/8/9/89b4f646e54f249a0dc2afc34e380914349b4266: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/securityhotspotstore/e/f/efb9445803e2c9d5fd3c9206f286ed20234119ed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/sonarlint/securityhotspotstore/f/7/f791198d3358f8e22905bbbc8237ee89ce124a98: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /21. Database with All Components/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/21. Database with All Components/.idea/vcs.xml -------------------------------------------------------------------------------- /21. Database with All Components/Databasewithcomponents/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /22. TwoIntents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.gitignore -------------------------------------------------------------------------------- /22. TwoIntents/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /22. TwoIntents/.idea/.name: -------------------------------------------------------------------------------- 1 | Two Intents -------------------------------------------------------------------------------- /22. TwoIntents/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/aws.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/compiler.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/gradle.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/misc.xml -------------------------------------------------------------------------------- /22. TwoIntents/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /22. TwoIntents/.idea/sonarlint/securityhotspotstore/7/6/7652636ab7efad6a8bd71e3ee2a3f240e38be605: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22. TwoIntents/.idea/sonarlint/securityhotspotstore/8/b/8b6e9fae536cffc5e47c3807b28ab354d6a0aeba: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22. TwoIntents/.idea/sonarlint/securityhotspotstore/b/5/b56d138f1bc6186971d3e3420d96ed76f71e6637: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /22. TwoIntents/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /22. TwoIntents/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /22. TwoIntents/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/build.gradle.kts -------------------------------------------------------------------------------- /22. TwoIntents/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/proguard-rules.pro -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/layout/activity_main3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/layout/activity_main3.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /22. TwoIntents/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /22. TwoIntents/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/build.gradle.kts -------------------------------------------------------------------------------- /22. TwoIntents/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/gradle.properties -------------------------------------------------------------------------------- /22. TwoIntents/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /22. TwoIntents/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /22. TwoIntents/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/gradlew -------------------------------------------------------------------------------- /22. TwoIntents/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/gradlew.bat -------------------------------------------------------------------------------- /22. TwoIntents/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/22. TwoIntents/settings.gradle.kts -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/.gitignore -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/.name: -------------------------------------------------------------------------------- 1 | Shared Preferance with All Components -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/.idea/aws.xml -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/.idea/compiler.xml -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/.idea/gradle.xml -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/.idea/misc.xml -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/.idea/sonarlint/securityhotspotstore/7/9/79f1be84c34c2c46a2bbbb7985eaf3c4d1ef6f38: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/app/build.gradle.kts -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/build.gradle.kts -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/gradle.properties -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/gradlew -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/gradlew.bat -------------------------------------------------------------------------------- /23.Shared Preferance with Al lComponents/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/23.Shared Preferance with Al lComponents/settings.gradle.kts -------------------------------------------------------------------------------- /24. MenueApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.gitignore -------------------------------------------------------------------------------- /24. MenueApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /24. MenueApp/.idea/.name: -------------------------------------------------------------------------------- 1 | Menue App -------------------------------------------------------------------------------- /24. MenueApp/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/aws.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/compiler.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/gradle.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/misc.xml -------------------------------------------------------------------------------- /24. MenueApp/.idea/sonarlint/issuestore/c/8/c8edbace17ce989655c0f635a8f255fc7bd352cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /24. MenueApp/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /24. MenueApp/.idea/sonarlint/securityhotspotstore/c/8/c8edbace17ce989655c0f635a8f255fc7bd352cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /24. MenueApp/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /24. MenueApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /24. MenueApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/build.gradle.kts -------------------------------------------------------------------------------- /24. MenueApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/menu/my_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/menu/my_menu.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /24. MenueApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /24. MenueApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/build.gradle.kts -------------------------------------------------------------------------------- /24. MenueApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/gradle.properties -------------------------------------------------------------------------------- /24. MenueApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /24. MenueApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /24. MenueApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/gradlew -------------------------------------------------------------------------------- /24. MenueApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/gradlew.bat -------------------------------------------------------------------------------- /24. MenueApp/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/24. MenueApp/settings.gradle.kts -------------------------------------------------------------------------------- /25. Weather_App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.gitignore -------------------------------------------------------------------------------- /25. Weather_App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /25. Weather_App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.idea/compiler.xml -------------------------------------------------------------------------------- /25. Weather_App/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /25. Weather_App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.idea/gradle.xml -------------------------------------------------------------------------------- /25. Weather_App/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.idea/migrations.xml -------------------------------------------------------------------------------- /25. Weather_App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/.idea/misc.xml -------------------------------------------------------------------------------- /25. Weather_App/README.md: -------------------------------------------------------------------------------- 1 | ![UI](https://res.cloudinary.com/deizvfuha/image/upload/v1721926194/maxresdefault_fn73av.jpg) 2 | -------------------------------------------------------------------------------- /25. Weather_App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /25. Weather_App/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/build.gradle.kts -------------------------------------------------------------------------------- /25. Weather_App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/proguard-rules.pro -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/drawable/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/drawable/background.jpeg -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /25. Weather_App/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /25. Weather_App/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/build.gradle.kts -------------------------------------------------------------------------------- /25. Weather_App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/gradle.properties -------------------------------------------------------------------------------- /25. Weather_App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /25. Weather_App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /25. Weather_App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/gradlew -------------------------------------------------------------------------------- /25. Weather_App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/gradlew.bat -------------------------------------------------------------------------------- /25. Weather_App/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/25. Weather_App/settings.gradle.kts -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/.gitignore -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/.name: -------------------------------------------------------------------------------- 1 | listview-spinner-autocomplete -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/.idea/aws.xml -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/.idea/compiler.xml -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/.idea/gradle.xml -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/.idea/misc.xml -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/.idea/sonarlint/securityhotspotstore/f/8/f851144a386ad39d284852444c31247d8603bcea: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/app/build.gradle -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/build.gradle -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/gradle.properties -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/gradlew -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/gradlew.bat -------------------------------------------------------------------------------- /3. ListView_Spinner_AutocompleteTextView/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/3. ListView_Spinner_AutocompleteTextView/settings.gradle -------------------------------------------------------------------------------- /4. Intent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.gitignore -------------------------------------------------------------------------------- /4. Intent/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /4. Intent/.idea/.name: -------------------------------------------------------------------------------- 1 | 48 Intent -------------------------------------------------------------------------------- /4. Intent/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/aws.xml -------------------------------------------------------------------------------- /4. Intent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/compiler.xml -------------------------------------------------------------------------------- /4. Intent/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /4. Intent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/gradle.xml -------------------------------------------------------------------------------- /4. Intent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/misc.xml -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/issuestore/d/1/d10a1b4a39e2908a5b95dd8df09334d2d43ec5ca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/securityhotspotstore/5/3/538f5d8747c3398dcddb43ecc13fb7dece1b8cdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/securityhotspotstore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/securityhotspotstore/d/1/d10a1b4a39e2908a5b95dd8df09334d2d43ec5ca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4. Intent/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /4. Intent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /4. Intent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/build.gradle -------------------------------------------------------------------------------- /4. Intent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/proguard-rules.pro -------------------------------------------------------------------------------- /4. Intent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/layout/second_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/layout/second_activity.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /4. Intent/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /4. Intent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/build.gradle -------------------------------------------------------------------------------- /4. Intent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/gradle.properties -------------------------------------------------------------------------------- /4. Intent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /4. Intent/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /4. Intent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/gradlew -------------------------------------------------------------------------------- /4. Intent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/gradlew.bat -------------------------------------------------------------------------------- /4. Intent/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/4. Intent/settings.gradle -------------------------------------------------------------------------------- /5. RegistrationForm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.gitignore -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/.name: -------------------------------------------------------------------------------- 1 | 3. Registration Form -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/aws.xml -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/compiler.xml -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/gradle.xml -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/misc.xml -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /5. RegistrationForm/.idea/sonarlint/securityhotspotstore/c/b/cb0958830865f97508ce48c1498a86f225b8a0c4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5. RegistrationForm/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /5. RegistrationForm/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/build.gradle -------------------------------------------------------------------------------- /5. RegistrationForm/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/proguard-rules.pro -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /5. RegistrationForm/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /5. RegistrationForm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/build.gradle -------------------------------------------------------------------------------- /5. RegistrationForm/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/gradle.properties -------------------------------------------------------------------------------- /5. RegistrationForm/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /5. RegistrationForm/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /5. RegistrationForm/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/gradlew -------------------------------------------------------------------------------- /5. RegistrationForm/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/gradlew.bat -------------------------------------------------------------------------------- /5. RegistrationForm/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/5. RegistrationForm/settings.gradle -------------------------------------------------------------------------------- /6. CourseSelection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.gitignore -------------------------------------------------------------------------------- /6. CourseSelection/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /6. CourseSelection/.idea/.name: -------------------------------------------------------------------------------- 1 | 4. Course Selection -------------------------------------------------------------------------------- /6. CourseSelection/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.idea/aws.xml -------------------------------------------------------------------------------- /6. CourseSelection/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.idea/compiler.xml -------------------------------------------------------------------------------- /6. CourseSelection/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /6. CourseSelection/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.idea/gradle.xml -------------------------------------------------------------------------------- /6. CourseSelection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/.idea/misc.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /6. CourseSelection/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/build.gradle -------------------------------------------------------------------------------- /6. CourseSelection/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/proguard-rules.pro -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /6. CourseSelection/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /6. CourseSelection/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/build.gradle -------------------------------------------------------------------------------- /6. CourseSelection/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/gradle.properties -------------------------------------------------------------------------------- /6. CourseSelection/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /6. CourseSelection/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /6. CourseSelection/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/gradlew -------------------------------------------------------------------------------- /6. CourseSelection/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/gradlew.bat -------------------------------------------------------------------------------- /6. CourseSelection/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/6. CourseSelection/settings.gradle -------------------------------------------------------------------------------- /7. Vote Elgiible App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.gitignore -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/.name: -------------------------------------------------------------------------------- 1 | Vote Elgiible App -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.idea/aws.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.idea/compiler.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.idea/gradle.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/.idea/misc.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/build.gradle -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/proguard-rules.pro -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /7. Vote Elgiible App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/build.gradle -------------------------------------------------------------------------------- /7. Vote Elgiible App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/gradle.properties -------------------------------------------------------------------------------- /7. Vote Elgiible App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /7. Vote Elgiible App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /7. Vote Elgiible App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/gradlew -------------------------------------------------------------------------------- /7. Vote Elgiible App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/gradlew.bat -------------------------------------------------------------------------------- /7. Vote Elgiible App/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/7. Vote Elgiible App/settings.gradle -------------------------------------------------------------------------------- /8. Cake App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.gitignore -------------------------------------------------------------------------------- /8. Cake App/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /8. Cake App/.idea/.name: -------------------------------------------------------------------------------- 1 | Cake App -------------------------------------------------------------------------------- /8. Cake App/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/aws.xml -------------------------------------------------------------------------------- /8. Cake App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/compiler.xml -------------------------------------------------------------------------------- /8. Cake App/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /8. Cake App/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/gradle.xml -------------------------------------------------------------------------------- /8. Cake App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/misc.xml -------------------------------------------------------------------------------- /8. Cake App/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /8. Cake App/.idea/sonarlint/securityhotspotstore/1/9/19fdab86f5449f30e61da06013889f550874cbcb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Cake App/.idea/sonarlint/securityhotspotstore/2/b/2bad8627eea9ff17262f7ca70b83f0d8ebef040d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Cake App/.idea/sonarlint/securityhotspotstore/c/9/c91e816bb41098ade4a14744739e437477a8e0a0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8. Cake App/.idea/sonarlint/securityhotspotstore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/.idea/sonarlint/securityhotspotstore/index.pb -------------------------------------------------------------------------------- /8. Cake App/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /8. Cake App/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/build.gradle -------------------------------------------------------------------------------- /8. Cake App/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/proguard-rules.pro -------------------------------------------------------------------------------- /8. Cake App/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /8. Cake App/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /8. Cake App/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/build.gradle -------------------------------------------------------------------------------- /8. Cake App/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/gradle.properties -------------------------------------------------------------------------------- /8. Cake App/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /8. Cake App/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /8. Cake App/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/gradlew -------------------------------------------------------------------------------- /8. Cake App/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/gradlew.bat -------------------------------------------------------------------------------- /8. Cake App/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/8. Cake App/settings.gradle -------------------------------------------------------------------------------- /9. BroadcastReciever/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.gitignore -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/.name: -------------------------------------------------------------------------------- 1 | Broadcast Reciever -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.idea/aws.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.idea/compiler.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.idea/gradle.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.idea/misc.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/sonarlint/securityhotspotstore/2/a/2a71ee7475510f0171f61df008d4736dc40189b0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9. BroadcastReciever/.idea/sonarlint/securityhotspotstore/f/e/fe47b6af78980d3889e829d7af1487b896499863: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /9. BroadcastReciever/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /9. BroadcastReciever/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/build.gradle -------------------------------------------------------------------------------- /9. BroadcastReciever/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/proguard-rules.pro -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /9. BroadcastReciever/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/build.gradle -------------------------------------------------------------------------------- /9. BroadcastReciever/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/gradle.properties -------------------------------------------------------------------------------- /9. BroadcastReciever/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /9. BroadcastReciever/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /9. BroadcastReciever/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/gradlew -------------------------------------------------------------------------------- /9. BroadcastReciever/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/gradlew.bat -------------------------------------------------------------------------------- /9. BroadcastReciever/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/9. BroadcastReciever/settings.gradle -------------------------------------------------------------------------------- /BroadcastReviever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/BroadcastReviever.java -------------------------------------------------------------------------------- /CSE3075_MAD_ First Set Experiments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ First Set Experiments.pdf -------------------------------------------------------------------------------- /CSE3075_MAD_ Second Set Experiments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ Second Set Experiments.pdf -------------------------------------------------------------------------------- /CSE3075_MAD_ fifth Set Experiments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ fifth Set Experiments.pdf -------------------------------------------------------------------------------- /CSE3075_MAD_ fifth Set Experiments1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ fifth Set Experiments1.pdf -------------------------------------------------------------------------------- /CSE3075_MAD_ fourth Set Experiments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ fourth Set Experiments.pdf -------------------------------------------------------------------------------- /CSE3075_MAD_ updated third Set Experiments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/CSE3075_MAD_ updated third Set Experiments.pdf -------------------------------------------------------------------------------- /Database with components.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Database with components.zip -------------------------------------------------------------------------------- /Database with components/Databasewithcomponents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Database with components/Databasewithcomponents/.gitignore -------------------------------------------------------------------------------- /Database with components/Databasewithcomponents/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Database with components/Databasewithcomponents/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Database with components/Databasewithcomponents/gradlew -------------------------------------------------------------------------------- /Database with components/Databasewithcomponents/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Database with components/Databasewithcomponents/gradlew.bat -------------------------------------------------------------------------------- /Experiment 9 menu (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Experiment 9 menu (1).pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/LICENSE -------------------------------------------------------------------------------- /PracticeFragment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.gitignore -------------------------------------------------------------------------------- /PracticeFragment/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /PracticeFragment/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/aws.xml -------------------------------------------------------------------------------- /PracticeFragment/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/compiler.xml -------------------------------------------------------------------------------- /PracticeFragment/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /PracticeFragment/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/gradle.xml -------------------------------------------------------------------------------- /PracticeFragment/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/misc.xml -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/issuestore/0/f/0f627a51e5efa34efa9b1450cc9f5372dcaa2ac6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/issuestore/7/e/7e55a9e8e34545313019ca7dd190c6fd988f6a16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/securityhotspotstore/0/f/0f627a51e5efa34efa9b1450cc9f5372dcaa2ac6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/securityhotspotstore/7/e/7e55a9e8e34545313019ca7dd190c6fd988f6a16: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/.idea/sonarlint/securityhotspotstore/9/2/921302f5596efca2485a58c7d6f449816444531e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /PracticeFragment/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/build.gradle.kts -------------------------------------------------------------------------------- /PracticeFragment/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/proguard-rules.pro -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/java/com/example/Fragment3.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/layout/fragment_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/layout/fragment_1.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/layout/fragment_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/layout/fragment_2.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /PracticeFragment/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /PracticeFragment/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/build.gradle.kts -------------------------------------------------------------------------------- /PracticeFragment/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/gradle.properties -------------------------------------------------------------------------------- /PracticeFragment/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PracticeFragment/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /PracticeFragment/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/gradlew -------------------------------------------------------------------------------- /PracticeFragment/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/gradlew.bat -------------------------------------------------------------------------------- /PracticeFragment/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/PracticeFragment/settings.gradle.kts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/README.md -------------------------------------------------------------------------------- /ToDOlist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/ToDOlist.java -------------------------------------------------------------------------------- /Viva.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/Viva.java -------------------------------------------------------------------------------- /animation.java: -------------------------------------------------------------------------------- 1 | public class animation { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /database.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/database.java -------------------------------------------------------------------------------- /intent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/intent.java -------------------------------------------------------------------------------- /medaiplayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/medaiplayer.java -------------------------------------------------------------------------------- /notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/notification.java -------------------------------------------------------------------------------- /sharedPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkashKobal/android-development/HEAD/sharedPreference.java -------------------------------------------------------------------------------- /viva.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------