├── .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/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Activity Related Stuff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/.gitignore -------------------------------------------------------------------------------- /Activity Related Stuff/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/.idea/gradle.xml -------------------------------------------------------------------------------- /Activity Related Stuff/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/.idea/misc.xml -------------------------------------------------------------------------------- /Activity Related Stuff/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/.idea/vcs.xml -------------------------------------------------------------------------------- /Activity Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity Related Stuff/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/app/build.gradle -------------------------------------------------------------------------------- /Activity Related Stuff/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/build.gradle -------------------------------------------------------------------------------- /Activity Related Stuff/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/gradle.properties -------------------------------------------------------------------------------- /Activity Related Stuff/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/gradlew -------------------------------------------------------------------------------- /Activity Related Stuff/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Activity Related Stuff/gradlew.bat -------------------------------------------------------------------------------- /Activity Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ActivityLifeCycle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/.gitignore -------------------------------------------------------------------------------- /ActivityLifeCycle/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/.idea/compiler.xml -------------------------------------------------------------------------------- /ActivityLifeCycle/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/.idea/gradle.xml -------------------------------------------------------------------------------- /ActivityLifeCycle/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/.idea/misc.xml -------------------------------------------------------------------------------- /ActivityLifeCycle/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/.idea/modules.xml -------------------------------------------------------------------------------- /ActivityLifeCycle/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ActivityLifeCycle/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/app/build.gradle -------------------------------------------------------------------------------- /ActivityLifeCycle/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/app/proguard-rules.pro -------------------------------------------------------------------------------- /ActivityLifeCycle/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/build.gradle -------------------------------------------------------------------------------- /ActivityLifeCycle/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/gradle.properties -------------------------------------------------------------------------------- /ActivityLifeCycle/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/gradlew -------------------------------------------------------------------------------- /ActivityLifeCycle/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ActivityLifeCycle/gradlew.bat -------------------------------------------------------------------------------- /ActivityLifeCycle/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AlarmManagerDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.gitignore -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.idea/misc.xml -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.idea/modules.xml -------------------------------------------------------------------------------- /AlarmManagerDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /AlarmManagerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AlarmManagerDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/app/build.gradle -------------------------------------------------------------------------------- /AlarmManagerDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /AlarmManagerDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/build.gradle -------------------------------------------------------------------------------- /AlarmManagerDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/gradle.properties -------------------------------------------------------------------------------- /AlarmManagerDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/gradlew -------------------------------------------------------------------------------- /AlarmManagerDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AlarmManagerDemo/gradlew.bat -------------------------------------------------------------------------------- /AlarmManagerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AutoCompleteTextView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/.gitignore -------------------------------------------------------------------------------- /AutoCompleteTextView/.idea/.name: -------------------------------------------------------------------------------- 1 | AutoCompeteTextView Demo -------------------------------------------------------------------------------- /AutoCompleteTextView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/.idea/gradle.xml -------------------------------------------------------------------------------- /AutoCompleteTextView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/.idea/misc.xml -------------------------------------------------------------------------------- /AutoCompleteTextView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AutoCompleteTextView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/app/build.gradle -------------------------------------------------------------------------------- /AutoCompleteTextView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/app/proguard-rules.pro -------------------------------------------------------------------------------- /AutoCompleteTextView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/build.gradle -------------------------------------------------------------------------------- /AutoCompleteTextView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/gradle.properties -------------------------------------------------------------------------------- /AutoCompleteTextView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/gradlew -------------------------------------------------------------------------------- /AutoCompleteTextView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/AutoCompleteTextView/gradlew.bat -------------------------------------------------------------------------------- /AutoCompleteTextView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='AutoCompeteTextView Demo' 3 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/.gitignore -------------------------------------------------------------------------------- /BackGroundThreadDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /BackGroundThreadDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /BackGroundThreadDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/.idea/misc.xml -------------------------------------------------------------------------------- /BackGroundThreadDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/.idea/modules.xml -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/app/build.gradle -------------------------------------------------------------------------------- /BackGroundThreadDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /BackGroundThreadDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/build.gradle -------------------------------------------------------------------------------- /BackGroundThreadDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/gradle.properties -------------------------------------------------------------------------------- /BackGroundThreadDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/gradlew -------------------------------------------------------------------------------- /BackGroundThreadDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BackGroundThreadDemo/gradlew.bat -------------------------------------------------------------------------------- /BackGroundThreadDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BottomSheetDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.gitignore -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | BottomSheet Demp -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.idea/misc.xml -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /BottomSheetDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/.idea/vcs.xml -------------------------------------------------------------------------------- /BottomSheetDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BottomSheetDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/app/build.gradle -------------------------------------------------------------------------------- /BottomSheetDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /BottomSheetDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/build.gradle -------------------------------------------------------------------------------- /BottomSheetDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/gradle.properties -------------------------------------------------------------------------------- /BottomSheetDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/gradlew -------------------------------------------------------------------------------- /BottomSheetDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BottomSheetDemo/gradlew.bat -------------------------------------------------------------------------------- /BottomSheetDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='BottomSheet Demp' 3 | -------------------------------------------------------------------------------- /BoundServiceDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.gitignore -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.idea/misc.xml -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.idea/modules.xml -------------------------------------------------------------------------------- /BoundServiceDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /BoundServiceDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/README.md -------------------------------------------------------------------------------- /BoundServiceDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BoundServiceDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/app/build.gradle -------------------------------------------------------------------------------- /BoundServiceDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /BoundServiceDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/build.gradle -------------------------------------------------------------------------------- /BoundServiceDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/gradle.properties -------------------------------------------------------------------------------- /BoundServiceDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/gradlew -------------------------------------------------------------------------------- /BoundServiceDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo/gradlew.bat -------------------------------------------------------------------------------- /BoundServiceDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BoundServiceDemo2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/.gitignore -------------------------------------------------------------------------------- /BoundServiceDemo2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/.idea/compiler.xml -------------------------------------------------------------------------------- /BoundServiceDemo2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/.idea/gradle.xml -------------------------------------------------------------------------------- /BoundServiceDemo2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/.idea/misc.xml -------------------------------------------------------------------------------- /BoundServiceDemo2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/.idea/modules.xml -------------------------------------------------------------------------------- /BoundServiceDemo2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BoundServiceDemo2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/app/build.gradle -------------------------------------------------------------------------------- /BoundServiceDemo2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/app/proguard-rules.pro -------------------------------------------------------------------------------- /BoundServiceDemo2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/build.gradle -------------------------------------------------------------------------------- /BoundServiceDemo2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/gradle.properties -------------------------------------------------------------------------------- /BoundServiceDemo2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/gradlew -------------------------------------------------------------------------------- /BoundServiceDemo2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BoundServiceDemo2/gradlew.bat -------------------------------------------------------------------------------- /BoundServiceDemo2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BroadcastReceiver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.gitignore -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/.name: -------------------------------------------------------------------------------- 1 | BroadcastReceiver -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/compiler.xml -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/encodings.xml -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/gradle.xml -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/misc.xml -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/modules.xml -------------------------------------------------------------------------------- /BroadcastReceiver/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/.idea/vcs.xml -------------------------------------------------------------------------------- /BroadcastReceiver/BroadcastReceiver.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/BroadcastReceiver.iml -------------------------------------------------------------------------------- /BroadcastReceiver/READ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/READ.md -------------------------------------------------------------------------------- /BroadcastReceiver/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BroadcastReceiver/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/app/app.iml -------------------------------------------------------------------------------- /BroadcastReceiver/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/app/build.gradle -------------------------------------------------------------------------------- /BroadcastReceiver/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/app/proguard-rules.pro -------------------------------------------------------------------------------- /BroadcastReceiver/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/build.gradle -------------------------------------------------------------------------------- /BroadcastReceiver/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/gradle.properties -------------------------------------------------------------------------------- /BroadcastReceiver/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/gradlew -------------------------------------------------------------------------------- /BroadcastReceiver/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/BroadcastReceiver/gradlew.bat -------------------------------------------------------------------------------- /BroadcastReceiver/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ConstraintLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ConstraintLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/app/build.gradle -------------------------------------------------------------------------------- /ConstraintLayout/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/app/proguard-rules.pro -------------------------------------------------------------------------------- /ConstraintLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/build.gradle -------------------------------------------------------------------------------- /ConstraintLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/gradle.properties -------------------------------------------------------------------------------- /ConstraintLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/gradlew -------------------------------------------------------------------------------- /ConstraintLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/ConstraintLayout/gradlew.bat -------------------------------------------------------------------------------- /ConstraintLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "ConstraintLayout" -------------------------------------------------------------------------------- /Dagger 2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/Readme.md -------------------------------------------------------------------------------- /Dagger 2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Dagger 2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/build.gradle -------------------------------------------------------------------------------- /Dagger 2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dagger 2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Dagger 2/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Dagger 2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/build.gradle -------------------------------------------------------------------------------- /Dagger 2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/gradle.properties -------------------------------------------------------------------------------- /Dagger 2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dagger 2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/gradlew -------------------------------------------------------------------------------- /Dagger 2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Dagger 2/gradlew.bat -------------------------------------------------------------------------------- /Dagger 2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Dagger 2 Demo" -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.gitignore -------------------------------------------------------------------------------- /Demo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/compiler.xml -------------------------------------------------------------------------------- /Demo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/gradle.xml -------------------------------------------------------------------------------- /Demo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/misc.xml -------------------------------------------------------------------------------- /Demo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/modules.xml -------------------------------------------------------------------------------- /Demo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/build.gradle -------------------------------------------------------------------------------- /Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/build.gradle -------------------------------------------------------------------------------- /Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/gradle.properties -------------------------------------------------------------------------------- /Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/gradlew -------------------------------------------------------------------------------- /Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Demo/gradlew.bat -------------------------------------------------------------------------------- /Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DialogDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.gitignore -------------------------------------------------------------------------------- /DialogDemo/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /DialogDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /DialogDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.idea/misc.xml -------------------------------------------------------------------------------- /DialogDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /DialogDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/.idea/vcs.xml -------------------------------------------------------------------------------- /DialogDemo/Readme.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/Readme.Md -------------------------------------------------------------------------------- /DialogDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DialogDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/app/build.gradle -------------------------------------------------------------------------------- /DialogDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /DialogDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DialogDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/build.gradle -------------------------------------------------------------------------------- /DialogDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/gradle.properties -------------------------------------------------------------------------------- /DialogDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DialogDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/gradlew -------------------------------------------------------------------------------- /DialogDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DialogDemo/gradlew.bat -------------------------------------------------------------------------------- /DialogDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='DialogDemo' 3 | -------------------------------------------------------------------------------- /DoubleTapListener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/.gitignore -------------------------------------------------------------------------------- /DoubleTapListener/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/.idea/gradle.xml -------------------------------------------------------------------------------- /DoubleTapListener/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/.idea/misc.xml -------------------------------------------------------------------------------- /DoubleTapListener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/README.md -------------------------------------------------------------------------------- /DoubleTapListener/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DoubleTapListener/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/app/build.gradle -------------------------------------------------------------------------------- /DoubleTapListener/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/app/proguard-rules.pro -------------------------------------------------------------------------------- /DoubleTapListener/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/build.gradle -------------------------------------------------------------------------------- /DoubleTapListener/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/gradle.properties -------------------------------------------------------------------------------- /DoubleTapListener/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/gradlew -------------------------------------------------------------------------------- /DoubleTapListener/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/DoubleTapListener/gradlew.bat -------------------------------------------------------------------------------- /DoubleTapListener/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Drag_and_Drop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.gitignore -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.idea/gradle.xml -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.idea/misc.xml -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Drag_and_Drop/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/.idea/vcs.xml -------------------------------------------------------------------------------- /Drag_and_Drop/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/Readme.md -------------------------------------------------------------------------------- /Drag_and_Drop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Drag_and_Drop/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/app/build.gradle -------------------------------------------------------------------------------- /Drag_and_Drop/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/app/proguard-rules.pro -------------------------------------------------------------------------------- /Drag_and_Drop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/build.gradle -------------------------------------------------------------------------------- /Drag_and_Drop/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/gradle.properties -------------------------------------------------------------------------------- /Drag_and_Drop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/gradlew -------------------------------------------------------------------------------- /Drag_and_Drop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Drag_and_Drop/gradlew.bat -------------------------------------------------------------------------------- /Drag_and_Drop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Drag_and_Drop' 3 | -------------------------------------------------------------------------------- /FireBaseAuthentication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/.gitignore -------------------------------------------------------------------------------- /FireBaseAuthentication/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/.idea/compiler.xml -------------------------------------------------------------------------------- /FireBaseAuthentication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/.idea/gradle.xml -------------------------------------------------------------------------------- /FireBaseAuthentication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/.idea/misc.xml -------------------------------------------------------------------------------- /FireBaseAuthentication/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/.idea/modules.xml -------------------------------------------------------------------------------- /FireBaseAuthentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/README.md -------------------------------------------------------------------------------- /FireBaseAuthentication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseAuthentication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/app/build.gradle -------------------------------------------------------------------------------- /FireBaseAuthentication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/build.gradle -------------------------------------------------------------------------------- /FireBaseAuthentication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/gradle.properties -------------------------------------------------------------------------------- /FireBaseAuthentication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/gradlew -------------------------------------------------------------------------------- /FireBaseAuthentication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseAuthentication/gradlew.bat -------------------------------------------------------------------------------- /FireBaseAuthentication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/.gitignore -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/.idea/compiler.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/.idea/gradle.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/.idea/misc.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDB/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/.idea/modules.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/app/build.gradle -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/app/google-services.json -------------------------------------------------------------------------------- /FireBaseRealTimeDB/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/app/proguard-rules.pro -------------------------------------------------------------------------------- /FireBaseRealTimeDB/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/build.gradle -------------------------------------------------------------------------------- /FireBaseRealTimeDB/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/gradle.properties -------------------------------------------------------------------------------- /FireBaseRealTimeDB/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/gradlew -------------------------------------------------------------------------------- /FireBaseRealTimeDB/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDB/gradlew.bat -------------------------------------------------------------------------------- /FireBaseRealTimeDB/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/.gitignore -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/.idea/compiler.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/.idea/gradle.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/.idea/misc.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/.idea/modules.xml -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/app/build.gradle -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/build.gradle -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/gradle.properties -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/gradlew -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FireBaseRealTimeDataBase/gradlew.bat -------------------------------------------------------------------------------- /FireBaseRealTimeDataBase/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Fragment Related Stuff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/.gitignore -------------------------------------------------------------------------------- /Fragment Related Stuff/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/.idea/gradle.xml -------------------------------------------------------------------------------- /Fragment Related Stuff/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/.idea/misc.xml -------------------------------------------------------------------------------- /Fragment Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Fragment Related Stuff/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/app/build.gradle -------------------------------------------------------------------------------- /Fragment Related Stuff/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/build.gradle -------------------------------------------------------------------------------- /Fragment Related Stuff/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/gradle.properties -------------------------------------------------------------------------------- /Fragment Related Stuff/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/gradlew -------------------------------------------------------------------------------- /Fragment Related Stuff/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Fragment Related Stuff/gradlew.bat -------------------------------------------------------------------------------- /Fragment Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FragmentExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.gitignore -------------------------------------------------------------------------------- /FragmentExample/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.idea/compiler.xml -------------------------------------------------------------------------------- /FragmentExample/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.idea/gradle.xml -------------------------------------------------------------------------------- /FragmentExample/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.idea/misc.xml -------------------------------------------------------------------------------- /FragmentExample/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.idea/modules.xml -------------------------------------------------------------------------------- /FragmentExample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /FragmentExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FragmentExample/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/app/build.gradle -------------------------------------------------------------------------------- /FragmentExample/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/app/proguard-rules.pro -------------------------------------------------------------------------------- /FragmentExample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/build.gradle -------------------------------------------------------------------------------- /FragmentExample/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/gradle.properties -------------------------------------------------------------------------------- /FragmentExample/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/gradlew -------------------------------------------------------------------------------- /FragmentExample/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/FragmentExample/gradlew.bat -------------------------------------------------------------------------------- /FragmentExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GPSLocationDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.gitignore -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.idea/misc.xml -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.idea/modules.xml -------------------------------------------------------------------------------- /GPSLocationDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /GPSLocationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GPSLocationDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/app/build.gradle -------------------------------------------------------------------------------- /GPSLocationDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /GPSLocationDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/build.gradle -------------------------------------------------------------------------------- /GPSLocationDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/gradle.properties -------------------------------------------------------------------------------- /GPSLocationDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/gradlew -------------------------------------------------------------------------------- /GPSLocationDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSLocationDemo/gradlew.bat -------------------------------------------------------------------------------- /GPSLocationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GPSMapDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/.gitignore -------------------------------------------------------------------------------- /GPSMapDemo/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /GPSMapDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /GPSMapDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/.idea/misc.xml -------------------------------------------------------------------------------- /GPSMapDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /GPSMapDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GPSMapDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/app/build.gradle -------------------------------------------------------------------------------- /GPSMapDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /GPSMapDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GPSMapDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/build.gradle -------------------------------------------------------------------------------- /GPSMapDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/gradle.properties -------------------------------------------------------------------------------- /GPSMapDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GPSMapDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/gradlew -------------------------------------------------------------------------------- /GPSMapDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GPSMapDemo/gradlew.bat -------------------------------------------------------------------------------- /GPSMapDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Google Map Marker Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/.gitignore -------------------------------------------------------------------------------- /Google Map Marker Demo/.idea/.name: -------------------------------------------------------------------------------- 1 | GoogleMarkerDemo -------------------------------------------------------------------------------- /Google Map Marker Demo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/.idea/gradle.xml -------------------------------------------------------------------------------- /Google Map Marker Demo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/.idea/misc.xml -------------------------------------------------------------------------------- /Google Map Marker Demo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/.idea/vcs.xml -------------------------------------------------------------------------------- /Google Map Marker Demo/Readme.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/Readme.Md -------------------------------------------------------------------------------- /Google Map Marker Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Google Map Marker Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/app/build.gradle -------------------------------------------------------------------------------- /Google Map Marker Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/build.gradle -------------------------------------------------------------------------------- /Google Map Marker Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/gradle.properties -------------------------------------------------------------------------------- /Google Map Marker Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/gradlew -------------------------------------------------------------------------------- /Google Map Marker Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Google Map Marker Demo/gradlew.bat -------------------------------------------------------------------------------- /Google Map Marker Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='GoogleMarkerDemo' 3 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GooglePlayServicesLocationAPIDemo/.gitignore -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/GooglePlayServicesLocationAPIDemo/gradlew -------------------------------------------------------------------------------- /GooglePlayServicesLocationAPIDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Gson Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Gson Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/build.gradle -------------------------------------------------------------------------------- /Gson Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /Gson Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/assets/case1.json -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/assets/case2.json -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/assets/case3.json -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/assets/case4.json -------------------------------------------------------------------------------- /Gson Demo/app/src/main/assets/case5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/assets/case5.json -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Gson Demo/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Gson Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/build.gradle -------------------------------------------------------------------------------- /Gson Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/gradle.properties -------------------------------------------------------------------------------- /Gson Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Gson Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/gradlew -------------------------------------------------------------------------------- /Gson Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/gradlew.bat -------------------------------------------------------------------------------- /Gson Demo/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Gson Demo/local.properties -------------------------------------------------------------------------------- /Gson Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Gson Demo" -------------------------------------------------------------------------------- /HTMLTextRender/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.gitignore -------------------------------------------------------------------------------- /HTMLTextRender/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /HTMLTextRender/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.idea/gradle.xml -------------------------------------------------------------------------------- /HTMLTextRender/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.idea/misc.xml -------------------------------------------------------------------------------- /HTMLTextRender/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /HTMLTextRender/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/.idea/vcs.xml -------------------------------------------------------------------------------- /HTMLTextRender/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/Readme.md -------------------------------------------------------------------------------- /HTMLTextRender/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HTMLTextRender/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/app/build.gradle -------------------------------------------------------------------------------- /HTMLTextRender/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/app/proguard-rules.pro -------------------------------------------------------------------------------- /HTMLTextRender/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/build.gradle -------------------------------------------------------------------------------- /HTMLTextRender/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/gradle.properties -------------------------------------------------------------------------------- /HTMLTextRender/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/gradlew -------------------------------------------------------------------------------- /HTMLTextRender/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/HTMLTextRender/gradlew.bat -------------------------------------------------------------------------------- /HTMLTextRender/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='HTMLTextRender' 3 | -------------------------------------------------------------------------------- /Inheritance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.gitignore -------------------------------------------------------------------------------- /Inheritance/.idea/.name: -------------------------------------------------------------------------------- 1 | Inheritance -------------------------------------------------------------------------------- /Inheritance/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/compiler.xml -------------------------------------------------------------------------------- /Inheritance/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/encodings.xml -------------------------------------------------------------------------------- /Inheritance/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/gradle.xml -------------------------------------------------------------------------------- /Inheritance/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/misc.xml -------------------------------------------------------------------------------- /Inheritance/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/modules.xml -------------------------------------------------------------------------------- /Inheritance/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Inheritance/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/.idea/vcs.xml -------------------------------------------------------------------------------- /Inheritance/Inheritance.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/Inheritance.iml -------------------------------------------------------------------------------- /Inheritance/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Inheritance/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/app/app.iml -------------------------------------------------------------------------------- /Inheritance/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/app/build.gradle -------------------------------------------------------------------------------- /Inheritance/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/app/proguard-rules.pro -------------------------------------------------------------------------------- /Inheritance/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Inheritance/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/build.gradle -------------------------------------------------------------------------------- /Inheritance/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/gradle.properties -------------------------------------------------------------------------------- /Inheritance/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/gradlew -------------------------------------------------------------------------------- /Inheritance/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Inheritance/gradlew.bat -------------------------------------------------------------------------------- /Inheritance/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /IntentServiceDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/.gitignore -------------------------------------------------------------------------------- /IntentServiceDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /IntentServiceDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /IntentServiceDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/.idea/misc.xml -------------------------------------------------------------------------------- /IntentServiceDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/.idea/modules.xml -------------------------------------------------------------------------------- /IntentServiceDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /IntentServiceDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/app/build.gradle -------------------------------------------------------------------------------- /IntentServiceDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /IntentServiceDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/build.gradle -------------------------------------------------------------------------------- /IntentServiceDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/gradle.properties -------------------------------------------------------------------------------- /IntentServiceDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/gradlew -------------------------------------------------------------------------------- /IntentServiceDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/IntentServiceDemo/gradlew.bat -------------------------------------------------------------------------------- /IntentServiceDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Intro Screen/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Intro Screen/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/app/build.gradle -------------------------------------------------------------------------------- /Intro Screen/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/app/proguard-rules.pro -------------------------------------------------------------------------------- /Intro Screen/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/build.gradle -------------------------------------------------------------------------------- /Intro Screen/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/gradle.properties -------------------------------------------------------------------------------- /Intro Screen/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/gradlew -------------------------------------------------------------------------------- /Intro Screen/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Intro Screen/gradlew.bat -------------------------------------------------------------------------------- /Intro Screen/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Intro Screen Demo' 3 | -------------------------------------------------------------------------------- /JobSchedulerDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.gitignore -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.idea/misc.xml -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.idea/modules.xml -------------------------------------------------------------------------------- /JobSchedulerDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /JobSchedulerDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/README.md -------------------------------------------------------------------------------- /JobSchedulerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /JobSchedulerDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/app/build.gradle -------------------------------------------------------------------------------- /JobSchedulerDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /JobSchedulerDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/build.gradle -------------------------------------------------------------------------------- /JobSchedulerDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/gradle.properties -------------------------------------------------------------------------------- /JobSchedulerDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/gradlew -------------------------------------------------------------------------------- /JobSchedulerDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/JobSchedulerDemo/gradlew.bat -------------------------------------------------------------------------------- /JobSchedulerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Justify Text/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/Readme.md -------------------------------------------------------------------------------- /Justify Text/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Justify Text/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/app/build.gradle -------------------------------------------------------------------------------- /Justify Text/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/app/proguard-rules.pro -------------------------------------------------------------------------------- /Justify Text/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/build.gradle -------------------------------------------------------------------------------- /Justify Text/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/gradle.properties -------------------------------------------------------------------------------- /Justify Text/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/gradlew -------------------------------------------------------------------------------- /Justify Text/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Justify Text/gradlew.bat -------------------------------------------------------------------------------- /Justify Text/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "JustifyText" -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin + Couroutine + Retrofit/build.gradle -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin + Couroutine + Retrofit/gradlew -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin + Couroutine + Retrofit/gradlew.bat -------------------------------------------------------------------------------- /Kotlin + Couroutine + Retrofit/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Retrofit-Coroutine" -------------------------------------------------------------------------------- /Kotlin_Basic_Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/.gitignore -------------------------------------------------------------------------------- /Kotlin_Basic_Example/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/.idea/gradle.xml -------------------------------------------------------------------------------- /Kotlin_Basic_Example/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/.idea/misc.xml -------------------------------------------------------------------------------- /Kotlin_Basic_Example/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/.idea/vcs.xml -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/app/build.gradle -------------------------------------------------------------------------------- /Kotlin_Basic_Example/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/app/proguard-rules.pro -------------------------------------------------------------------------------- /Kotlin_Basic_Example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/build.gradle -------------------------------------------------------------------------------- /Kotlin_Basic_Example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/gradle.properties -------------------------------------------------------------------------------- /Kotlin_Basic_Example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/gradlew -------------------------------------------------------------------------------- /Kotlin_Basic_Example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Kotlin_Basic_Example/gradlew.bat -------------------------------------------------------------------------------- /Kotlin_Basic_Example/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Kotlin_Basic_Example' 3 | -------------------------------------------------------------------------------- /Lottie Animation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/.gitignore -------------------------------------------------------------------------------- /Lottie Animation/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/.idea/gradle.xml -------------------------------------------------------------------------------- /Lottie Animation/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/.idea/misc.xml -------------------------------------------------------------------------------- /Lottie Animation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Lottie Animation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Lottie Animation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/app/build.gradle -------------------------------------------------------------------------------- /Lottie Animation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/app/proguard-rules.pro -------------------------------------------------------------------------------- /Lottie Animation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/build.gradle -------------------------------------------------------------------------------- /Lottie Animation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/gradle.properties -------------------------------------------------------------------------------- /Lottie Animation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/gradlew -------------------------------------------------------------------------------- /Lottie Animation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Lottie Animation/gradlew.bat -------------------------------------------------------------------------------- /Lottie Animation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MVVM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.gitignore -------------------------------------------------------------------------------- /MVVM/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /MVVM/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /MVVM/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.idea/gradle.xml -------------------------------------------------------------------------------- /MVVM/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.idea/misc.xml -------------------------------------------------------------------------------- /MVVM/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /MVVM/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MVVM/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/build.gradle -------------------------------------------------------------------------------- /MVVM/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/proguard-rules.pro -------------------------------------------------------------------------------- /MVVM/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MVVM/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MVVM/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MVVM/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/build.gradle -------------------------------------------------------------------------------- /MVVM/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/gradle.properties -------------------------------------------------------------------------------- /MVVM/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MVVM/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/gradlew -------------------------------------------------------------------------------- /MVVM/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MVVM/gradlew.bat -------------------------------------------------------------------------------- /MVVM/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Moshi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.gitignore -------------------------------------------------------------------------------- /Moshi/.idea/.name: -------------------------------------------------------------------------------- 1 | Moshi -------------------------------------------------------------------------------- /Moshi/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/compiler.xml -------------------------------------------------------------------------------- /Moshi/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Moshi/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/encodings.xml -------------------------------------------------------------------------------- /Moshi/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/gradle.xml -------------------------------------------------------------------------------- /Moshi/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/misc.xml -------------------------------------------------------------------------------- /Moshi/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/modules.xml -------------------------------------------------------------------------------- /Moshi/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Moshi/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/.idea/vcs.xml -------------------------------------------------------------------------------- /Moshi/Moshi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/Moshi.iml -------------------------------------------------------------------------------- /Moshi/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Moshi/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/app.iml -------------------------------------------------------------------------------- /Moshi/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/build.gradle -------------------------------------------------------------------------------- /Moshi/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/proguard-rules.pro -------------------------------------------------------------------------------- /Moshi/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Moshi/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Moshi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/build.gradle -------------------------------------------------------------------------------- /Moshi/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/gradle.properties -------------------------------------------------------------------------------- /Moshi/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Moshi/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/gradlew -------------------------------------------------------------------------------- /Moshi/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Moshi/gradlew.bat -------------------------------------------------------------------------------- /Moshi/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Multi_Language_Support/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/.gitignore -------------------------------------------------------------------------------- /Multi_Language_Support/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/.idea/gradle.xml -------------------------------------------------------------------------------- /Multi_Language_Support/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/.idea/misc.xml -------------------------------------------------------------------------------- /Multi_Language_Support/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Multi_Language_Support/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/app/build.gradle -------------------------------------------------------------------------------- /Multi_Language_Support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/build.gradle -------------------------------------------------------------------------------- /Multi_Language_Support/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/gradle.properties -------------------------------------------------------------------------------- /Multi_Language_Support/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/gradlew -------------------------------------------------------------------------------- /Multi_Language_Support/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Multi_Language_Support/gradlew.bat -------------------------------------------------------------------------------- /Multi_Language_Support/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.gitignore -------------------------------------------------------------------------------- /MyApplication/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.idea/compiler.xml -------------------------------------------------------------------------------- /MyApplication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.idea/gradle.xml -------------------------------------------------------------------------------- /MyApplication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.idea/misc.xml -------------------------------------------------------------------------------- /MyApplication/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.idea/modules.xml -------------------------------------------------------------------------------- /MyApplication/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /MyApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/build.gradle -------------------------------------------------------------------------------- /MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/gradle.properties -------------------------------------------------------------------------------- /MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/gradlew -------------------------------------------------------------------------------- /MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MyLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.gitignore -------------------------------------------------------------------------------- /MyLibrary/.idea/.name: -------------------------------------------------------------------------------- 1 | MyLibrary -------------------------------------------------------------------------------- /MyLibrary/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/compiler.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/encodings.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/gradle.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/misc.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/modules.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /MyLibrary/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/.idea/vcs.xml -------------------------------------------------------------------------------- /MyLibrary/MyLibrary.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/MyLibrary.iml -------------------------------------------------------------------------------- /MyLibrary/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyLibrary/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/app.iml -------------------------------------------------------------------------------- /MyLibrary/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/build.gradle -------------------------------------------------------------------------------- /MyLibrary/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/proguard-rules.pro -------------------------------------------------------------------------------- /MyLibrary/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /MyLibrary/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MyLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/build.gradle -------------------------------------------------------------------------------- /MyLibrary/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/gradle.properties -------------------------------------------------------------------------------- /MyLibrary/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyLibrary/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/gradlew -------------------------------------------------------------------------------- /MyLibrary/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/gradlew.bat -------------------------------------------------------------------------------- /MyLibrary/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':sos' 2 | -------------------------------------------------------------------------------- /MyLibrary/sos/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyLibrary/sos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/sos/build.gradle -------------------------------------------------------------------------------- /MyLibrary/sos/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/sos/proguard-rules.pro -------------------------------------------------------------------------------- /MyLibrary/sos/sos.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/sos/sos.iml -------------------------------------------------------------------------------- /MyLibrary/sos/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/MyLibrary/sos/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /NavigationDrawer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/.gitignore -------------------------------------------------------------------------------- /NavigationDrawer/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/.idea/gradle.xml -------------------------------------------------------------------------------- /NavigationDrawer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/.idea/misc.xml -------------------------------------------------------------------------------- /NavigationDrawer/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /NavigationDrawer/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/.idea/vcs.xml -------------------------------------------------------------------------------- /NavigationDrawer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NavigationDrawer/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/app/build.gradle -------------------------------------------------------------------------------- /NavigationDrawer/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/app/proguard-rules.pro -------------------------------------------------------------------------------- /NavigationDrawer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/build.gradle -------------------------------------------------------------------------------- /NavigationDrawer/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/gradle.properties -------------------------------------------------------------------------------- /NavigationDrawer/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/gradlew -------------------------------------------------------------------------------- /NavigationDrawer/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NavigationDrawer/gradlew.bat -------------------------------------------------------------------------------- /NavigationDrawer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='NavigationDrawer' 3 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/.gitignore -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/.idea/misc.xml -------------------------------------------------------------------------------- /NetworkingLibraryDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/.idea/modules.xml -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/app/build.gradle -------------------------------------------------------------------------------- /NetworkingLibraryDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /NetworkingLibraryDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/build.gradle -------------------------------------------------------------------------------- /NetworkingLibraryDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/gradle.properties -------------------------------------------------------------------------------- /NetworkingLibraryDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/gradlew -------------------------------------------------------------------------------- /NetworkingLibraryDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NetworkingLibraryDemo/gradlew.bat -------------------------------------------------------------------------------- /NetworkingLibraryDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/.gitignore -------------------------------------------------------------------------------- /NewFirebaseTutorial/.idea/.name: -------------------------------------------------------------------------------- 1 | Firebase Tutorial -------------------------------------------------------------------------------- /NewFirebaseTutorial/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/.idea/gradle.xml -------------------------------------------------------------------------------- /NewFirebaseTutorial/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/.idea/misc.xml -------------------------------------------------------------------------------- /NewFirebaseTutorial/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/.idea/vcs.xml -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/app/build.gradle -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/app/google-services.json -------------------------------------------------------------------------------- /NewFirebaseTutorial/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/app/proguard-rules.pro -------------------------------------------------------------------------------- /NewFirebaseTutorial/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/build.gradle -------------------------------------------------------------------------------- /NewFirebaseTutorial/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/gradle.properties -------------------------------------------------------------------------------- /NewFirebaseTutorial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/gradlew -------------------------------------------------------------------------------- /NewFirebaseTutorial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NewFirebaseTutorial/gradlew.bat -------------------------------------------------------------------------------- /NewFirebaseTutorial/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Firebase Tutorial' 3 | -------------------------------------------------------------------------------- /NotificationDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.gitignore -------------------------------------------------------------------------------- /NotificationDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /NotificationDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /NotificationDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.idea/misc.xml -------------------------------------------------------------------------------- /NotificationDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.idea/modules.xml -------------------------------------------------------------------------------- /NotificationDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /NotificationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NotificationDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/app/build.gradle -------------------------------------------------------------------------------- /NotificationDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /NotificationDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/build.gradle -------------------------------------------------------------------------------- /NotificationDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/gradle.properties -------------------------------------------------------------------------------- /NotificationDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/gradlew -------------------------------------------------------------------------------- /NotificationDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/NotificationDemo/gradlew.bat -------------------------------------------------------------------------------- /NotificationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PhotoHider/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.gitignore -------------------------------------------------------------------------------- /PhotoHider/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.idea/compiler.xml -------------------------------------------------------------------------------- /PhotoHider/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.idea/gradle.xml -------------------------------------------------------------------------------- /PhotoHider/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.idea/misc.xml -------------------------------------------------------------------------------- /PhotoHider/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.idea/modules.xml -------------------------------------------------------------------------------- /PhotoHider/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /PhotoHider/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PhotoHider/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/app/build.gradle -------------------------------------------------------------------------------- /PhotoHider/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/app/proguard-rules.pro -------------------------------------------------------------------------------- /PhotoHider/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PhotoHider/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/build.gradle -------------------------------------------------------------------------------- /PhotoHider/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/gradle.properties -------------------------------------------------------------------------------- /PhotoHider/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PhotoHider/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/gradlew -------------------------------------------------------------------------------- /PhotoHider/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/PhotoHider/gradlew.bat -------------------------------------------------------------------------------- /PhotoHider/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/README.md -------------------------------------------------------------------------------- /RXJava/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RXJava/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/build.gradle -------------------------------------------------------------------------------- /RXJava/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/proguard-rules.pro -------------------------------------------------------------------------------- /RXJava/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /RXJava/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /RXJava/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /RXJava/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /RXJava/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/build.gradle -------------------------------------------------------------------------------- /RXJava/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/gradle.properties -------------------------------------------------------------------------------- /RXJava/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RXJava/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/gradlew -------------------------------------------------------------------------------- /RXJava/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RXJava/gradlew.bat -------------------------------------------------------------------------------- /RXJava/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "RXJavaDemo" -------------------------------------------------------------------------------- /RecyclerViewDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/.gitignore -------------------------------------------------------------------------------- /RecyclerViewDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /RecyclerViewDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/.idea/misc.xml -------------------------------------------------------------------------------- /RecyclerViewDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /RecyclerViewDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/app/build.gradle -------------------------------------------------------------------------------- /RecyclerViewDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /RecyclerViewDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/build.gradle -------------------------------------------------------------------------------- /RecyclerViewDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/gradle.properties -------------------------------------------------------------------------------- /RecyclerViewDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/gradlew -------------------------------------------------------------------------------- /RecyclerViewDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewDemo/gradlew.bat -------------------------------------------------------------------------------- /RecyclerViewDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /RecyclerViewPagination/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/.gitignore -------------------------------------------------------------------------------- /RecyclerViewPagination/.idea/.name: -------------------------------------------------------------------------------- 1 | RecyclerView Pagination -------------------------------------------------------------------------------- /RecyclerViewPagination/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/.idea/gradle.xml -------------------------------------------------------------------------------- /RecyclerViewPagination/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/.idea/misc.xml -------------------------------------------------------------------------------- /RecyclerViewPagination/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/.idea/vcs.xml -------------------------------------------------------------------------------- /RecyclerViewPagination/Readme.Md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/Readme.Md -------------------------------------------------------------------------------- /RecyclerViewPagination/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /RecyclerViewPagination/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/app/build.gradle -------------------------------------------------------------------------------- /RecyclerViewPagination/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/build.gradle -------------------------------------------------------------------------------- /RecyclerViewPagination/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/gradle.properties -------------------------------------------------------------------------------- /RecyclerViewPagination/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/gradlew -------------------------------------------------------------------------------- /RecyclerViewPagination/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/RecyclerViewPagination/gradlew.bat -------------------------------------------------------------------------------- /RecyclerViewPagination/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "RecyclerView Pagination" -------------------------------------------------------------------------------- /Retrofit2 Demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Retrofit2 Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/app/build.gradle -------------------------------------------------------------------------------- /Retrofit2 Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /Retrofit2 Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/build.gradle -------------------------------------------------------------------------------- /Retrofit2 Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/gradle.properties -------------------------------------------------------------------------------- /Retrofit2 Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/gradlew -------------------------------------------------------------------------------- /Retrofit2 Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Retrofit2 Demo/gradlew.bat -------------------------------------------------------------------------------- /Retrofit2 Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Retrofit2 Demo" -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/.gitignore -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/.idea/misc.xml -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/.idea/modules.xml -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/app/build.gradle -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/build.gradle -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/gradle.properties -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/gradlew -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SQLiteDatabaseDemo/gradlew.bat -------------------------------------------------------------------------------- /SQLiteDatabaseDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SearchViewDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/.gitignore -------------------------------------------------------------------------------- /SearchViewDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/.idea/compiler.xml -------------------------------------------------------------------------------- /SearchViewDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /SearchViewDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/.idea/misc.xml -------------------------------------------------------------------------------- /SearchViewDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/.idea/modules.xml -------------------------------------------------------------------------------- /SearchViewDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SearchViewDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/app/build.gradle -------------------------------------------------------------------------------- /SearchViewDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SearchViewDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/build.gradle -------------------------------------------------------------------------------- /SearchViewDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/gradle.properties -------------------------------------------------------------------------------- /SearchViewDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/gradlew -------------------------------------------------------------------------------- /SearchViewDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/SearchViewDemo/gradlew.bat -------------------------------------------------------------------------------- /SearchViewDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Service Related Stuff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/.gitignore -------------------------------------------------------------------------------- /Service Related Stuff/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/.idea/gradle.xml -------------------------------------------------------------------------------- /Service Related Stuff/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/.idea/misc.xml -------------------------------------------------------------------------------- /Service Related Stuff/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Service Related Stuff/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/app/build.gradle -------------------------------------------------------------------------------- /Service Related Stuff/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/build.gradle -------------------------------------------------------------------------------- /Service Related Stuff/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/gradle.properties -------------------------------------------------------------------------------- /Service Related Stuff/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/gradlew -------------------------------------------------------------------------------- /Service Related Stuff/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Service Related Stuff/gradlew.bat -------------------------------------------------------------------------------- /Service Related Stuff/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.gitignore -------------------------------------------------------------------------------- /Services/.idea/.name: -------------------------------------------------------------------------------- 1 | Services -------------------------------------------------------------------------------- /Services/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/compiler.xml -------------------------------------------------------------------------------- /Services/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/encodings.xml -------------------------------------------------------------------------------- /Services/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/gradle.xml -------------------------------------------------------------------------------- /Services/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/misc.xml -------------------------------------------------------------------------------- /Services/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/modules.xml -------------------------------------------------------------------------------- /Services/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Services/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/.idea/vcs.xml -------------------------------------------------------------------------------- /Services/Services.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/Services.iml -------------------------------------------------------------------------------- /Services/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Services/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/app/app.iml -------------------------------------------------------------------------------- /Services/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/app/build.gradle -------------------------------------------------------------------------------- /Services/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/app/proguard-rules.pro -------------------------------------------------------------------------------- /Services/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Services/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/build.gradle -------------------------------------------------------------------------------- /Services/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/gradle.properties -------------------------------------------------------------------------------- /Services/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/gradlew -------------------------------------------------------------------------------- /Services/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Services/gradlew.bat -------------------------------------------------------------------------------- /Services/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Swipe_To_Delete/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/.gitignore -------------------------------------------------------------------------------- /Swipe_To_Delete/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/.idea/gradle.xml -------------------------------------------------------------------------------- /Swipe_To_Delete/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/.idea/misc.xml -------------------------------------------------------------------------------- /Swipe_To_Delete/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/.idea/vcs.xml -------------------------------------------------------------------------------- /Swipe_To_Delete/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Swipe_To_Delete/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/app/build.gradle -------------------------------------------------------------------------------- /Swipe_To_Delete/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/app/proguard-rules.pro -------------------------------------------------------------------------------- /Swipe_To_Delete/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/build.gradle -------------------------------------------------------------------------------- /Swipe_To_Delete/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/gradle.properties -------------------------------------------------------------------------------- /Swipe_To_Delete/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/gradlew -------------------------------------------------------------------------------- /Swipe_To_Delete/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Swipe_To_Delete/gradlew.bat -------------------------------------------------------------------------------- /Swipe_To_Delete/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Transition/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.gitignore -------------------------------------------------------------------------------- /Transition/.idea/.name: -------------------------------------------------------------------------------- 1 | TransitionAPI -------------------------------------------------------------------------------- /Transition/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/compiler.xml -------------------------------------------------------------------------------- /Transition/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/encodings.xml -------------------------------------------------------------------------------- /Transition/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/gradle.xml -------------------------------------------------------------------------------- /Transition/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/misc.xml -------------------------------------------------------------------------------- /Transition/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/modules.xml -------------------------------------------------------------------------------- /Transition/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Transition/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/.idea/vcs.xml -------------------------------------------------------------------------------- /Transition/READ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/READ.md -------------------------------------------------------------------------------- /Transition/Transition.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/Transition.iml -------------------------------------------------------------------------------- /Transition/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Transition/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/app/app.iml -------------------------------------------------------------------------------- /Transition/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/app/build.gradle -------------------------------------------------------------------------------- /Transition/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/app/proguard-rules.pro -------------------------------------------------------------------------------- /Transition/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/build.gradle -------------------------------------------------------------------------------- /Transition/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/gradle.properties -------------------------------------------------------------------------------- /Transition/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/gradlew -------------------------------------------------------------------------------- /Transition/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Transition/gradlew.bat -------------------------------------------------------------------------------- /Transition/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/.gitignore -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/.name: -------------------------------------------------------------------------------- 1 | CoordinatorLayout -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/.idea/misc.xml -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/.idea/vcs.xml -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/app/app.iml -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/gradlew -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/CoordinatorLayout/gradlew.bat -------------------------------------------------------------------------------- /UI_Stuff/CoordinatorLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/GooglePlayTabLayout/.gitignore -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/.idea/.name: -------------------------------------------------------------------------------- 1 | GooglePlayTabLayout -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/GooglePlayTabLayout/app/app.iml -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/GooglePlayTabLayout/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/GooglePlayTabLayout/gradlew -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/GooglePlayTabLayout/gradlew.bat -------------------------------------------------------------------------------- /UI_Stuff/GooglePlayTabLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.gitignore -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/.name: -------------------------------------------------------------------------------- 1 | RecyclerView -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/compiler.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/encodings.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/gradle.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/misc.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/modules.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/.idea/vcs.xml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/RecyclerView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/RecyclerView.iml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/app/app.iml -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/app/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/gradle.properties -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/gradlew -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/RecyclerView/gradlew.bat -------------------------------------------------------------------------------- /UI_Stuff/RecyclerView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.gitignore -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/.name: -------------------------------------------------------------------------------- 1 | StyleThemes -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/compiler.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/encodings.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/gradle.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/misc.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/modules.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/.idea/vcs.xml -------------------------------------------------------------------------------- /UI_Stuff/Themes/READ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/READ.md -------------------------------------------------------------------------------- /UI_Stuff/Themes/Themes.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/Themes.iml -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/app/app.iml -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/app/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/Themes/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/app/proguard-rules.pro -------------------------------------------------------------------------------- /UI_Stuff/Themes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/build.gradle -------------------------------------------------------------------------------- /UI_Stuff/Themes/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/gradle.properties -------------------------------------------------------------------------------- /UI_Stuff/Themes/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/gradlew -------------------------------------------------------------------------------- /UI_Stuff/Themes/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/UI_Stuff/Themes/gradlew.bat -------------------------------------------------------------------------------- /UI_Stuff/Themes/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /VibrationDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/.gitignore -------------------------------------------------------------------------------- /VibrationDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/.idea/gradle.xml -------------------------------------------------------------------------------- /VibrationDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/.idea/misc.xml -------------------------------------------------------------------------------- /VibrationDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /VibrationDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /VibrationDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/app/build.gradle -------------------------------------------------------------------------------- /VibrationDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /VibrationDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/build.gradle -------------------------------------------------------------------------------- /VibrationDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/gradle.properties -------------------------------------------------------------------------------- /VibrationDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/gradlew -------------------------------------------------------------------------------- /VibrationDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/VibrationDemo/gradlew.bat -------------------------------------------------------------------------------- /VibrationDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Volley/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.gitignore -------------------------------------------------------------------------------- /Volley/.idea/.name: -------------------------------------------------------------------------------- 1 | Volley -------------------------------------------------------------------------------- /Volley/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/compiler.xml -------------------------------------------------------------------------------- /Volley/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/encodings.xml -------------------------------------------------------------------------------- /Volley/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/gradle.xml -------------------------------------------------------------------------------- /Volley/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/misc.xml -------------------------------------------------------------------------------- /Volley/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/modules.xml -------------------------------------------------------------------------------- /Volley/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Volley/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/.idea/vcs.xml -------------------------------------------------------------------------------- /Volley/Volley.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/Volley.iml -------------------------------------------------------------------------------- /Volley/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Volley/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/app.iml -------------------------------------------------------------------------------- /Volley/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/build.gradle -------------------------------------------------------------------------------- /Volley/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/proguard-rules.pro -------------------------------------------------------------------------------- /Volley/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Volley/app/src/main/res/drawable/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/src/main/res/drawable/back.jpg -------------------------------------------------------------------------------- /Volley/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Volley/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Volley/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Volley/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/build.gradle -------------------------------------------------------------------------------- /Volley/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/gradle.properties -------------------------------------------------------------------------------- /Volley/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Volley/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/gradlew -------------------------------------------------------------------------------- /Volley/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/Volley/gradlew.bat -------------------------------------------------------------------------------- /Volley/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /WebView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.gitignore -------------------------------------------------------------------------------- /WebView/.idea/.name: -------------------------------------------------------------------------------- 1 | WebView Demo -------------------------------------------------------------------------------- /WebView/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /WebView/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.idea/gradle.xml -------------------------------------------------------------------------------- /WebView/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.idea/misc.xml -------------------------------------------------------------------------------- /WebView/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /WebView/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/.idea/vcs.xml -------------------------------------------------------------------------------- /WebView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WebView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/app/build.gradle -------------------------------------------------------------------------------- /WebView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/app/proguard-rules.pro -------------------------------------------------------------------------------- /WebView/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WebView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/build.gradle -------------------------------------------------------------------------------- /WebView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/gradle.properties -------------------------------------------------------------------------------- /WebView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WebView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/gradlew -------------------------------------------------------------------------------- /WebView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/My_Android_Garage/HEAD/WebView/gradlew.bat -------------------------------------------------------------------------------- /WebView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='WebView Demo' 3 | --------------------------------------------------------------------------------