├── .idea ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── Activity Related Stuff ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── activityrelatedstuff │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── activityrelatedstuff │ │ │ │ ├── FirstActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondActivity.java │ │ │ │ └── SecondSupportActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── first_activity.xml │ │ │ └── second_support_activity.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── activityrelatedstuff │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── ActivityLifeCycle ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── activitylifecycle │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── activitylifecycle │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── activitylifecycle │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AlarmManagerDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── alarmmanagerdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── alarmmanagerdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── second_layout.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── alarmmanagerdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── AutoCompleteTextView ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── autocompetetextviewdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── autocompetetextviewdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── autocompetetextviewdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BackGroundThreadDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── backgroundthreaddemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── backgroundthreaddemo │ │ │ │ ├── AsyncTaskCallbacks.java │ │ │ │ ├── AsyncTaskRetainActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── TaskFragment.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── fragment.xml │ │ │ └── retain_task_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── backgroundthreaddemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BottomSheetDemo ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── bottomsheetdemp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── bottomsheetdemp │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── bottom_sheet.xml │ │ │ └── conent_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── bottomsheetdemp │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BoundServiceDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── boundservicedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── boundservicedemo │ │ │ │ ├── LocationBoundService.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── location_icon.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── boundservicedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BoundServiceDemo2 ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── boundservicedemo2 │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── boundservicedemo2 │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Services │ │ │ │ ├── MyLocationService.java │ │ │ │ └── TimerService.java │ │ │ │ └── Utility │ │ │ │ └── LocationUtility.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── boundservicedemo2 │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── BroadcastReceiver ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── BroadcastReceiver.iml ├── READ.md ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── broadcastreceiver │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── broadcastreceiver │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── illuminati │ │ └── broadcastreceiver │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── ConstraintLayout ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── constraintlayout │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── constraintlayout │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── cat.png │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── toolbar.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── constraintlayout │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Dagger 2 ├── Readme.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── dagger2demo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── dagger2demo │ │ │ │ ├── AuthActivity.java │ │ │ │ ├── BaseApplication.java │ │ │ │ ├── di │ │ │ │ ├── ActivityBuilderModule.java │ │ │ │ ├── AppComponent.java │ │ │ │ ├── AppModule.java │ │ │ │ └── ViewModelFactoryModule.java │ │ │ │ └── viewmodels │ │ │ │ ├── AuthViewModel.java │ │ │ │ └── ViewModelProviderFactory.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── cat_logo.jpeg │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_auth.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── dagger2demo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Demo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohksin │ │ │ └── demo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohksin │ │ │ │ └── demo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohksin │ │ └── demo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DialogDemo ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Readme.Md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── dialogdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── dialogdemo │ │ │ │ ├── FireMissilesDialog.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── YesNoClickListner.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── dialogdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DoubleTapListener ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── doubletaplistener │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── doubletaplistener │ │ │ │ ├── DoubleTapListener │ │ │ │ ├── DoubleTapCallback.java │ │ │ │ └── DoubleTapListener.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── doubletaplistener │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Drag_and_Drop ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Readme.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── asu │ │ │ └── drag_and_drop │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── asu │ │ │ │ └── drag_and_drop │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── cat.jpg │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── asu │ │ └── drag_and_drop │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FireBaseAuthentication ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohksin │ │ │ └── firebaseauthentication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohksin │ │ │ │ └── firebaseauthentication │ │ │ │ ├── MainActivity.java │ │ │ │ └── ProfileActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── profile.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohksin │ │ └── firebaseauthentication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FireBaseRealTimeDB ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohksin │ │ │ └── firebaserealtimedb │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohksin │ │ │ │ └── firebaserealtimedb │ │ │ │ ├── FireBaseAuthActivity.java │ │ │ │ ├── FireBaseStorageActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Movie.java │ │ │ │ ├── ProfileActivity.java │ │ │ │ └── SecondActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── demo_image.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── auth_activity.xml │ │ │ ├── content_main.xml │ │ │ ├── profile.xml │ │ │ ├── second_activity.xml │ │ │ └── storage_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohksin │ │ └── firebaserealtimedb │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FireBaseRealTimeDataBase ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohksin │ │ │ └── firebaserealtimedatabase │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohksin │ │ │ │ └── firebaserealtimedatabase │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohksin │ │ └── firebaserealtimedatabase │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Fragment Related Stuff ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── fragmentrelatedstuff │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── fragmentrelatedstuff │ │ │ │ ├── Activities │ │ │ │ ├── DialogActivity.java │ │ │ │ ├── FirstActivity.java │ │ │ │ ├── FragmentCommunicationActivity.java │ │ │ │ ├── FragmentMethodsActivity.java │ │ │ │ ├── InheritanceFragmentActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondActivity.java │ │ │ │ └── ThirdActivity.java │ │ │ │ ├── Dialogs │ │ │ │ ├── ValidationDialog.java │ │ │ │ └── ValidationFrgamentDialog.java │ │ │ │ ├── Fragments │ │ │ │ ├── BasicFragment.java │ │ │ │ ├── ChildFragment1.java │ │ │ │ ├── CounterControllerFragment.java │ │ │ │ ├── StringReverseFragment.java │ │ │ │ ├── TextDisplayFragment.java │ │ │ │ ├── UserNameFragment.java │ │ │ │ └── WelcomeUserFragment.java │ │ │ │ └── Listener │ │ │ │ ├── ContollerListerner.java │ │ │ │ └── NextButtonListener.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── counter_controller_frag_layout.xml │ │ │ ├── dialog_activity.xml │ │ │ ├── first_activity.xml │ │ │ ├── fragment_comm_activity_layout.xml │ │ │ ├── fragment_methods_layout.xml │ │ │ ├── reverse_activity_layout.xml │ │ │ ├── reverse_fragment_layout.xml │ │ │ ├── text_display_fragment_layout.xml │ │ │ ├── user_name_fragment.xml │ │ │ └── welcome_user_fragment.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── fragmentrelatedstuff │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── FragmentExample ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── fragmentdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── fragmentdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyFragment.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── fragment.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── fragmentdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── GPSLocationDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── gpslocationdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── gpslocationdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── gpslocationdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── GPSMapDemo ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── gpsmapdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── gpsmapdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── gpsmapdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Google Map Marker Demo ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Readme.Md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── googlemarkerdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── debug │ │ └── res │ │ │ └── values │ │ │ └── google_maps_api.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── googlemarkerdemo │ │ │ │ └── MapsActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── dot.png │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_maps.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── release │ │ └── res │ │ │ └── values │ │ │ └── google_maps_api.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── googlemarkerdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── GooglePlayServicesLocationAPIDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── googleplayserviceslocationapidemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── googleplayserviceslocationapidemo │ │ │ │ ├── Constants.java │ │ │ │ ├── GeoCodingService.java │ │ │ │ ├── GetLocationUpdateActiivity.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── googleplayserviceslocationapidemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Gson Demo ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── asudsc │ │ │ └── gsondemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── case1.json │ │ │ ├── case2.json │ │ │ ├── case3.json │ │ │ ├── case4.json │ │ │ └── case5.json │ │ ├── java │ │ │ └── com │ │ │ │ └── asudsc │ │ │ │ └── gsondemo │ │ │ │ ├── Case1User.java │ │ │ │ ├── Case2User.java │ │ │ │ ├── Case3Restaurant.java │ │ │ │ ├── Case4User.java │ │ │ │ ├── Case5Currency.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── asudsc │ │ └── gsondemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── HTMLTextRender ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Readme.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── htmltextrender │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── htmltextrender │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── htmltextrender │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Inheritance ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Inheritance.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── omdb │ │ │ └── rohksin │ │ │ └── inheritance │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── omdb │ │ │ │ └── rohksin │ │ │ │ └── inheritance │ │ │ │ ├── AnimationActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── OtherActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── other_layout.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── omdb │ │ └── rohksin │ │ └── inheritance │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── IntentServiceDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── intentservicedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── intentservicedemo │ │ │ │ ├── DemoBoundService.java │ │ │ │ ├── DemoForeGroundService.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondActivity.java │ │ │ │ ├── StickyService.java │ │ │ │ ├── ThirdActivity.java │ │ │ │ └── TimerService.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── second_activity_layout.xml │ │ │ └── third_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── intentservicedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Intro Screen ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── introscreendemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── introscreendemo │ │ │ │ ├── DialView.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── introscreendemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── JobSchedulerDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── jobschedulerdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── jobschedulerdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyJobSevice.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── jobschedulerdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Justify Text ├── Readme.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── justifytext │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── justifytext │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── justifytext │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Kotlin + Couroutine + Retrofit ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── retrofit_coroutine │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── retrofit_coroutine │ │ │ │ ├── models │ │ │ │ └── Todo.kt │ │ │ │ ├── networks │ │ │ │ ├── RetrofitClient.kt │ │ │ │ └── Webservice.kt │ │ │ │ ├── repositories │ │ │ │ └── TodoRepository.kt │ │ │ │ ├── viewmodels │ │ │ │ └── MainViewModel.kt │ │ │ │ └── views │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── retrofit_coroutine │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Kotlin_Basic_Example ├── .gitignore ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── asu │ │ │ └── kotlin_basic_example │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── asu │ │ │ │ └── kotlin_basic_example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SecondActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── asu │ │ └── kotlin_basic_example │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Lottie Animation ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── lottieanimationdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── loading-state.json │ │ │ ├── loading.json │ │ │ └── movie.json │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── lottieanimationdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── lottieanimationdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MVVM ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohiksingh │ │ │ └── com │ │ │ └── mvvmdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohiksingh │ │ │ │ └── com │ │ │ │ └── mvvmdemo │ │ │ │ ├── ListCallBack.java │ │ │ │ ├── adapters │ │ │ │ └── PlayerListAdapter.java │ │ │ │ ├── models │ │ │ │ └── Player.java │ │ │ │ ├── repositories │ │ │ │ └── PlayersRepository.java │ │ │ │ ├── viewmodels │ │ │ │ └── MainActivityViewModel.java │ │ │ │ └── views │ │ │ │ ├── DetailActivity.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── actvity_detail.xml │ │ │ └── item_list_player.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohiksingh │ │ └── com │ │ └── mvvmdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Moshi ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Moshi.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohksin │ │ │ └── moshi │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohksin │ │ │ │ └── moshi │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Person.java │ │ │ │ └── Phone.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohksin │ │ └── moshi │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Multi_Language_Support ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── multilanguagesupport │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── multilanguagesupport │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── flag.png │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-hi-rIN │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── multilanguagesupport │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MyApplication ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── swipablerecyclerview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── swipablerecyclerview │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Model.java │ │ │ │ ├── MyAdapter.java │ │ │ │ └── RecyclerItemTouchHelper.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ └── list_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── swipablerecyclerview │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── MyLibrary ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── MyLibrary.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── omdb │ │ │ └── rohksin │ │ │ └── mylibrary │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── omdb │ │ │ │ └── rohksin │ │ │ │ └── mylibrary │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── omdb │ │ └── rohksin │ │ └── mylibrary │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── sos │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── sos.iml │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── omdb │ │ └── rohksin │ │ └── sos │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── omdb │ │ │ └── rohksin │ │ │ └── sos │ │ │ └── SOSView.java │ └── res │ │ ├── layout │ │ └── sos_view.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── omdb │ └── rohksin │ └── sos │ └── ExampleUnitTest.java ├── NavigationDrawer ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── navigationdrawer │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── navigationdrawer │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── navigationdrawer │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── NetworkingLibraryDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── networkinglibrarydemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── networkinglibrarydemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── networkinglibrarydemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── NewFirebaseTutorial ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── asu │ │ │ └── firebasetutorial │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── asu │ │ │ │ └── firebasetutorial │ │ │ │ ├── CloudStoreActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MusicActivity.java │ │ │ │ ├── People.java │ │ │ │ └── Song.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_cloudstore.xml │ │ │ ├── activity_main.xml │ │ │ └── music_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ └── song.mp3 │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── asu │ │ └── firebasetutorial │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── NotificationDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── notificationdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── notificationdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── big_pic.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── notificationdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── PhotoHider ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── photohider │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── photohider │ │ │ │ ├── AdjustnigImage.java │ │ │ │ ├── ImageDownloadService.java │ │ │ │ ├── LinkAdapter.java │ │ │ │ ├── LinkSaver.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── PhotoAdapter.java │ │ │ │ ├── PhotoData.java │ │ │ │ ├── PhotoDatabase.java │ │ │ │ ├── PhotoListActivity.java │ │ │ │ └── PhotoUtility.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── phot_save_layout.xml │ │ │ ├── photo_list_activity.xml │ │ │ ├── saved_link_item.xml │ │ │ └── test_list_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── photohider │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── RXJava ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── rxjavademo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── rxjavademo │ │ │ │ ├── basic │ │ │ │ ├── DataSource.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── Task.java │ │ │ │ ├── createObservable │ │ │ │ └── MessageActivity.java │ │ │ │ └── flatmap │ │ │ │ ├── PostListActivity.java │ │ │ │ ├── RVAdapter.java │ │ │ │ ├── models │ │ │ │ ├── Comment.java │ │ │ │ └── Post.java │ │ │ │ └── requests │ │ │ │ ├── RequestAPI.java │ │ │ │ └── ServiceGenerator.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_message.xml │ │ │ ├── activity_post_list.xml │ │ │ └── item_post_list.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── rxjavademo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── RecyclerViewDemo ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohiksingh │ │ │ └── com │ │ │ └── recyclerviewdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohiksingh │ │ │ │ └── com │ │ │ │ └── recyclerviewdemo │ │ │ │ ├── Activities │ │ │ │ ├── DetailActivity.java │ │ │ │ └── ListActivity.java │ │ │ │ ├── Adapters │ │ │ │ └── PeopleListAdapter.java │ │ │ │ ├── Callbacks │ │ │ │ └── ListCallback.java │ │ │ │ ├── Models │ │ │ │ └── Person.java │ │ │ │ └── Utilities │ │ │ │ └── AppUtility.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_detail.xml │ │ │ ├── activity_list.xml │ │ │ └── list_people_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohiksingh │ │ └── com │ │ └── recyclerviewdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── RecyclerViewPagination ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Readme.Md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── rohitksingh │ │ │ └── recyclerviewpagination │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rohitksingh │ │ │ │ └── recyclerviewpagination │ │ │ │ ├── MainActivity.java │ │ │ │ ├── PaginationCallback.java │ │ │ │ ├── Player.java │ │ │ │ ├── PlayerAdapter.java │ │ │ │ └── Server.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── item_player.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── recyclerviewpagination │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Retrofit2 Demo ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── asudsc │ │ │ └── retrofit2demo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── asudsc │ │ │ │ └── retrofit2demo │ │ │ │ ├── MainActivity.java │ │ │ │ ├── PlaceHolderClient.java │ │ │ │ ├── Post.java │ │ │ │ └── RestClient.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── asudsc │ │ └── retrofit2demo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── SQLiteDatabaseDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── sqlitedatabasedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── sqlitedatabasedemo │ │ │ │ ├── ContentProviderActivityDemo.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Music.java │ │ │ │ ├── MyContentProvider.java │ │ │ │ ├── MyDatabaseHelper.java │ │ │ │ ├── People.java │ │ │ │ └── PeopleAdapter.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── add_dialog.xml │ │ │ ├── content_main.xml │ │ │ └── people_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── sqlitedatabasedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── SearchViewDemo ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── searchviewdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── searchviewdemo │ │ │ │ ├── MainActivity.java │ │ │ │ └── PeopleAdapter.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── people_list_item.xml │ │ │ ├── menu │ │ │ ├── bottom_menu.xml │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── searchviewdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Service Related Stuff ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── servicerelatedstuff │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── servicerelatedstuff │ │ │ │ ├── Activities │ │ │ │ ├── FCMActivity.java │ │ │ │ ├── FirstActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ │ │ └── Services │ │ │ │ ├── MyFirebaseInstanceIDService.java │ │ │ │ ├── MyFirebaseMessaginService.java │ │ │ │ ├── TimerIntentService.java │ │ │ │ └── TimerService.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── fcm_activity.xml │ │ │ └── first_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── servicerelatedstuff │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Services ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Services.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── services │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── services │ │ │ │ ├── MainActivity.java │ │ │ │ └── Services │ │ │ │ └── MyService.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── illuminati │ │ └── services │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Swipe_To_Delete ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohiksingh │ │ │ └── com │ │ │ └── recyclerviewdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohiksingh │ │ │ │ └── com │ │ │ │ └── recyclerviewdemo │ │ │ │ ├── Activities │ │ │ │ ├── DetailActivity.java │ │ │ │ └── ListActivity.java │ │ │ │ ├── Adapters │ │ │ │ └── PeopleListAdapter.java │ │ │ │ ├── Callbacks │ │ │ │ ├── ListCallback.java │ │ │ │ └── SwipeListener.java │ │ │ │ ├── Models │ │ │ │ └── Person.java │ │ │ │ └── Utilities │ │ │ │ └── AppUtility.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── icon_delete.png │ │ │ ├── layout │ │ │ ├── activity_detail.xml │ │ │ ├── activity_list.xml │ │ │ └── list_people_item.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohiksingh │ │ └── com │ │ └── recyclerviewdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Transition ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── READ.md ├── Transition.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── omdb │ │ │ └── rohksin │ │ │ └── transitionapi │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── omdb │ │ │ │ └── rohksin │ │ │ │ └── transitionapi │ │ │ │ ├── ListActivity.java │ │ │ │ ├── ListAdapter.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── media.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── content_main.xml │ │ │ ├── custom_row.xml │ │ │ └── list_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── omdb │ │ └── rohksin │ │ └── transitionapi │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── UI_Stuff ├── CoordinatorLayout │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── CoordinatorLayout.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── coordinatorlayout │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── illuminati │ │ │ │ │ └── coordinatorlayout │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── cat.jpg │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── content_main.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── coordinatorlayout │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── GooglePlayTabLayout │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── GooglePlayTabLayout.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── googletabs │ │ │ │ └── rohksin │ │ │ │ └── googleplaytablayout │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── googletabs │ │ │ │ │ └── rohksin │ │ │ │ │ └── googleplaytablayout │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MediaAdapter.java │ │ │ │ │ └── MediaFragment.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── content_main.xml │ │ │ │ └── media_display_fragment.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── googletabs │ │ │ └── rohksin │ │ │ └── googleplaytablayout │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RecyclerView │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── RecyclerView.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── recyclerview │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── illuminati │ │ │ │ │ └── recyclerview │ │ │ │ │ ├── Data.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── Person.java │ │ │ │ │ └── RvAdapter.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── user.png │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── content_main.xml │ │ │ │ └── single_row.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── recyclerview │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Themes │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml │ ├── READ.md │ ├── Themes.iml │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── stylethemes │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AtlantideStarlight.ttf │ │ │ │ ├── Oswald-Stencbab.ttf │ │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ │ ├── RobotoCondensed-Regular.ttf │ │ │ │ └── o.ttf │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── stylethemes │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── back.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── illuminati │ │ └── stylethemes │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── VibrationDemo ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohitksingh │ │ │ └── com │ │ │ └── vibrationdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohitksingh │ │ │ │ └── com │ │ │ │ └── vibrationdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohitksingh │ │ └── com │ │ └── vibrationdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Volley ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── Volley.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── illuminati │ │ │ └── volley │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── illuminati │ │ │ │ └── volley │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── back.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── illuminati │ │ └── volley │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── WebView ├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── rohitksingh │ │ └── webviewdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── rohitksingh │ │ │ └── webviewdemo │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── rohitksingh │ └── webviewdemo │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Activity Related Stuff/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity Related Stuff/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Activity Related Stuff/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity Related Stuff/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Activity Related Stuff 3 | 4 | -------------------------------------------------------------------------------- /Activity Related Stuff/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Activity Related Stuff/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ActivityLifeCycle/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /ActivityLifeCycle/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /ActivityLifeCycle/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifeCycle/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ActivityLifeCycle 3 | 4 | -------------------------------------------------------------------------------- /ActivityLifeCycle/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ActivityLifeCycle/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ActivityLifeCycle/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AlarmManagerDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AlarmManagerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /AlarmManagerDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AlarmManagerDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /AlarmManagerDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AlarmManagerDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AlarmManagerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AutoCompleteTextView/.idea/.name: -------------------------------------------------------------------------------- 1 | AutoCompeteTextView Demo -------------------------------------------------------------------------------- /AutoCompleteTextView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AutoCompleteTextView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AutoCompleteTextView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AutoCompleteTextView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AutoCompleteTextView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AutoCompleteTextView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AutoCompleteTextView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AutoCompleteTextView/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /AutoCompleteTextView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AutoCompeteTextView Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /AutoCompleteTextView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/AutoCompleteTextView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AutoCompleteTextView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='AutoCompeteTextView Demo' 3 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BackGroundThreadDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BackGroundThreadDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BackGroundThreadDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BackGroundThread Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BackGroundThreadDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BackGroundThreadDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | BottomSheet Demp -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BottomSheetDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /BottomSheetDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BottomSheet Demp 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /BottomSheetDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BottomSheetDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BottomSheetDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='BottomSheet Demp' 3 | -------------------------------------------------------------------------------- /BoundServiceDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BoundServiceDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/drawable/location_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/drawable/location_icon.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /BoundServiceDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BoundServiceDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /BoundServiceDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BoundServiceDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BoundServiceDemo2/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /BoundServiceDemo2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BoundServiceDemo2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /BoundServiceDemo2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BoundServiceDemo2 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /BoundServiceDemo2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BoundServiceDemo2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BoundServiceDemo2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BroadcastReceiver/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/.name: -------------------------------------------------------------------------------- 1 | BroadcastReceiver -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BroadcastReceiver/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BroadcastReceiver/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BroadcastReceiver 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /BroadcastReceiver/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/BroadcastReceiver/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BroadcastReceiver/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ConstraintLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/drawable/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/drawable/cat.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ConstraintLayout/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /ConstraintLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/ConstraintLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ConstraintLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "ConstraintLayout" -------------------------------------------------------------------------------- /Dagger 2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/drawable/cat_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/drawable/cat_logo.jpeg -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Dagger 2 Demo 3 | -------------------------------------------------------------------------------- /Dagger 2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Dagger 2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dagger 2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Dagger 2 Demo" -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Demo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Demo 3 | 4 | -------------------------------------------------------------------------------- /Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DialogDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DialogDemo/Readme.Md: -------------------------------------------------------------------------------- 1 | ## Result: 2 | ![ezgif com-resize (6)](https://user-images.githubusercontent.com/11274840/74208070-4b685200-4c3f-11ea-9074-8ba2d81078bc.gif) 3 | -------------------------------------------------------------------------------- /DialogDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /DialogDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DialogDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /DialogDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DialogDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DialogDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='DialogDemo' 3 | -------------------------------------------------------------------------------- /DoubleTapListener/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /DoubleTapListener/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /DoubleTapListener/README.md: -------------------------------------------------------------------------------- 1 | ## Double Tap Listener Implementation 2 | ![double-tap](https://user-images.githubusercontent.com/11274840/66709961-99b62480-ed23-11e9-90a9-2c3fe87245bc.gif) 3 | -------------------------------------------------------------------------------- /DoubleTapListener/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DoubleTapListener/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DoubleTapListener 3 | 4 | -------------------------------------------------------------------------------- /DoubleTapListener/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/DoubleTapListener/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DoubleTapListener/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Drag_and_Drop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/drawable/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/drawable/cat.jpg -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Drag_and_Drop/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Drag_and_Drop 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Drag_and_Drop/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Drag_and_Drop/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Drag_and_Drop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Drag_and_Drop' 3 | -------------------------------------------------------------------------------- /FireBaseAuthentication/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FireBaseAuthentication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FireBaseAuthentication/README.md: -------------------------------------------------------------------------------- 1 | # FireBase Authentication Demo App 2 | ![authdemo](https://user-images.githubusercontent.com/11274840/32414324-07be8eb8-c1d9-11e7-9fc0-cb3be44cd4b7.jpg) 3 | -------------------------------------------------------------------------------- /FireBaseAuthentication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseAuthentication/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /FireBaseAuthentication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseAuthentication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FireBaseAuthentication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/drawable/demo_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/drawable/demo_image.jpg -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FireBase RealTimeDB 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDB/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FireBaseRealTimeDB/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FireBase RealTime DataBase 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FireBaseRealTimeDataBase/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Fragment Related Stuff/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Fragment Related Stuff/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Fragment Related Stuff/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Fragment Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Fragment Related Stuff/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Fragment Related Stuff 3 | 4 | -------------------------------------------------------------------------------- /Fragment Related Stuff/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Fragment Related Stuff/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fragment Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FragmentExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /FragmentExample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /FragmentExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /FragmentExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FragmentDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /FragmentExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/FragmentExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FragmentExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GPSLocationDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /GPSLocationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /GPSLocationDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GPS Location Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /GPSLocationDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSLocationDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GPSLocationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GPSMapDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /GPSMapDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /GPSMapDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GPS Map Demo 3 | 4 | -------------------------------------------------------------------------------- /GPSMapDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/GPSMapDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GPSMapDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Google Map Marker Demo/.idea/.name: -------------------------------------------------------------------------------- 1 | GoogleMarkerDemo -------------------------------------------------------------------------------- /Google Map Marker Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Google Map Marker Demo/app/src/main/res/drawable/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Google Map Marker Demo/app/src/main/res/drawable/dot.png -------------------------------------------------------------------------------- /Google Map Marker Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GoogleMarkerDemo 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /Google Map Marker Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Google Map Marker Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Google Map Marker Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='GoogleMarkerDemo' 3 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Gson Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Norman", 3 | "email": "norman@futurestud.io", 4 | "age": 26, 5 | "isDeveloper": true 6 | } -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Gson Demo 3 | -------------------------------------------------------------------------------- /Gson Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Gson Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Gson Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Gson Demo" -------------------------------------------------------------------------------- /HTMLTextRender/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HTMLTextRender/Readme.md: -------------------------------------------------------------------------------- 1 | # HTML Rendering in TextView 2 | Screenshot 2020-05-18 at 1 02 16 AM 3 | -------------------------------------------------------------------------------- /HTMLTextRender/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTMLTextRender/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /HTMLTextRender/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/HTMLTextRender/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HTMLTextRender/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='HTMLTextRender' 3 | -------------------------------------------------------------------------------- /Inheritance/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /Inheritance/.idea/.name: -------------------------------------------------------------------------------- 1 | Inheritance -------------------------------------------------------------------------------- /Inheritance/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Inheritance/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Inheritance/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Inheritance/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Inheritance/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Inheritance 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Inheritance/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Inheritance/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Inheritance/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /IntentServiceDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /IntentServiceDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /IntentServiceDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /IntentServiceDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | IntentServiceDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /IntentServiceDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/IntentServiceDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /IntentServiceDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Intro Screen/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Intro Screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Intro Screen/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Intro Screen/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Intro Screen/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Intro Screen Demo' 3 | -------------------------------------------------------------------------------- /JobSchedulerDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /JobSchedulerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /JobSchedulerDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | JobScheduler Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /JobSchedulerDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/JobSchedulerDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /JobSchedulerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Justify Text/Readme.md: -------------------------------------------------------------------------------- 1 | ## Preview 2 | 3 | -------------------------------------------------------------------------------- /Justify Text/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Justify Text/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /Justify Text/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Justify Text/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Justify Text/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "JustifyText" -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Retrofit-Coroutine 3 | -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Kotlin + Couroutine + Retrofit/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Retrofit-Coroutine" -------------------------------------------------------------------------------- /Kotlin_Basic_Example/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Kotlin_Basic_Example/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Kotlin_Basic_Example/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Kotlin_Basic_Example/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Kotlin_Basic_Example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Kotlin_Basic_Example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Kotlin_Basic_Example/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Kotlin_Basic_Example' 3 | -------------------------------------------------------------------------------- /Lottie Animation/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Lottie Animation/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Lottie Animation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Lottie Animation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Lottie Animation Demo 3 | 4 | -------------------------------------------------------------------------------- /Lottie Animation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Lottie Animation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Lottie Animation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MVVM/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /MVVM/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /MVVM/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MVVM/app/src/main/java/rohiksingh/com/mvvmdemo/ListCallBack.java: -------------------------------------------------------------------------------- 1 | package rohiksingh.com.mvvmdemo; 2 | 3 | public interface ListCallBack { 4 | 5 | public void click(); 6 | } 7 | -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MVVMDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /MVVM/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MVVM/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MVVM/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Moshi/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /Moshi/.idea/.name: -------------------------------------------------------------------------------- 1 | Moshi -------------------------------------------------------------------------------- /Moshi/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Moshi/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Moshi/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Moshi/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Moshi/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Moshi/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Moshi/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Moshi/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Moshi/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Moshi 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Moshi/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Moshi/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Moshi/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Multi_Language_Support/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Multi_Language_Support/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Multi_Language_Support/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Multi_Language_Support/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Multi_Language_Support/app/src/main/res/drawable/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Multi_Language_Support/app/src/main/res/drawable/flag.png -------------------------------------------------------------------------------- /Multi_Language_Support/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Multi_Language_Support/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Multi_Language_Support/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyApplication/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MyApplication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SwipableRecyclerView 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyLibrary/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /MyLibrary/.idea/.name: -------------------------------------------------------------------------------- 1 | MyLibrary -------------------------------------------------------------------------------- /MyLibrary/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MyLibrary/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyLibrary/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MyLibrary/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyLibrary 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /MyLibrary/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/MyLibrary/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyLibrary/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':sos' 2 | -------------------------------------------------------------------------------- /MyLibrary/sos/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyLibrary/sos/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SOS 3 | 4 | -------------------------------------------------------------------------------- /NavigationDrawer/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /NavigationDrawer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /NavigationDrawer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NavigationDrawer 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /NavigationDrawer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NavigationDrawer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NavigationDrawer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='NavigationDrawer' 3 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NetworkingLibraryDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NetworkingLibraryDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NetworkingLibrary Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NetworkingLibraryDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NetworkingLibraryDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/.idea/.name: -------------------------------------------------------------------------------- 1 | Firebase Tutorial -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/raw/song.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/app/src/main/res/raw/song.mp3 -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Firebase Tutorial 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NewFirebaseTutorial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NewFirebaseTutorial/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Firebase Tutorial' 3 | -------------------------------------------------------------------------------- /NotificationDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /NotificationDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NotificationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/drawable/big_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/drawable/big_pic.jpg -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /NotificationDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NotificationDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /NotificationDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/NotificationDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NotificationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PhotoHider/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /PhotoHider/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /PhotoHider/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /PhotoHider/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PhotoHider 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /PhotoHider/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/PhotoHider/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PhotoHider/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /RXJava/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /RXJava/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /RXJava/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RXJava/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RXJava/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "RXJavaDemo" -------------------------------------------------------------------------------- /RecyclerViewDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /RecyclerViewDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /RecyclerViewDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /RecyclerViewDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerViewDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /RecyclerViewDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RecyclerViewDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /RecyclerViewPagination/.idea/.name: -------------------------------------------------------------------------------- 1 | RecyclerView Pagination -------------------------------------------------------------------------------- /RecyclerViewPagination/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RecyclerViewPagination/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | -------------------------------------------------------------------------------- /RecyclerViewPagination/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/RecyclerViewPagination/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RecyclerViewPagination/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "RecyclerView Pagination" -------------------------------------------------------------------------------- /Retrofit2 Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit2 Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Retrofit2 Demo 3 | -------------------------------------------------------------------------------- /Retrofit2 Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Retrofit2 Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Retrofit2 Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Retrofit2 Demo" -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SQLiteDatabaseDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SQLiteDatabaseDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SQLiteDatabase Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SQLiteDatabaseDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SearchViewDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /SearchViewDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SearchViewDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /SearchViewDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SearchViewDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /SearchViewDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/SearchViewDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SearchViewDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Service Related Stuff/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Service Related Stuff/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Service Related Stuff/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Service Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Service Related Stuff/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Service Related Stuff/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Service Related Stuff 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Service Related Stuff/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Service Related Stuff/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Service Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Services/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /Services/.idea/.name: -------------------------------------------------------------------------------- 1 | Services -------------------------------------------------------------------------------- /Services/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Services/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Services/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Services/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Services/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Services/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Services/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Services/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Services/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Services/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Services 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Services/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Services/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Services/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Swipe_To_Delete/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/drawable/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/drawable/icon_delete.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Swipe_To_Delete/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerViewDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Swipe_To_Delete/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Swipe_To_Delete/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Swipe_To_Delete/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Transition/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /Transition/.idea/.name: -------------------------------------------------------------------------------- 1 | TransitionAPI -------------------------------------------------------------------------------- /Transition/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Transition/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Transition/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Transition/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Transition/app/src/main/res/drawable/media.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/drawable/media.jpg -------------------------------------------------------------------------------- /Transition/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Transition/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Transition/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Transition/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Transition/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Transition/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TransitionAPI 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Transition/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Transition/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Transition/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/.name: -------------------------------------------------------------------------------- 1 | CoordinatorLayout -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/app/src/main/res/drawable/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/CoordinatorLayout/app/src/main/res/drawable/cat.jpg -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CoordinatorLayout 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/CoordinatorLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.idea/.name: -------------------------------------------------------------------------------- 1 | GooglePlayTabLayout -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GooglePlayTabLayout 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/GooglePlayTabLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/.name: -------------------------------------------------------------------------------- 1 | RecyclerView -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/src/main/res/drawable/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/RecyclerView/app/src/main/res/drawable/user.png -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerView 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/RecyclerView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/.name: -------------------------------------------------------------------------------- 1 | StyleThemes -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/assets/fonts/Oswald-Stencbab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/assets/fonts/Oswald-Stencbab.ttf -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/assets/fonts/o.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/assets/fonts/o.ttf -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/drawable/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/drawable/back.jpg -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | StyleThemes 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/UI_Stuff/Themes/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UI_Stuff/Themes/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /VibrationDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /VibrationDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /VibrationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VibrationDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | VibrationDemo 3 | 4 | -------------------------------------------------------------------------------- /VibrationDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/VibrationDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /VibrationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Volley/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /Volley/.idea/.name: -------------------------------------------------------------------------------- 1 | Volley -------------------------------------------------------------------------------- /Volley/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Volley/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Volley/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Volley/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Volley/app/src/main/res/drawable/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/drawable/back.jpg -------------------------------------------------------------------------------- /Volley/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Volley/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Volley/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Volley/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Volley/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Volley/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Volley 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Volley/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/Volley/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Volley/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /WebView/.idea/.name: -------------------------------------------------------------------------------- 1 | WebView Demo -------------------------------------------------------------------------------- /WebView/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /WebView/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /WebView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WebView Demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /WebView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/9f59d996689b988d4f95e931bf457ba7ba544aeb/WebView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WebView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='WebView Demo' 3 | --------------------------------------------------------------------------------