├── Actiities └── TasksBackstack │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── taskbackstack │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── taskbackstack │ │ │ │ ├── ActivityA.kt │ │ │ │ ├── ActivityB.kt │ │ │ │ ├── ActivityC.kt │ │ │ │ ├── ActivityD.kt │ │ │ │ └── ActivityE.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_a.xml │ │ │ ├── activity_b.xml │ │ │ ├── activity_c.xml │ │ │ ├── activity_d.xml │ │ │ └── activity_e.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── taskbackstack │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── BackgroundTasks ├── AlarmManager2 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── alarmmanager │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── alarmmanager │ │ │ │ │ ├── Alertreceiver.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── NotificationHandler.kt │ │ │ │ │ └── TimePickerFragment.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── baseline_alarm_24.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── alarmmanager │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── BoundServices3 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── boundservices3 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── boundservices3 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ └── MyService.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── boundservices3 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ForegroundServices4 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── appforegroundservices │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── appforegroundservices │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MyForegroundService.kt │ │ │ │ │ └── ServiceApplication.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── baseline_work_24.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── appforegroundservices │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── IntentService6 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── intentservice │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── intentservice │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MyIntentService.kt │ │ │ │ │ └── ServiceApplication.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── intentservice │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Jobscheduler1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── jobscheduler1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── jobscheduler1 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyJobService.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── jobscheduler1 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MyApplication │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── myapplication │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── root │ │ │ │ │ └── myapplication │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── myapplication │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── ServiceActivity │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── serviceactivity │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── serviceactivity │ │ │ │ ├── ActivityService.kt │ │ │ │ ├── FirstActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SecondActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_first.xml │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── serviceactivity │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Bluetooth └── Bluettoth1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── bluetooth1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── bluetooth1 │ │ │ │ ├── BluetoothReceiver.kt │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── bluetooth1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── BroadcastReceiver ├── CustomBroadcast3 │ ├── BroadcastReceivingApp │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── kotlinc.xml │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── broadcastreceivingapp │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── aditya │ │ │ │ │ │ └── broadcastreceivingapp │ │ │ │ │ │ ├── CustomBroadcastReceiver.kt │ │ │ │ │ │ └── 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.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ │ └── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── broadcastreceivingapp │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── BroadcastSendingApp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── broadcastsendingapp │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── broadcastsendingapp │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── broadcastsendingapp │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── DynamicBroadcastReceiver2 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── dynamicbroadcastreceiver │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── dynamicbroadcastreceiver │ │ │ │ │ ├── DynamicBroadcastReceiver.kt │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── dynamicbroadcastreceiver │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExplicitReceiver4 │ ├── Receiver │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── kotlinc.xml │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── receiver │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── aditya │ │ │ │ │ │ └── receiver │ │ │ │ │ │ ├── ExplicitbroadcastReceiver2.kt │ │ │ │ │ │ └── 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.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ │ └── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── receiver │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── Sender │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── sender │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── sender │ │ │ │ │ ├── ExplicitReceiver1.kt │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── sender │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── LocalBroadCastManager5 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── localbroadcastmanager │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── localbroadcastmanager │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── localbroadcastmanager │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── StaticBroadcastReceiver1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── staticbroadcastreceiver1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── staticbroadcastreceiver1 │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyStaticReceiver.kt │ │ │ │ ├── Notificationer.kt │ │ │ │ └── SecondActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── staticbroadcastreceiver1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Compose └── compose1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── compose1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── compose1 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── compose1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Dagger_HILT ├── ConstructorInjection3 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── constrinj │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── constrinj │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyApplication.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── constrinj │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Scoping2 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── scioping2 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── scioping2 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyApplication.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── scioping2 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── dagger hilt │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── hilt1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── hilt1 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MyApplication.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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── navigation │ │ │ └── nav_graph.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── hilt1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DataStore ├── dataStore1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── datastore1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── datastore1 │ │ │ │ │ └── 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-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── datastore1 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── dataStore2 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── datastore2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── datastore2 │ │ │ │ └── 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-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── datastore2 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Diffutils └── Diffutil1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── diffutils │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── diffutils │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyDiffutil.kt │ │ │ │ ├── Person.kt │ │ │ │ └── PersonAdapter.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── row_layout.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── diffutils │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Flows ├── flows1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── flows │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── flows │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainViewModel.kt │ │ │ │ │ └── MainViewModelFactory.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-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── flows │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── flows2 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── flows2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── flows2 │ │ │ │ └── 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-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── flows2 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Hilt-Jetpack └── Hilt-retrofit │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── hilt_retrofit │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── hilt_retrofit │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyViewmodel.kt │ │ │ │ ├── data │ │ │ │ ├── remote │ │ │ │ │ └── MyApi.kt │ │ │ │ └── repository │ │ │ │ │ └── MyRepositoryImpl.kt │ │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ │ └── domain │ │ │ │ └── repository │ │ │ │ └── MyRepository.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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── hilt_retrofit │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Kotlin └── Basic │ └── KotlinBasic │ ├── .gradle │ ├── 7.3.3 │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── file-system.probe │ └── vcs-1 │ │ └── gc.properties │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ └── misc.xml │ ├── build.gradle │ ├── build │ ├── classes │ │ └── kotlin │ │ │ └── main │ │ │ ├── META-INF │ │ │ └── KotlinBasic.kotlin_module │ │ │ ├── MainKt.class │ │ │ └── Name.class │ └── kotlin │ │ └── compileKotlin │ │ ├── cacheable │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ └── source-to-classes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ └── last-build.bin │ │ └── localstate │ │ └── build-history.bin │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ └── main │ └── kotlin │ └── Main.kt ├── Navigation └── NavOne │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── navone │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── navone │ │ │ │ ├── FirstFragment.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SecondFragment.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_first.xml │ │ │ └── fragment_secondd.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── navigation │ │ │ └── mynav.xml │ │ │ ├── values-night │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── navone │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Network_Callbacks └── NetworkManager │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── networks │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── networks │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── networks │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Permissions ├── Permission1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── deploymentTargetDropDown.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── permission1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── permission1 │ │ │ │ │ ├── LocationActivity.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── PermissionActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_location.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_permission.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── permission1 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Permission2 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── permissions │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── permissions │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── PermissionActivity.kt │ │ │ │ └── RequestCodeActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_permission.xml │ │ │ └── activity_request_code.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── permissions │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md ├── Room ├── RoomCodelab │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── roomcodelab │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── roomcodelab │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── NewWordActivity.kt │ │ │ │ │ ├── WordApplication.kt │ │ │ │ │ ├── adapter │ │ │ │ │ └── WordsAdapter.kt │ │ │ │ │ ├── dao │ │ │ │ │ └── WordDao.kt │ │ │ │ │ ├── database │ │ │ │ │ └── WordDataBase.kt │ │ │ │ │ ├── entity │ │ │ │ │ └── Word.kt │ │ │ │ │ ├── repository │ │ │ │ │ └── WordRepository.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── VM2.kt │ │ │ │ │ ├── VM2F.kt │ │ │ │ │ ├── WordViewModel.kt │ │ │ │ │ └── WordViewModelFactory.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── baseline_add_24.xml │ │ │ │ ├── baseline_delete_24.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_new_word.xml │ │ │ │ └── example_row.xml │ │ │ │ ├── menu │ │ │ │ └── my_menu.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── roomcodelab │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── room1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── room1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── room1 │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── PersonViewModel.kt │ │ │ │ ├── adapter │ │ │ │ └── PersonAdapter.kt │ │ │ │ ├── db │ │ │ │ ├── dao │ │ │ │ │ └── PersonDao.kt │ │ │ │ ├── database │ │ │ │ │ └── PersonDatabase.kt │ │ │ │ ├── entity │ │ │ │ │ └── Person.kt │ │ │ │ └── repository │ │ │ │ │ └── PersonRepository.kt │ │ │ │ └── fragments │ │ │ │ ├── AddFragment.kt │ │ │ │ ├── ListFragment.kt │ │ │ │ └── UpdateFragment.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── baseline_add_24.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── example_row.xml │ │ │ ├── fragment_add.xml │ │ │ ├── fragment_list.xml │ │ │ └── fragment_update.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── navigation │ │ │ └── person_nav.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── room1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Services ├── Service1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── service1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── service1 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyService.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-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── service1 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Service3 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── deploymentTargetDropDown.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── service3 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── service3 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MyService.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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── service3 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── service2 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── helloservice │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── helloservice │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MyIntentService.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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── helloservice │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── SharedPrefs └── sharedPreferences1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── sharedpreferences │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── sharedpreferences │ │ │ │ └── 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-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── sharedpreferences │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── SystemTime └── LastBootTime │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── latboot │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── latboot │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── latboot │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TestContext ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── contexttoast1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── contexttoast1 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SecondActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── navigation │ │ │ └── nav_graph.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-w1240dp │ │ │ └── dimens.xml │ │ │ ├── values-w600dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── contexttoast1 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Viewmodels ├── livedata │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── livedata │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── livedata │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainViewModel.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-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── livedata │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── viewmodel1 │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ ├── aditya │ │ │ └── viewmodel1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ └── example │ │ │ └── viewmodel1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ ├── aditya │ │ │ │ └── viewmodel1 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainViewModel.kt │ │ │ │ └── example │ │ │ │ └── viewmodel1 │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainViewModel.kt │ │ │ │ └── MainViewModelFactory.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-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ ├── aditya │ │ └── viewmodel1 │ │ │ └── ExampleUnitTest.kt │ │ └── example │ │ └── viewmodel1 │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── coroutines └── Coroutine1 │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── coroutines │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── coroutines │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyApplication.kt │ │ │ │ └── SecondActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── coroutines │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── myapplication │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myapplication │ │ │ │ └── MapsActivity.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_maps.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── myapplication │ │ └── ExampleUnitTest.kt │ └── settings.gradle ├── firebase ├── Firebase Remote Config │ ├── Remote Config 2 │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── kotlinc.xml │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── google-services.json │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── remote_config2 │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── aditya │ │ │ │ │ │ └── remote_config2 │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── custom_dialogue.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-anydpi-v33 │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ │ └── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ ├── data_extraction_rules.xml │ │ │ │ │ └── remote_config_default.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── remote_config2 │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── RemoteConfig │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── remoteconfig │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── remoteconfig │ │ │ │ │ ├── FirstFragment.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── SecondFragment.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_android.webp │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_first.xml │ │ │ │ └── fragment_second.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── navigation │ │ │ │ └── nav.xml │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── remoteconfig │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── readme.md │ │ └── settings.gradle └── Firebase-Analytics │ └── Getting_Started │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── root │ │ │ └── gs_fa │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── root │ │ │ │ └── gs_fa │ │ │ │ ├── DiceViewModel.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── UserViewModel.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── baseline_supervised_user_circle_24.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── experience_dialogue.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── root │ │ └── gs_fa │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── gradle ├── gradle1 │ ├── .gitattributes │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── gradle.java │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── GradleTest.java └── how-to-gradle │ ├── .idea │ ├── .gitignore │ ├── dbnavigator.xml │ ├── how-to-gradle.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── my-another-project │ ├── .gradle │ │ ├── 8.0.2 │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ ├── dependencies-accessors │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ └── gc.properties │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── 8.0 │ │ │ ├── checksums │ │ │ │ └── checksums.lock │ │ │ ├── dependencies-accessors │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ └── gc.properties │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── file-system.probe │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── dbnavigator.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── java-plugins │ │ ├── build.gradle.kts │ │ ├── build │ │ │ ├── classes │ │ │ │ └── kotlin │ │ │ │ │ └── main │ │ │ │ │ ├── META-INF │ │ │ │ │ └── java-plugins.kotlin_module │ │ │ │ │ ├── MyJavaApplicationPlugin.class │ │ │ │ │ ├── MyJavaBasePlugin.class │ │ │ │ │ ├── MyJavaLibraryPlugin.class │ │ │ │ │ ├── My_java_application_gradle$1.class │ │ │ │ │ ├── My_java_application_gradle$2.class │ │ │ │ │ ├── My_java_application_gradle$inlined$sam$i$org_gradle_api_Action$0.class │ │ │ │ │ ├── My_java_application_gradle$packageApp$1$1.class │ │ │ │ │ ├── My_java_application_gradle$packageApp$1$2.class │ │ │ │ │ ├── My_java_application_gradle$packageApp$1.class │ │ │ │ │ ├── My_java_application_gradle.class │ │ │ │ │ ├── My_java_base_gradle$1.class │ │ │ │ │ ├── My_java_base_gradle$2.class │ │ │ │ │ ├── My_java_base_gradle$3.class │ │ │ │ │ ├── My_java_base_gradle$4.class │ │ │ │ │ ├── My_java_base_gradle$5.class │ │ │ │ │ ├── My_java_base_gradle$6.class │ │ │ │ │ ├── My_java_base_gradle$7.class │ │ │ │ │ ├── My_java_base_gradle$8.class │ │ │ │ │ ├── My_java_base_gradle$inlined$sam$i$org_gradle_api_Action$0.class │ │ │ │ │ ├── My_java_base_gradle.class │ │ │ │ │ ├── My_java_library_gradle$1.class │ │ │ │ │ ├── My_java_library_gradle$2$1.class │ │ │ │ │ ├── My_java_library_gradle$2.class │ │ │ │ │ ├── My_java_library_gradle$3.class │ │ │ │ │ ├── My_java_library_gradle.class │ │ │ │ │ └── gradle │ │ │ │ │ └── kotlin │ │ │ │ │ └── dsl │ │ │ │ │ ├── accessors │ │ │ │ │ ├── _550befb596988a36a92ff8eedca87611 │ │ │ │ │ │ ├── Accessors15c80wxji7qdhvcsteytc58m6Kt.class │ │ │ │ │ │ ├── Accessors16h8i8yvcoyu6adqodek0vazlKt.class │ │ │ │ │ │ ├── Accessors1crcmgpg53bs3tut9tzeov9zsKt.class │ │ │ │ │ │ ├── Accessors1je17tzadwn2i8n7cte4ejjucKt.class │ │ │ │ │ │ ├── Accessors1togd3myxkhlxm3hm03it918yKt.class │ │ │ │ │ │ ├── Accessors1y0x5zjrw062ti39iwig4ztsqKt.class │ │ │ │ │ │ ├── Accessors20m89wvqrtvolhrxzuq1utrarKt.class │ │ │ │ │ │ ├── Accessors21zhoq018jw7yza6oupdxasaqKt.class │ │ │ │ │ │ ├── Accessors2oadk7let745pm8ahqypkqzlkKt.class │ │ │ │ │ │ ├── Accessors2s1m7qhtdel2iy5x5gc2gv6f5Kt.class │ │ │ │ │ │ ├── Accessors30fkku080rcvoj344u192bkfhKt.class │ │ │ │ │ │ ├── Accessors32yk85ycsljiuajc2oknj21ltKt.class │ │ │ │ │ │ ├── Accessors33qjl5yednlyp9tyvd6yykvt5Kt.class │ │ │ │ │ │ ├── Accessors3dn3adhcpitetfd8lbt7c66zrKt.class │ │ │ │ │ │ ├── Accessors3lkj8uvuyc1fes1zjdaceqluwKt.class │ │ │ │ │ │ ├── Accessors45cftp2do14y8dm8cnj0yfjzmKt.class │ │ │ │ │ │ ├── Accessors46nwrg1rs44ofdqpi7vyy3pfcKt.class │ │ │ │ │ │ ├── Accessors48bzgepe4r2714fureurybloeKt.class │ │ │ │ │ │ ├── Accessors49985hyy071qu5jjdlrughl86Kt.class │ │ │ │ │ │ ├── Accessors4g3ee48g3j8ovb2sfufkb1xghKt.class │ │ │ │ │ │ ├── Accessors4ymn32ugs7fc7ez4f1y4vdr9nKt.class │ │ │ │ │ │ ├── Accessors5cx8iclyvbivcabq86i8mlot5Kt.class │ │ │ │ │ │ ├── Accessors5dc5ntgnadimckiddcyeoreqKt.class │ │ │ │ │ │ ├── Accessors5fk7ujd52n5i4lgh9rsd3nr80Kt.class │ │ │ │ │ │ ├── Accessors5r7od1ls1rcal14bwiw1aolf3Kt.class │ │ │ │ │ │ ├── Accessors60wvtf0hlc6m7pu4zcziugmriKt.class │ │ │ │ │ │ ├── Accessors62xgvb04612dadp03ybl5vf12Kt.class │ │ │ │ │ │ ├── Accessors6xkpc5r938hqmmzagr5yicp7sKt.class │ │ │ │ │ │ ├── Accessors72pwwp7evk4t6494cyybv7kk7Kt.class │ │ │ │ │ │ ├── Accessors7axcot3v1j7qpduaewb3aezf4Kt.class │ │ │ │ │ │ ├── Accessors7pildy6t6pgcmk0gyewx4z8k1Kt.class │ │ │ │ │ │ ├── Accessors8lcri9ibgd9oj8dt3t8z8nvfxKt.class │ │ │ │ │ │ ├── Accessors8uzlaa9ndo750hmo4da2vgu2vKt.class │ │ │ │ │ │ ├── Accessors8zd6u262ixrjkrpgx69mnl0hjKt.class │ │ │ │ │ │ ├── Accessors96b3ii45gitqpy1kb3tvcvtxvKt.class │ │ │ │ │ │ ├── Accessors9ofjxssccbksmuzem03z8pl6Kt.class │ │ │ │ │ │ ├── Accessors9upc35ddn1m31thgty51w1nrjKt.class │ │ │ │ │ │ ├── Accessors9xbdx9ypglb5iceqwefq3l2uKt.class │ │ │ │ │ │ ├── Accessors9xim6xjdq0ry1lmc4wm5ei8ehKt.class │ │ │ │ │ │ ├── Accessorsa47105wcmcbzx75lm7p2ciqqbKt.class │ │ │ │ │ │ ├── Accessorsaofthkmarv0q41bodk71vcqi7Kt.class │ │ │ │ │ │ ├── Accessorsblypoh2ruc9u3bx9djsfqsntgKt.class │ │ │ │ │ │ ├── Accessorsbp4j8g31qsxo0ekjysvxih5jgKt.class │ │ │ │ │ │ ├── Accessorsbtc8iwv8u9b0f38ikfmodj8nsKt.class │ │ │ │ │ │ ├── Accessorscak1dgyetuwjmu488pnnsldwcKt.class │ │ │ │ │ │ ├── Accessorscosmuqa5m4pz5v4rp16nnpsrnKt.class │ │ │ │ │ │ ├── Accessorsdemns0nrfvv4tm1e985ahms6rKt.class │ │ │ │ │ │ ├── Accessorsdhblu8rt4vbwuf4rib4cwj9luKt.class │ │ │ │ │ │ ├── Accessorsdirr8g3rs0a9h4cvi2o23j1gyKt.class │ │ │ │ │ │ ├── Accessorsdjndpeyafmkvjrxu9kp0ma1gnKt.class │ │ │ │ │ │ ├── Accessorse3nu4a2kmhhq7smy0tcmgt45gKt.class │ │ │ │ │ │ ├── Accessorse63o1t85fyc2j2y6mbe9ytoehKt.class │ │ │ │ │ │ ├── Accessorseessl0al0otcsbyqqruvoncpdKt.class │ │ │ │ │ │ ├── Accessorsem8w6wnof1lrw3ubqr6eh9gcjKt.class │ │ │ │ │ │ ├── Accessorsf2jx22njgpl8k21k7scc1t0rwKt.class │ │ │ │ │ │ ├── Accessorsfbf92xd7bth9xw3u4y6q8qcdKt.class │ │ │ │ │ │ ├── Accessorsw34mwj3hroscfmyxar5atwjzKt.class │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ApiConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ApiConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ApiElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ApiElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ArchivesConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ArchivesConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CompileOnlyApiConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CompileOnlyApiConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── DefaultConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── DefaultConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ImplementationConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ImplementationConfigurationAccessorsKt.class │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestImplementationConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestImplementationConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestRuntimeOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ └── TestRuntimeOnlyConfigurationAccessorsKt.class │ │ │ │ │ └── _e95177b527f1a03c6bc68012ea0e232e │ │ │ │ │ │ ├── Accessors15c80wxji7qdhvcsteytc58m6Kt.class │ │ │ │ │ │ ├── Accessors16h8i8yvcoyu6adqodek0vazlKt.class │ │ │ │ │ │ ├── Accessors1crcmgpg53bs3tut9tzeov9zsKt.class │ │ │ │ │ │ ├── Accessors1je17tzadwn2i8n7cte4ejjucKt.class │ │ │ │ │ │ ├── Accessors1y0x5zjrw062ti39iwig4ztsqKt.class │ │ │ │ │ │ ├── Accessors20m89wvqrtvolhrxzuq1utrarKt.class │ │ │ │ │ │ ├── Accessors21zhoq018jw7yza6oupdxasaqKt.class │ │ │ │ │ │ ├── Accessors2oadk7let745pm8ahqypkqzlkKt.class │ │ │ │ │ │ ├── Accessors2s1m7qhtdel2iy5x5gc2gv6f5Kt.class │ │ │ │ │ │ ├── Accessors30fkku080rcvoj344u192bkfhKt.class │ │ │ │ │ │ ├── Accessors32yk85ycsljiuajc2oknj21ltKt.class │ │ │ │ │ │ ├── Accessors33qjl5yednlyp9tyvd6yykvt5Kt.class │ │ │ │ │ │ ├── Accessors37dj0ib9r9p217jjo2xfctawwKt.class │ │ │ │ │ │ ├── Accessors3dn3adhcpitetfd8lbt7c66zrKt.class │ │ │ │ │ │ ├── Accessors3lkj8uvuyc1fes1zjdaceqluwKt.class │ │ │ │ │ │ ├── Accessors45cftp2do14y8dm8cnj0yfjzmKt.class │ │ │ │ │ │ ├── Accessors46nwrg1rs44ofdqpi7vyy3pfcKt.class │ │ │ │ │ │ ├── Accessors486ue06w1j1bxovwzktgvhy42Kt.class │ │ │ │ │ │ ├── Accessors48bzgepe4r2714fureurybloeKt.class │ │ │ │ │ │ ├── Accessors49985hyy071qu5jjdlrughl86Kt.class │ │ │ │ │ │ ├── Accessors4b6sihmf8ywg4f9j9vv880bksKt.class │ │ │ │ │ │ ├── Accessors4g3ee48g3j8ovb2sfufkb1xghKt.class │ │ │ │ │ │ ├── Accessors4ymn32ugs7fc7ez4f1y4vdr9nKt.class │ │ │ │ │ │ ├── Accessors5cx8iclyvbivcabq86i8mlot5Kt.class │ │ │ │ │ │ ├── Accessors5dc5ntgnadimckiddcyeoreqKt.class │ │ │ │ │ │ ├── Accessors5fk7ujd52n5i4lgh9rsd3nr80Kt.class │ │ │ │ │ │ ├── Accessors5r7od1ls1rcal14bwiw1aolf3Kt.class │ │ │ │ │ │ ├── Accessors60wvtf0hlc6m7pu4zcziugmriKt.class │ │ │ │ │ │ ├── Accessors62xgvb04612dadp03ybl5vf12Kt.class │ │ │ │ │ │ ├── Accessors6xkpc5r938hqmmzagr5yicp7sKt.class │ │ │ │ │ │ ├── Accessors72pwwp7evk4t6494cyybv7kk7Kt.class │ │ │ │ │ │ ├── Accessors7axcot3v1j7qpduaewb3aezf4Kt.class │ │ │ │ │ │ ├── Accessors7pildy6t6pgcmk0gyewx4z8k1Kt.class │ │ │ │ │ │ ├── Accessors8lcri9ibgd9oj8dt3t8z8nvfxKt.class │ │ │ │ │ │ ├── Accessors8uzlaa9ndo750hmo4da2vgu2vKt.class │ │ │ │ │ │ ├── Accessors8zd6u262ixrjkrpgx69mnl0hjKt.class │ │ │ │ │ │ ├── Accessors96b3ii45gitqpy1kb3tvcvtxvKt.class │ │ │ │ │ │ ├── Accessors9ofjxssccbksmuzem03z8pl6Kt.class │ │ │ │ │ │ ├── Accessors9upc35ddn1m31thgty51w1nrjKt.class │ │ │ │ │ │ ├── Accessors9xbdx9ypglb5iceqwefq3l2uKt.class │ │ │ │ │ │ ├── Accessors9xim6xjdq0ry1lmc4wm5ei8ehKt.class │ │ │ │ │ │ ├── Accessorsa47105wcmcbzx75lm7p2ciqqbKt.class │ │ │ │ │ │ ├── Accessorsaofthkmarv0q41bodk71vcqi7Kt.class │ │ │ │ │ │ ├── Accessorsblypoh2ruc9u3bx9djsfqsntgKt.class │ │ │ │ │ │ ├── Accessorsbp4j8g31qsxo0ekjysvxih5jgKt.class │ │ │ │ │ │ ├── Accessorsbtc8iwv8u9b0f38ikfmodj8nsKt.class │ │ │ │ │ │ ├── Accessorsc9u8nbajp06hupz1gceduhr54Kt.class │ │ │ │ │ │ ├── Accessorscak1dgyetuwjmu488pnnsldwcKt.class │ │ │ │ │ │ ├── Accessorscosmuqa5m4pz5v4rp16nnpsrnKt.class │ │ │ │ │ │ ├── Accessorsdemns0nrfvv4tm1e985ahms6rKt.class │ │ │ │ │ │ ├── Accessorsdirr8g3rs0a9h4cvi2o23j1gyKt.class │ │ │ │ │ │ ├── Accessorsdjndpeyafmkvjrxu9kp0ma1gnKt.class │ │ │ │ │ │ ├── Accessorse3nu4a2kmhhq7smy0tcmgt45gKt.class │ │ │ │ │ │ ├── Accessorse63o1t85fyc2j2y6mbe9ytoehKt.class │ │ │ │ │ │ ├── Accessorseessl0al0otcsbyqqruvoncpdKt.class │ │ │ │ │ │ ├── Accessorsem8w6wnof1lrw3ubqr6eh9gcjKt.class │ │ │ │ │ │ ├── Accessorsen9lscnj41e3tu8pu0crbtwxgKt.class │ │ │ │ │ │ ├── Accessorsf2jx22njgpl8k21k7scc1t0rwKt.class │ │ │ │ │ │ ├── Accessorsfbf92xd7bth9xw3u4y6q8qcdKt.class │ │ │ │ │ │ ├── Accessorsw34mwj3hroscfmyxar5atwjzKt.class │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ApiElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ApiElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ArchivesConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ArchivesConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CheckstyleConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CheckstyleConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── DefaultConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── DefaultConfigurationAccessorsKt.class │ │ │ │ │ │ ├── ImplementationConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── ImplementationConfigurationAccessorsKt.class │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessorsKt.class │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestImplementationConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestImplementationConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessorsKt.class │ │ │ │ │ │ ├── TestRuntimeOnlyConfigurationAccessorsKt$sam$org_gradle_api_Action$0.class │ │ │ │ │ │ └── TestRuntimeOnlyConfigurationAccessorsKt.class │ │ │ │ │ └── plugins │ │ │ │ │ └── _e97c1fab54dc1575c2fd11852aed92e7 │ │ │ │ │ ├── OrgGradlePluginGroup.class │ │ │ │ │ ├── OrgJetbrainsKotlinNativePluginGroup.class │ │ │ │ │ ├── OrgJetbrainsKotlinPlatformPluginGroup.class │ │ │ │ │ ├── OrgJetbrainsKotlinPluginGroup.class │ │ │ │ │ ├── OrgJetbrainsKotlinPluginPluginGroup.class │ │ │ │ │ ├── OrgJetbrainsPluginGroup.class │ │ │ │ │ ├── OrgPluginGroup.class │ │ │ │ │ └── PluginSpecBuildersKt.class │ │ │ ├── generated-sources │ │ │ │ ├── kotlin-dsl-accessors │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── gradle │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── dsl │ │ │ │ │ │ └── accessors │ │ │ │ │ │ ├── _550befb596988a36a92ff8eedca87611 │ │ │ │ │ │ ├── Accessors15c80wxji7qdhvcsteytc58m6.kt │ │ │ │ │ │ ├── Accessors16h8i8yvcoyu6adqodek0vazl.kt │ │ │ │ │ │ ├── Accessors1crcmgpg53bs3tut9tzeov9zs.kt │ │ │ │ │ │ ├── Accessors1je17tzadwn2i8n7cte4ejjuc.kt │ │ │ │ │ │ ├── Accessors1togd3myxkhlxm3hm03it918y.kt │ │ │ │ │ │ ├── Accessors1y0x5zjrw062ti39iwig4ztsq.kt │ │ │ │ │ │ ├── Accessors20m89wvqrtvolhrxzuq1utrar.kt │ │ │ │ │ │ ├── Accessors21zhoq018jw7yza6oupdxasaq.kt │ │ │ │ │ │ ├── Accessors2oadk7let745pm8ahqypkqzlk.kt │ │ │ │ │ │ ├── Accessors2s1m7qhtdel2iy5x5gc2gv6f5.kt │ │ │ │ │ │ ├── Accessors30fkku080rcvoj344u192bkfh.kt │ │ │ │ │ │ ├── Accessors32yk85ycsljiuajc2oknj21lt.kt │ │ │ │ │ │ ├── Accessors33qjl5yednlyp9tyvd6yykvt5.kt │ │ │ │ │ │ ├── Accessors3dn3adhcpitetfd8lbt7c66zr.kt │ │ │ │ │ │ ├── Accessors3lkj8uvuyc1fes1zjdaceqluw.kt │ │ │ │ │ │ ├── Accessors45cftp2do14y8dm8cnj0yfjzm.kt │ │ │ │ │ │ ├── Accessors46nwrg1rs44ofdqpi7vyy3pfc.kt │ │ │ │ │ │ ├── Accessors48bzgepe4r2714fureurybloe.kt │ │ │ │ │ │ ├── Accessors49985hyy071qu5jjdlrughl86.kt │ │ │ │ │ │ ├── Accessors4g3ee48g3j8ovb2sfufkb1xgh.kt │ │ │ │ │ │ ├── Accessors4ymn32ugs7fc7ez4f1y4vdr9n.kt │ │ │ │ │ │ ├── Accessors5cx8iclyvbivcabq86i8mlot5.kt │ │ │ │ │ │ ├── Accessors5dc5ntgnadimckiddcyeoreq.kt │ │ │ │ │ │ ├── Accessors5fk7ujd52n5i4lgh9rsd3nr80.kt │ │ │ │ │ │ ├── Accessors5r7od1ls1rcal14bwiw1aolf3.kt │ │ │ │ │ │ ├── Accessors60wvtf0hlc6m7pu4zcziugmri.kt │ │ │ │ │ │ ├── Accessors62xgvb04612dadp03ybl5vf12.kt │ │ │ │ │ │ ├── Accessors6xkpc5r938hqmmzagr5yicp7s.kt │ │ │ │ │ │ ├── Accessors72pwwp7evk4t6494cyybv7kk7.kt │ │ │ │ │ │ ├── Accessors7axcot3v1j7qpduaewb3aezf4.kt │ │ │ │ │ │ ├── Accessors7pildy6t6pgcmk0gyewx4z8k1.kt │ │ │ │ │ │ ├── Accessors8lcri9ibgd9oj8dt3t8z8nvfx.kt │ │ │ │ │ │ ├── Accessors8uzlaa9ndo750hmo4da2vgu2v.kt │ │ │ │ │ │ ├── Accessors8zd6u262ixrjkrpgx69mnl0hj.kt │ │ │ │ │ │ ├── Accessors96b3ii45gitqpy1kb3tvcvtxv.kt │ │ │ │ │ │ ├── Accessors9ofjxssccbksmuzem03z8pl6.kt │ │ │ │ │ │ ├── Accessors9upc35ddn1m31thgty51w1nrj.kt │ │ │ │ │ │ ├── Accessors9xbdx9ypglb5iceqwefq3l2u.kt │ │ │ │ │ │ ├── Accessors9xim6xjdq0ry1lmc4wm5ei8eh.kt │ │ │ │ │ │ ├── Accessorsa47105wcmcbzx75lm7p2ciqqb.kt │ │ │ │ │ │ ├── Accessorsaofthkmarv0q41bodk71vcqi7.kt │ │ │ │ │ │ ├── Accessorsblypoh2ruc9u3bx9djsfqsntg.kt │ │ │ │ │ │ ├── Accessorsbp4j8g31qsxo0ekjysvxih5jg.kt │ │ │ │ │ │ ├── Accessorsbtc8iwv8u9b0f38ikfmodj8ns.kt │ │ │ │ │ │ ├── Accessorscak1dgyetuwjmu488pnnsldwc.kt │ │ │ │ │ │ ├── Accessorscosmuqa5m4pz5v4rp16nnpsrn.kt │ │ │ │ │ │ ├── Accessorsdemns0nrfvv4tm1e985ahms6r.kt │ │ │ │ │ │ ├── Accessorsdhblu8rt4vbwuf4rib4cwj9lu.kt │ │ │ │ │ │ ├── Accessorsdirr8g3rs0a9h4cvi2o23j1gy.kt │ │ │ │ │ │ ├── Accessorsdjndpeyafmkvjrxu9kp0ma1gn.kt │ │ │ │ │ │ ├── Accessorse3nu4a2kmhhq7smy0tcmgt45g.kt │ │ │ │ │ │ ├── Accessorse63o1t85fyc2j2y6mbe9ytoeh.kt │ │ │ │ │ │ ├── Accessorseessl0al0otcsbyqqruvoncpd.kt │ │ │ │ │ │ ├── Accessorsem8w6wnof1lrw3ubqr6eh9gcj.kt │ │ │ │ │ │ ├── Accessorsf2jx22njgpl8k21k7scc1t0rw.kt │ │ │ │ │ │ ├── Accessorsfbf92xd7bth9xw3u4y6q8qcd.kt │ │ │ │ │ │ ├── Accessorsw34mwj3hroscfmyxar5atwjz.kt │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessors.kt │ │ │ │ │ │ ├── ApiConfigurationAccessors.kt │ │ │ │ │ │ ├── ApiElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── ArchivesConfigurationAccessors.kt │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── CompileOnlyApiConfigurationAccessors.kt │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── DefaultConfigurationAccessors.kt │ │ │ │ │ │ ├── ImplementationConfigurationAccessors.kt │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessors.kt │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── TestImplementationConfigurationAccessors.kt │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessors.kt │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessors.kt │ │ │ │ │ │ └── TestRuntimeOnlyConfigurationAccessors.kt │ │ │ │ │ │ └── _e95177b527f1a03c6bc68012ea0e232e │ │ │ │ │ │ ├── Accessors15c80wxji7qdhvcsteytc58m6.kt │ │ │ │ │ │ ├── Accessors16h8i8yvcoyu6adqodek0vazl.kt │ │ │ │ │ │ ├── Accessors1crcmgpg53bs3tut9tzeov9zs.kt │ │ │ │ │ │ ├── Accessors1je17tzadwn2i8n7cte4ejjuc.kt │ │ │ │ │ │ ├── Accessors1y0x5zjrw062ti39iwig4ztsq.kt │ │ │ │ │ │ ├── Accessors20m89wvqrtvolhrxzuq1utrar.kt │ │ │ │ │ │ ├── Accessors21zhoq018jw7yza6oupdxasaq.kt │ │ │ │ │ │ ├── Accessors2oadk7let745pm8ahqypkqzlk.kt │ │ │ │ │ │ ├── Accessors2s1m7qhtdel2iy5x5gc2gv6f5.kt │ │ │ │ │ │ ├── Accessors30fkku080rcvoj344u192bkfh.kt │ │ │ │ │ │ ├── Accessors32yk85ycsljiuajc2oknj21lt.kt │ │ │ │ │ │ ├── Accessors33qjl5yednlyp9tyvd6yykvt5.kt │ │ │ │ │ │ ├── Accessors37dj0ib9r9p217jjo2xfctaww.kt │ │ │ │ │ │ ├── Accessors3dn3adhcpitetfd8lbt7c66zr.kt │ │ │ │ │ │ ├── Accessors3lkj8uvuyc1fes1zjdaceqluw.kt │ │ │ │ │ │ ├── Accessors45cftp2do14y8dm8cnj0yfjzm.kt │ │ │ │ │ │ ├── Accessors46nwrg1rs44ofdqpi7vyy3pfc.kt │ │ │ │ │ │ ├── Accessors486ue06w1j1bxovwzktgvhy42.kt │ │ │ │ │ │ ├── Accessors48bzgepe4r2714fureurybloe.kt │ │ │ │ │ │ ├── Accessors49985hyy071qu5jjdlrughl86.kt │ │ │ │ │ │ ├── Accessors4b6sihmf8ywg4f9j9vv880bks.kt │ │ │ │ │ │ ├── Accessors4g3ee48g3j8ovb2sfufkb1xgh.kt │ │ │ │ │ │ ├── Accessors4ymn32ugs7fc7ez4f1y4vdr9n.kt │ │ │ │ │ │ ├── Accessors5cx8iclyvbivcabq86i8mlot5.kt │ │ │ │ │ │ ├── Accessors5dc5ntgnadimckiddcyeoreq.kt │ │ │ │ │ │ ├── Accessors5fk7ujd52n5i4lgh9rsd3nr80.kt │ │ │ │ │ │ ├── Accessors5r7od1ls1rcal14bwiw1aolf3.kt │ │ │ │ │ │ ├── Accessors60wvtf0hlc6m7pu4zcziugmri.kt │ │ │ │ │ │ ├── Accessors62xgvb04612dadp03ybl5vf12.kt │ │ │ │ │ │ ├── Accessors6xkpc5r938hqmmzagr5yicp7s.kt │ │ │ │ │ │ ├── Accessors72pwwp7evk4t6494cyybv7kk7.kt │ │ │ │ │ │ ├── Accessors7axcot3v1j7qpduaewb3aezf4.kt │ │ │ │ │ │ ├── Accessors7pildy6t6pgcmk0gyewx4z8k1.kt │ │ │ │ │ │ ├── Accessors8lcri9ibgd9oj8dt3t8z8nvfx.kt │ │ │ │ │ │ ├── Accessors8uzlaa9ndo750hmo4da2vgu2v.kt │ │ │ │ │ │ ├── Accessors8zd6u262ixrjkrpgx69mnl0hj.kt │ │ │ │ │ │ ├── Accessors96b3ii45gitqpy1kb3tvcvtxv.kt │ │ │ │ │ │ ├── Accessors9ofjxssccbksmuzem03z8pl6.kt │ │ │ │ │ │ ├── Accessors9upc35ddn1m31thgty51w1nrj.kt │ │ │ │ │ │ ├── Accessors9xbdx9ypglb5iceqwefq3l2u.kt │ │ │ │ │ │ ├── Accessors9xim6xjdq0ry1lmc4wm5ei8eh.kt │ │ │ │ │ │ ├── Accessorsa47105wcmcbzx75lm7p2ciqqb.kt │ │ │ │ │ │ ├── Accessorsaofthkmarv0q41bodk71vcqi7.kt │ │ │ │ │ │ ├── Accessorsblypoh2ruc9u3bx9djsfqsntg.kt │ │ │ │ │ │ ├── Accessorsbp4j8g31qsxo0ekjysvxih5jg.kt │ │ │ │ │ │ ├── Accessorsbtc8iwv8u9b0f38ikfmodj8ns.kt │ │ │ │ │ │ ├── Accessorsc9u8nbajp06hupz1gceduhr54.kt │ │ │ │ │ │ ├── Accessorscak1dgyetuwjmu488pnnsldwc.kt │ │ │ │ │ │ ├── Accessorscosmuqa5m4pz5v4rp16nnpsrn.kt │ │ │ │ │ │ ├── Accessorsdemns0nrfvv4tm1e985ahms6r.kt │ │ │ │ │ │ ├── Accessorsdirr8g3rs0a9h4cvi2o23j1gy.kt │ │ │ │ │ │ ├── Accessorsdjndpeyafmkvjrxu9kp0ma1gn.kt │ │ │ │ │ │ ├── Accessorse3nu4a2kmhhq7smy0tcmgt45g.kt │ │ │ │ │ │ ├── Accessorse63o1t85fyc2j2y6mbe9ytoeh.kt │ │ │ │ │ │ ├── Accessorseessl0al0otcsbyqqruvoncpd.kt │ │ │ │ │ │ ├── Accessorsem8w6wnof1lrw3ubqr6eh9gcj.kt │ │ │ │ │ │ ├── Accessorsen9lscnj41e3tu8pu0crbtwxg.kt │ │ │ │ │ │ ├── Accessorsf2jx22njgpl8k21k7scc1t0rw.kt │ │ │ │ │ │ ├── Accessorsfbf92xd7bth9xw3u4y6q8qcd.kt │ │ │ │ │ │ ├── Accessorsw34mwj3hroscfmyxar5atwjz.kt │ │ │ │ │ │ ├── AnnotationProcessorConfigurationAccessors.kt │ │ │ │ │ │ ├── ApiElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── ArchivesConfigurationAccessors.kt │ │ │ │ │ │ ├── CheckstyleConfigurationAccessors.kt │ │ │ │ │ │ ├── CompileClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── CompileOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── DefaultConfigurationAccessors.kt │ │ │ │ │ │ ├── ImplementationConfigurationAccessors.kt │ │ │ │ │ │ ├── MainSourceElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeElementsConfigurationAccessors.kt │ │ │ │ │ │ ├── RuntimeOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── TestAnnotationProcessorConfigurationAccessors.kt │ │ │ │ │ │ ├── TestCompileClasspathConfigurationAccessors.kt │ │ │ │ │ │ ├── TestCompileOnlyConfigurationAccessors.kt │ │ │ │ │ │ ├── TestImplementationConfigurationAccessors.kt │ │ │ │ │ │ ├── TestResultsElementsForTestConfigurationAccessors.kt │ │ │ │ │ │ ├── TestRuntimeClasspathConfigurationAccessors.kt │ │ │ │ │ │ └── TestRuntimeOnlyConfigurationAccessors.kt │ │ │ │ ├── kotlin-dsl-external-plugin-spec-builders │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── gradle │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ └── dsl │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── _e97c1fab54dc1575c2fd11852aed92e7 │ │ │ │ │ │ └── PluginSpecBuilders.kt │ │ │ │ └── kotlin-dsl-plugins │ │ │ │ │ └── kotlin │ │ │ │ │ ├── MyJavaApplicationPlugin.kt │ │ │ │ │ ├── MyJavaBasePlugin.kt │ │ │ │ │ └── MyJavaLibraryPlugin.kt │ │ │ ├── kotlin-dsl │ │ │ │ ├── plugins-blocks │ │ │ │ │ ├── compiled │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ └── precompiled-script-plugin-plugins.kotlin_module │ │ │ │ │ │ ├── My_java_application_gradle.class │ │ │ │ │ │ ├── My_java_base_gradle.class │ │ │ │ │ │ ├── My_java_library_gradle.class │ │ │ │ │ │ └── gradle │ │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ │ └── dsl │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ └── _e97c1fab54dc1575c2fd11852aed92e7 │ │ │ │ │ │ │ ├── OrgGradlePluginGroup.class │ │ │ │ │ │ │ ├── OrgJetbrainsKotlinNativePluginGroup.class │ │ │ │ │ │ │ ├── OrgJetbrainsKotlinPlatformPluginGroup.class │ │ │ │ │ │ │ ├── OrgJetbrainsKotlinPluginGroup.class │ │ │ │ │ │ │ ├── OrgJetbrainsKotlinPluginPluginGroup.class │ │ │ │ │ │ │ ├── OrgJetbrainsPluginGroup.class │ │ │ │ │ │ │ ├── OrgPluginGroup.class │ │ │ │ │ │ │ └── PluginSpecBuildersKt.class │ │ │ │ │ └── extracted │ │ │ │ │ │ ├── my-java-application.gradle.kts │ │ │ │ │ │ ├── my-java-base.gradle.kts │ │ │ │ │ │ └── my-java-library.gradle.kts │ │ │ │ └── precompiled-script-plugins-metadata │ │ │ │ │ ├── accessors │ │ │ │ │ ├── 66bfebf3465716a3042f191b23f970b1 │ │ │ │ │ ├── 676194f7d91490bdeb45da9bc297064b │ │ │ │ │ └── cb2c7f4345731fa13f87eaa066b59007 │ │ │ │ │ └── plugin-spec-builders │ │ │ │ │ └── implicit-imports │ │ │ ├── kotlin │ │ │ │ ├── compileKotlin │ │ │ │ │ ├── cacheable │ │ │ │ │ │ ├── caches-jvm │ │ │ │ │ │ │ ├── inputs │ │ │ │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ │ │ │ ├── source-to-output.tab.values │ │ │ │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ │ │ │ ├── source-to-output.tab.values.s │ │ │ │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ │ │ │ ├── jvm │ │ │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.values │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab.values.s │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ │ │ │ ├── proto.tab.values │ │ │ │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ │ │ │ ├── proto.tab.values.s │ │ │ │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ │ │ │ │ └── supertypes.tab_i.len │ │ │ │ │ │ │ └── lookups │ │ │ │ │ │ │ │ ├── counters.tab │ │ │ │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ │ │ │ ├── lookups.tab │ │ │ │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ │ │ │ ├── lookups.tab.values │ │ │ │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ │ │ │ ├── lookups.tab.values.s │ │ │ │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ │ │ │ └── lookups.tab_i.len │ │ │ │ │ │ └── last-build.bin │ │ │ │ │ └── local-state │ │ │ │ │ │ └── build-history.bin │ │ │ │ └── javapluginsjar-classes.txt │ │ │ ├── libs │ │ │ │ └── java-plugins.jar │ │ │ ├── pluginDescriptors │ │ │ │ ├── my-java-application.properties │ │ │ │ ├── my-java-base.properties │ │ │ │ └── my-java-library.properties │ │ │ ├── resources │ │ │ │ └── main │ │ │ │ │ └── META-INF │ │ │ │ │ └── gradle-plugins │ │ │ │ │ ├── my-java-application.properties │ │ │ │ │ ├── my-java-base.properties │ │ │ │ │ └── my-java-library.properties │ │ │ └── tmp │ │ │ │ ├── generatePrecompiledScriptPluginAccessors │ │ │ │ ├── accessors11118775241914402983 │ │ │ │ │ └── .gradle │ │ │ │ │ │ ├── 8.0.2 │ │ │ │ │ │ ├── checksums │ │ │ │ │ │ │ └── checksums.lock │ │ │ │ │ │ ├── fileHashes │ │ │ │ │ │ │ └── fileHashes.lock │ │ │ │ │ │ └── gc.properties │ │ │ │ │ │ ├── buildOutputCleanup │ │ │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ │ │ └── cache.properties │ │ │ │ │ │ ├── file-system.probe │ │ │ │ │ │ └── vcs-1 │ │ │ │ │ │ └── gc.properties │ │ │ │ └── accessors3951395256792714559 │ │ │ │ │ └── .gradle │ │ │ │ │ ├── 8.0.2 │ │ │ │ │ ├── checksums │ │ │ │ │ │ └── checksums.lock │ │ │ │ │ ├── fileHashes │ │ │ │ │ │ └── fileHashes.lock │ │ │ │ │ └── gc.properties │ │ │ │ │ ├── buildOutputCleanup │ │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ │ └── cache.properties │ │ │ │ │ ├── file-system.probe │ │ │ │ │ └── vcs-1 │ │ │ │ │ └── gc.properties │ │ │ │ └── jar │ │ │ │ └── MANIFEST.MF │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ ├── my-java-application.gradle.kts │ │ │ ├── my-java-base.gradle.kts │ │ │ └── my-java-library.gradle.kts │ └── settings.gradle.kts │ ├── my-build-logic │ └── settings.gradle.kts │ └── my-project │ ├── .gradle │ ├── 8.0.2 │ │ ├── checksums │ │ │ └── checksums.lock │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ └── gc.properties │ ├── 8.0 │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ ├── file-system.probe │ └── vcs-1 │ │ └── gc.properties │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── dbnavigator.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ └── business-logic │ │ │ └── my-project.business-logic.main.iml │ └── vcs.xml │ ├── app │ ├── build.gradle.kts │ ├── build │ │ ├── distro │ │ │ └── myApplication.zip │ │ ├── libs │ │ │ └── app.jar │ │ └── tmp │ │ │ └── jar │ │ │ └── MANIFEST.MF │ └── run.sh │ ├── build.gradle.kts │ ├── business-logic │ ├── build.gradle.kts │ └── build │ │ ├── libs │ │ └── business-logic.jar │ │ └── tmp │ │ └── jar │ │ └── MANIFEST.MF │ ├── domain-layer │ ├── build.gradle.kts │ └── build │ │ ├── libs │ │ └── domain-layer.jar │ │ └── tmp │ │ └── jar │ │ └── MANIFEST.MF │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── intents ├── .idea │ ├── .gitignore │ ├── intents.iml │ ├── misc.xml │ └── modules.xml ├── AvroTest │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── avrotest │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── avrotest │ │ │ │ │ └── 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.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── avrotest │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Intent1 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── kotlinc.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── intent1 │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── aditya │ │ │ │ │ └── intent1 │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── SecondActivity.kt │ │ │ │ │ └── test.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_second.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── intent1 │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── MyApplication │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── myapplication │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── myapplication │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── networking └── ApiFetchingRetrofitMVVM │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myapplication │ │ │ │ ├── data │ │ │ │ ├── api │ │ │ │ │ ├── ApiService.kt │ │ │ │ │ └── RetrofitInstance.kt │ │ │ │ ├── model │ │ │ │ │ └── Post.kt │ │ │ │ └── repository │ │ │ │ │ └── Repository.kt │ │ │ │ ├── ui │ │ │ │ ├── adapters │ │ │ │ │ └── PostsAdapter.kt │ │ │ │ ├── view │ │ │ │ │ └── MainActivity.kt │ │ │ │ ├── viewmodel │ │ │ │ │ └── MainViewModel.kt │ │ │ │ └── viewmodelfactory │ │ │ │ │ └── MainViewModelFactory.kt │ │ │ │ └── utils │ │ │ │ └── Constant.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── row_layout.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── myapplication │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── threads ├── .idea ├── .gitignore ├── modules.xml ├── threads.iml └── vcs.xml ├── AsyncTask5 ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── asynctasks │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── asynctasks │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── asynctasks │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── HandlerThread4 ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── handlerthread │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── handlerthread │ │ │ │ ├── CustomHandlerThread.kt │ │ │ │ └── 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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── handlerthread │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── IntentService6 └── .idea │ ├── kotlinc.xml │ ├── misc.xml │ └── workspace.xml ├── Thread2 ├── .gitignore ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── thread2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── thread2 │ │ │ │ ├── ExampleLooperThread.kt │ │ │ │ └── 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-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── thread2 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Threads3 ├── .README.md.swp ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── kotlinc.xml │ ├── misc.xml │ └── vcs.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── aditya │ │ │ └── thread3 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── aditya │ │ │ │ └── thread3 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MyLooperThread.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.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── aditya │ │ └── thread3 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── thread1 ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── gradle.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── aditya │ │ └── thread1 │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── aditya │ │ │ └── thread1 │ │ │ └── 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-anydpi-v33 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── aditya │ └── thread1 │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /Actiities/TasksBackstack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.gitignore -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/.name: -------------------------------------------------------------------------------- 1 | TaskBackstack -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.idea/compiler.xml -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.idea/gradle.xml -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.idea/misc.xml -------------------------------------------------------------------------------- /Actiities/TasksBackstack/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/.idea/vcs.xml -------------------------------------------------------------------------------- /Actiities/TasksBackstack/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Actiities/TasksBackstack/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/app/build.gradle -------------------------------------------------------------------------------- /Actiities/TasksBackstack/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/app/proguard-rules.pro -------------------------------------------------------------------------------- /Actiities/TasksBackstack/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/build.gradle -------------------------------------------------------------------------------- /Actiities/TasksBackstack/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/gradle.properties -------------------------------------------------------------------------------- /Actiities/TasksBackstack/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/gradlew -------------------------------------------------------------------------------- /Actiities/TasksBackstack/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/gradlew.bat -------------------------------------------------------------------------------- /Actiities/TasksBackstack/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Actiities/TasksBackstack/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/.name: -------------------------------------------------------------------------------- 1 | AlarmManager -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/app/proguard-rules.pro -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/AlarmManager2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/AlarmManager2/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/app/proguard-rules.pro -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/BoundServices3/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/BoundServices3/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/.name: -------------------------------------------------------------------------------- 1 | AppForegroundServices -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/ForegroundServices4/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ForegroundServices4/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/.name: -------------------------------------------------------------------------------- 1 | IntentService -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/IntentService6/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/IntentService6/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/.name: -------------------------------------------------------------------------------- 1 | JobScheduler1 -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/README.md -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/Jobscheduler1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/Jobscheduler1/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/MyApplication/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/MyApplication/settings.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.gitignore -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.idea/compiler.xml -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.idea/gradle.xml -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.idea/kotlinc.xml -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.idea/misc.xml -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/.idea/vcs.xml -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/app/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/build.gradle -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/gradle.properties -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/gradlew -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/gradlew.bat -------------------------------------------------------------------------------- /BackgroundTasks/ServiceActivity/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BackgroundTasks/ServiceActivity/settings.gradle -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.gitignore -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/.name: -------------------------------------------------------------------------------- 1 | Bluetooth1 -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.idea/compiler.xml -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.idea/gradle.xml -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.idea/misc.xml -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/.idea/vcs.xml -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/app/build.gradle -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/build.gradle -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/gradle.properties -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/gradlew -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/gradlew.bat -------------------------------------------------------------------------------- /Bluetooth/Bluettoth1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Bluetooth/Bluettoth1/settings.gradle -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastReceivingApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastReceivingApp/.idea/.name: -------------------------------------------------------------------------------- 1 | BroadcastreceivingApp -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastReceivingApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastSendingApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastSendingApp/.idea/.name: -------------------------------------------------------------------------------- 1 | MainActivity.kt -------------------------------------------------------------------------------- /BroadcastReceiver/CustomBroadcast3/BroadcastSendingApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/DynamicBroadcastReceiver2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/DynamicBroadcastReceiver2/.idea/.name: -------------------------------------------------------------------------------- 1 | DynamicBroadcastReceiver -------------------------------------------------------------------------------- /BroadcastReceiver/DynamicBroadcastReceiver2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/DynamicBroadcastReceiver2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BroadcastReceiver/DynamicBroadcastReceiver2/gradlew -------------------------------------------------------------------------------- /BroadcastReceiver/ExplicitReceiver4/Receiver/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/ExplicitReceiver4/Receiver/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/ExplicitReceiver4/Sender/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/ExplicitReceiver4/Sender/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/ExplicitReceiver4/Sender/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BroadcastReceiver/ExplicitReceiver4/Sender/gradlew -------------------------------------------------------------------------------- /BroadcastReceiver/LocalBroadCastManager5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BroadcastReceiver/LocalBroadCastManager5/.gitignore -------------------------------------------------------------------------------- /BroadcastReceiver/LocalBroadCastManager5/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/LocalBroadCastManager5/.idea/.name: -------------------------------------------------------------------------------- 1 | Localbroadcastmanager -------------------------------------------------------------------------------- /BroadcastReceiver/LocalBroadCastManager5/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/LocalBroadCastManager5/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BroadcastReceiver/LocalBroadCastManager5/gradlew -------------------------------------------------------------------------------- /BroadcastReceiver/StaticBroadcastReceiver1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /BroadcastReceiver/StaticBroadcastReceiver1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /BroadcastReceiver/StaticBroadcastReceiver1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/BroadcastReceiver/StaticBroadcastReceiver1/gradlew -------------------------------------------------------------------------------- /Compose/compose1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/.gitignore -------------------------------------------------------------------------------- /Compose/compose1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Compose/compose1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/.idea/compiler.xml -------------------------------------------------------------------------------- /Compose/compose1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/.idea/gradle.xml -------------------------------------------------------------------------------- /Compose/compose1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/.idea/misc.xml -------------------------------------------------------------------------------- /Compose/compose1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/.idea/vcs.xml -------------------------------------------------------------------------------- /Compose/compose1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Compose/compose1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/app/build.gradle -------------------------------------------------------------------------------- /Compose/compose1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Compose/compose1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Compose/compose1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Compose/compose1/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Compose/compose1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/build.gradle -------------------------------------------------------------------------------- /Compose/compose1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/gradle.properties -------------------------------------------------------------------------------- /Compose/compose1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Compose/compose1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/gradlew -------------------------------------------------------------------------------- /Compose/compose1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/gradlew.bat -------------------------------------------------------------------------------- /Compose/compose1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Compose/compose1/settings.gradle -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/.gitignore -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/.name: -------------------------------------------------------------------------------- 1 | ConstrInj -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/.idea/gradle.xml -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/.idea/misc.xml -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/.idea/vcs.xml -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/app/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/gradle.properties -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/gradlew -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/gradlew.bat -------------------------------------------------------------------------------- /Dagger_HILT/ConstructorInjection3/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/ConstructorInjection3/settings.gradle -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.gitignore -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/.name: -------------------------------------------------------------------------------- 1 | Scioping2 -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.idea/compiler.xml -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.idea/gradle.xml -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.idea/misc.xml -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/.idea/vcs.xml -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/app/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/gradle.properties -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/gradlew -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/gradlew.bat -------------------------------------------------------------------------------- /Dagger_HILT/Scoping2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/Scoping2/settings.gradle -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.gitignore -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/.name: -------------------------------------------------------------------------------- 1 | hilt1 -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.idea/compiler.xml -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.idea/gradle.xml -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.idea/misc.xml -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/.idea/vcs.xml -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/README.md -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/app/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/build.gradle -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/gradle.properties -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/gradlew -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/gradlew.bat -------------------------------------------------------------------------------- /Dagger_HILT/dagger hilt/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Dagger_HILT/dagger hilt/settings.gradle -------------------------------------------------------------------------------- /DataStore/dataStore1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/.gitignore -------------------------------------------------------------------------------- /DataStore/dataStore1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /DataStore/dataStore1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/.idea/compiler.xml -------------------------------------------------------------------------------- /DataStore/dataStore1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/.idea/gradle.xml -------------------------------------------------------------------------------- /DataStore/dataStore1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/.idea/misc.xml -------------------------------------------------------------------------------- /DataStore/dataStore1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/.idea/vcs.xml -------------------------------------------------------------------------------- /DataStore/dataStore1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /DataStore/dataStore1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/app/build.gradle -------------------------------------------------------------------------------- /DataStore/dataStore1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/app/proguard-rules.pro -------------------------------------------------------------------------------- /DataStore/dataStore1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/build.gradle -------------------------------------------------------------------------------- /DataStore/dataStore1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/gradle.properties -------------------------------------------------------------------------------- /DataStore/dataStore1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/gradlew -------------------------------------------------------------------------------- /DataStore/dataStore1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/gradlew.bat -------------------------------------------------------------------------------- /DataStore/dataStore1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore1/settings.gradle -------------------------------------------------------------------------------- /DataStore/dataStore2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/.gitignore -------------------------------------------------------------------------------- /DataStore/dataStore2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /DataStore/dataStore2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/.idea/compiler.xml -------------------------------------------------------------------------------- /DataStore/dataStore2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/.idea/gradle.xml -------------------------------------------------------------------------------- /DataStore/dataStore2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/.idea/misc.xml -------------------------------------------------------------------------------- /DataStore/dataStore2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/.idea/vcs.xml -------------------------------------------------------------------------------- /DataStore/dataStore2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /DataStore/dataStore2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/app/build.gradle -------------------------------------------------------------------------------- /DataStore/dataStore2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/app/proguard-rules.pro -------------------------------------------------------------------------------- /DataStore/dataStore2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/build.gradle -------------------------------------------------------------------------------- /DataStore/dataStore2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/gradle.properties -------------------------------------------------------------------------------- /DataStore/dataStore2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/gradlew -------------------------------------------------------------------------------- /DataStore/dataStore2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/gradlew.bat -------------------------------------------------------------------------------- /DataStore/dataStore2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/DataStore/dataStore2/settings.gradle -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/.gitignore -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.idea/.name: -------------------------------------------------------------------------------- 1 | Diffutils -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/.idea/compiler.xml -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/.idea/gradle.xml -------------------------------------------------------------------------------- /Diffutils/Diffutil1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/.idea/misc.xml -------------------------------------------------------------------------------- /Diffutils/Diffutil1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Diffutils/Diffutil1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/app/build.gradle -------------------------------------------------------------------------------- /Diffutils/Diffutil1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Diffutils/Diffutil1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/build.gradle -------------------------------------------------------------------------------- /Diffutils/Diffutil1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/gradle.properties -------------------------------------------------------------------------------- /Diffutils/Diffutil1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/gradlew -------------------------------------------------------------------------------- /Diffutils/Diffutil1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/gradlew.bat -------------------------------------------------------------------------------- /Diffutils/Diffutil1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Diffutils/Diffutil1/settings.gradle -------------------------------------------------------------------------------- /Flows/flows1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/.gitignore -------------------------------------------------------------------------------- /Flows/flows1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Flows/flows1/.idea/.name: -------------------------------------------------------------------------------- 1 | Flows -------------------------------------------------------------------------------- /Flows/flows1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/.idea/compiler.xml -------------------------------------------------------------------------------- /Flows/flows1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/.idea/gradle.xml -------------------------------------------------------------------------------- /Flows/flows1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/.idea/misc.xml -------------------------------------------------------------------------------- /Flows/flows1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/.idea/vcs.xml -------------------------------------------------------------------------------- /Flows/flows1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Flows/flows1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/build.gradle -------------------------------------------------------------------------------- /Flows/flows1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Flows/flows1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Flows/flows1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Flows/flows1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Flows/flows1/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Flows/flows1/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Flows/flows1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/build.gradle -------------------------------------------------------------------------------- /Flows/flows1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/gradle.properties -------------------------------------------------------------------------------- /Flows/flows1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Flows/flows1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/gradlew -------------------------------------------------------------------------------- /Flows/flows1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/gradlew.bat -------------------------------------------------------------------------------- /Flows/flows1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows1/settings.gradle -------------------------------------------------------------------------------- /Flows/flows2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/.gitignore -------------------------------------------------------------------------------- /Flows/flows2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Flows/flows2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/.idea/compiler.xml -------------------------------------------------------------------------------- /Flows/flows2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/.idea/gradle.xml -------------------------------------------------------------------------------- /Flows/flows2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/.idea/misc.xml -------------------------------------------------------------------------------- /Flows/flows2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/.idea/vcs.xml -------------------------------------------------------------------------------- /Flows/flows2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Flows/flows2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/build.gradle -------------------------------------------------------------------------------- /Flows/flows2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/proguard-rules.pro -------------------------------------------------------------------------------- /Flows/flows2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Flows/flows2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Flows/flows2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Flows/flows2/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Flows/flows2/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Flows/flows2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/build.gradle -------------------------------------------------------------------------------- /Flows/flows2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/gradle.properties -------------------------------------------------------------------------------- /Flows/flows2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Flows/flows2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/gradlew -------------------------------------------------------------------------------- /Flows/flows2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/gradlew.bat -------------------------------------------------------------------------------- /Flows/flows2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Flows/flows2/settings.gradle -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.gitignore -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.idea/compiler.xml -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.idea/gradle.xml -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.idea/misc.xml -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/.idea/vcs.xml -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/app/build.gradle -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/app/proguard-rules.pro -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/build.gradle -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/gradle.properties -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/gradlew -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/gradlew.bat -------------------------------------------------------------------------------- /Hilt-Jetpack/Hilt-retrofit/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Hilt-Jetpack/Hilt-retrofit/settings.gradle -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/7.3.3/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/7.3.3/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/7.3.3/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 20 09:13:51 IST 2023 2 | gradle.version=7.3.3 3 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/file-system.probe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/.gradle/file-system.probe -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/.idea/compiler.xml -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/.idea/gradle.xml -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/.idea/misc.xml -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/build.gradle -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`5 -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`V -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`V -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`v -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`i -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`5 -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 4 2 | 0 -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`5 -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 | c`& -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/gradlew -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/gradlew.bat -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = 'KotlinBasic' 3 | 4 | -------------------------------------------------------------------------------- /Kotlin/Basic/KotlinBasic/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Kotlin/Basic/KotlinBasic/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /Navigation/NavOne/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.gitignore -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.idea/compiler.xml -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.idea/gradle.xml -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.idea/misc.xml -------------------------------------------------------------------------------- /Navigation/NavOne/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/.idea/vcs.xml -------------------------------------------------------------------------------- /Navigation/NavOne/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Navigation/NavOne/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/app/build.gradle -------------------------------------------------------------------------------- /Navigation/NavOne/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/app/proguard-rules.pro -------------------------------------------------------------------------------- /Navigation/NavOne/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Navigation/NavOne/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/build.gradle -------------------------------------------------------------------------------- /Navigation/NavOne/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/gradle.properties -------------------------------------------------------------------------------- /Navigation/NavOne/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Navigation/NavOne/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/gradlew -------------------------------------------------------------------------------- /Navigation/NavOne/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/gradlew.bat -------------------------------------------------------------------------------- /Navigation/NavOne/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Navigation/NavOne/settings.gradle -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.gitignore -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/.name: -------------------------------------------------------------------------------- 1 | Networks -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.idea/compiler.xml -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.idea/gradle.xml -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.idea/misc.xml -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/.idea/vcs.xml -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/app/build.gradle -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/build.gradle -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/gradle.properties -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/gradlew -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/gradlew.bat -------------------------------------------------------------------------------- /Network_Callbacks/NetworkManager/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Network_Callbacks/NetworkManager/settings.gradle -------------------------------------------------------------------------------- /Permissions/Permission1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.gitignore -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.idea/compiler.xml -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.idea/gradle.xml -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.idea/misc.xml -------------------------------------------------------------------------------- /Permissions/Permission1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/.idea/vcs.xml -------------------------------------------------------------------------------- /Permissions/Permission1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Permissions/Permission1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/app/build.gradle -------------------------------------------------------------------------------- /Permissions/Permission1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Permissions/Permission1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/build.gradle -------------------------------------------------------------------------------- /Permissions/Permission1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/gradle.properties -------------------------------------------------------------------------------- /Permissions/Permission1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/gradlew -------------------------------------------------------------------------------- /Permissions/Permission1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/gradlew.bat -------------------------------------------------------------------------------- /Permissions/Permission1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission1/settings.gradle -------------------------------------------------------------------------------- /Permissions/Permission2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.gitignore -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.idea/compiler.xml -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.idea/gradle.xml -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.idea/misc.xml -------------------------------------------------------------------------------- /Permissions/Permission2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/.idea/vcs.xml -------------------------------------------------------------------------------- /Permissions/Permission2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Permissions/Permission2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/app/build.gradle -------------------------------------------------------------------------------- /Permissions/Permission2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/app/proguard-rules.pro -------------------------------------------------------------------------------- /Permissions/Permission2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/build.gradle -------------------------------------------------------------------------------- /Permissions/Permission2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/gradle.properties -------------------------------------------------------------------------------- /Permissions/Permission2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/gradlew -------------------------------------------------------------------------------- /Permissions/Permission2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/gradlew.bat -------------------------------------------------------------------------------- /Permissions/Permission2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Permissions/Permission2/settings.gradle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/README.md -------------------------------------------------------------------------------- /Room/RoomCodelab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.gitignore -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.idea/compiler.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.idea/gradle.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.idea/misc.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/.idea/vcs.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Room/RoomCodelab/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/build.gradle -------------------------------------------------------------------------------- /Room/RoomCodelab/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/proguard-rules.pro -------------------------------------------------------------------------------- /Room/RoomCodelab/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/app/src/main/res/menu/my_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/src/main/res/menu/my_menu.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Room/RoomCodelab/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/build.gradle -------------------------------------------------------------------------------- /Room/RoomCodelab/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/gradle.properties -------------------------------------------------------------------------------- /Room/RoomCodelab/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Room/RoomCodelab/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/gradlew -------------------------------------------------------------------------------- /Room/RoomCodelab/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/gradlew.bat -------------------------------------------------------------------------------- /Room/RoomCodelab/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/RoomCodelab/settings.gradle -------------------------------------------------------------------------------- /Room/room1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/.gitignore -------------------------------------------------------------------------------- /Room/room1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Room/room1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/.idea/compiler.xml -------------------------------------------------------------------------------- /Room/room1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/.idea/gradle.xml -------------------------------------------------------------------------------- /Room/room1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/.idea/misc.xml -------------------------------------------------------------------------------- /Room/room1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/.idea/vcs.xml -------------------------------------------------------------------------------- /Room/room1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Room/room1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/build.gradle -------------------------------------------------------------------------------- /Room/room1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Room/room1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/layout/example_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/layout/example_row.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/layout/fragment_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/layout/fragment_add.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Room/room1/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Room/room1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/build.gradle -------------------------------------------------------------------------------- /Room/room1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/gradle.properties -------------------------------------------------------------------------------- /Room/room1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Room/room1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Room/room1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/gradlew -------------------------------------------------------------------------------- /Room/room1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/gradlew.bat -------------------------------------------------------------------------------- /Room/room1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Room/room1/settings.gradle -------------------------------------------------------------------------------- /Services/Service1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/.gitignore -------------------------------------------------------------------------------- /Services/Service1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Services/Service1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/.idea/compiler.xml -------------------------------------------------------------------------------- /Services/Service1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/.idea/gradle.xml -------------------------------------------------------------------------------- /Services/Service1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/.idea/misc.xml -------------------------------------------------------------------------------- /Services/Service1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/.idea/vcs.xml -------------------------------------------------------------------------------- /Services/Service1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Services/Service1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/app/build.gradle -------------------------------------------------------------------------------- /Services/Service1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Services/Service1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Services/Service1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/build.gradle -------------------------------------------------------------------------------- /Services/Service1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/gradle.properties -------------------------------------------------------------------------------- /Services/Service1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Services/Service1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/gradlew -------------------------------------------------------------------------------- /Services/Service1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/gradlew.bat -------------------------------------------------------------------------------- /Services/Service1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service1/settings.gradle -------------------------------------------------------------------------------- /Services/Service3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.gitignore -------------------------------------------------------------------------------- /Services/Service3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Services/Service3/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.idea/compiler.xml -------------------------------------------------------------------------------- /Services/Service3/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.idea/gradle.xml -------------------------------------------------------------------------------- /Services/Service3/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Services/Service3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.idea/misc.xml -------------------------------------------------------------------------------- /Services/Service3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/.idea/vcs.xml -------------------------------------------------------------------------------- /Services/Service3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Services/Service3/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/app/build.gradle -------------------------------------------------------------------------------- /Services/Service3/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/app/proguard-rules.pro -------------------------------------------------------------------------------- /Services/Service3/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Services/Service3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/build.gradle -------------------------------------------------------------------------------- /Services/Service3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/gradle.properties -------------------------------------------------------------------------------- /Services/Service3/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Services/Service3/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/gradlew -------------------------------------------------------------------------------- /Services/Service3/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/gradlew.bat -------------------------------------------------------------------------------- /Services/Service3/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/Service3/settings.gradle -------------------------------------------------------------------------------- /Services/service2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.gitignore -------------------------------------------------------------------------------- /Services/service2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Services/service2/.idea/.name: -------------------------------------------------------------------------------- 1 | HelloService -------------------------------------------------------------------------------- /Services/service2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.idea/compiler.xml -------------------------------------------------------------------------------- /Services/service2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.idea/gradle.xml -------------------------------------------------------------------------------- /Services/service2/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.idea/kotlinc.xml -------------------------------------------------------------------------------- /Services/service2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.idea/misc.xml -------------------------------------------------------------------------------- /Services/service2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/.idea/vcs.xml -------------------------------------------------------------------------------- /Services/service2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/README.md -------------------------------------------------------------------------------- /Services/service2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Services/service2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/app/build.gradle -------------------------------------------------------------------------------- /Services/service2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/app/proguard-rules.pro -------------------------------------------------------------------------------- /Services/service2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Services/service2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/build.gradle -------------------------------------------------------------------------------- /Services/service2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/gradle.properties -------------------------------------------------------------------------------- /Services/service2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Services/service2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/gradlew -------------------------------------------------------------------------------- /Services/service2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/gradlew.bat -------------------------------------------------------------------------------- /Services/service2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Services/service2/settings.gradle -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.gitignore -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/.name: -------------------------------------------------------------------------------- 1 | SharedPreferences -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.idea/compiler.xml -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.idea/gradle.xml -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.idea/misc.xml -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/.idea/vcs.xml -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/app/build.gradle -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/build.gradle -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/gradle.properties -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/gradlew -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/gradlew.bat -------------------------------------------------------------------------------- /SharedPrefs/sharedPreferences1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SharedPrefs/sharedPreferences1/settings.gradle -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.gitignore -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/.name: -------------------------------------------------------------------------------- 1 | LatBoot -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.idea/compiler.xml -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.idea/gradle.xml -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.idea/kotlinc.xml -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.idea/misc.xml -------------------------------------------------------------------------------- /SystemTime/LastBootTime/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/.idea/vcs.xml -------------------------------------------------------------------------------- /SystemTime/LastBootTime/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /SystemTime/LastBootTime/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/app/build.gradle -------------------------------------------------------------------------------- /SystemTime/LastBootTime/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/app/proguard-rules.pro -------------------------------------------------------------------------------- /SystemTime/LastBootTime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/build.gradle -------------------------------------------------------------------------------- /SystemTime/LastBootTime/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/gradle.properties -------------------------------------------------------------------------------- /SystemTime/LastBootTime/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/gradlew -------------------------------------------------------------------------------- /SystemTime/LastBootTime/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/gradlew.bat -------------------------------------------------------------------------------- /SystemTime/LastBootTime/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/SystemTime/LastBootTime/settings.gradle -------------------------------------------------------------------------------- /TestContext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.gitignore -------------------------------------------------------------------------------- /TestContext/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /TestContext/.idea/.name: -------------------------------------------------------------------------------- 1 | ContextToast1 -------------------------------------------------------------------------------- /TestContext/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.idea/compiler.xml -------------------------------------------------------------------------------- /TestContext/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.idea/gradle.xml -------------------------------------------------------------------------------- /TestContext/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.idea/kotlinc.xml -------------------------------------------------------------------------------- /TestContext/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.idea/misc.xml -------------------------------------------------------------------------------- /TestContext/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/.idea/vcs.xml -------------------------------------------------------------------------------- /TestContext/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /TestContext/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/build.gradle -------------------------------------------------------------------------------- /TestContext/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/proguard-rules.pro -------------------------------------------------------------------------------- /TestContext/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/values-land/dimens.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /TestContext/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /TestContext/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/build.gradle -------------------------------------------------------------------------------- /TestContext/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/gradle.properties -------------------------------------------------------------------------------- /TestContext/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TestContext/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/gradlew -------------------------------------------------------------------------------- /TestContext/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/gradlew.bat -------------------------------------------------------------------------------- /TestContext/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/TestContext/settings.gradle -------------------------------------------------------------------------------- /Viewmodels/livedata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/.gitignore -------------------------------------------------------------------------------- /Viewmodels/livedata/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Viewmodels/livedata/.idea/.name: -------------------------------------------------------------------------------- 1 | Livedata -------------------------------------------------------------------------------- /Viewmodels/livedata/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/.idea/compiler.xml -------------------------------------------------------------------------------- /Viewmodels/livedata/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/.idea/gradle.xml -------------------------------------------------------------------------------- /Viewmodels/livedata/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/.idea/misc.xml -------------------------------------------------------------------------------- /Viewmodels/livedata/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Viewmodels/livedata/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/app/build.gradle -------------------------------------------------------------------------------- /Viewmodels/livedata/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/app/proguard-rules.pro -------------------------------------------------------------------------------- /Viewmodels/livedata/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/build.gradle -------------------------------------------------------------------------------- /Viewmodels/livedata/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/gradle.properties -------------------------------------------------------------------------------- /Viewmodels/livedata/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/gradlew -------------------------------------------------------------------------------- /Viewmodels/livedata/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/gradlew.bat -------------------------------------------------------------------------------- /Viewmodels/livedata/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/livedata/settings.gradle -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/.gitignore -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.idea/.name: -------------------------------------------------------------------------------- 1 | ViewModel1 -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/.idea/compiler.xml -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/.idea/gradle.xml -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/.idea/misc.xml -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/.idea/vcs.xml -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/app/build.gradle -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/app/proguard-rules.pro -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/build.gradle -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/gradle.properties -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/gradlew -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/gradlew.bat -------------------------------------------------------------------------------- /Viewmodels/viewmodel1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/Viewmodels/viewmodel1/settings.gradle -------------------------------------------------------------------------------- /coroutines/Coroutine1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.gitignore -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/.name: -------------------------------------------------------------------------------- 1 | Coroutines -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.idea/compiler.xml -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.idea/gradle.xml -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.idea/misc.xml -------------------------------------------------------------------------------- /coroutines/Coroutine1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/.idea/vcs.xml -------------------------------------------------------------------------------- /coroutines/Coroutine1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /coroutines/Coroutine1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/app/build.gradle -------------------------------------------------------------------------------- /coroutines/Coroutine1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/app/proguard-rules.pro -------------------------------------------------------------------------------- /coroutines/Coroutine1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/build.gradle -------------------------------------------------------------------------------- /coroutines/Coroutine1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/gradle.properties -------------------------------------------------------------------------------- /coroutines/Coroutine1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/gradlew -------------------------------------------------------------------------------- /coroutines/Coroutine1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/gradlew.bat -------------------------------------------------------------------------------- /coroutines/Coroutine1/myapplication/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /coroutines/Coroutine1/myapplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/myapplication/build.gradle -------------------------------------------------------------------------------- /coroutines/Coroutine1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/coroutines/Coroutine1/settings.gradle -------------------------------------------------------------------------------- /firebase/Firebase Remote Config/Remote Config 2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /firebase/Firebase Remote Config/Remote Config 2/.idea/.name: -------------------------------------------------------------------------------- 1 | Remote_Config2 -------------------------------------------------------------------------------- /firebase/Firebase Remote Config/Remote Config 2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /firebase/Firebase Remote Config/RemoteConfig/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /firebase/Firebase Remote Config/RemoteConfig/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /firebase/Firebase-Analytics/Getting_Started/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /firebase/Firebase-Analytics/Getting_Started/.idea/.name: -------------------------------------------------------------------------------- 1 | GS_FA -------------------------------------------------------------------------------- /firebase/Firebase-Analytics/Getting_Started/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /firebase/Firebase-Analytics/Getting_Started/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/firebase/Firebase-Analytics/Getting_Started/gradlew -------------------------------------------------------------------------------- /gradle/gradle1/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.gitattributes -------------------------------------------------------------------------------- /gradle/gradle1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.gitignore -------------------------------------------------------------------------------- /gradle/gradle1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gradle/gradle1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.idea/compiler.xml -------------------------------------------------------------------------------- /gradle/gradle1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.idea/gradle.xml -------------------------------------------------------------------------------- /gradle/gradle1/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /gradle/gradle1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.idea/misc.xml -------------------------------------------------------------------------------- /gradle/gradle1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/.idea/vcs.xml -------------------------------------------------------------------------------- /gradle/gradle1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/build.gradle -------------------------------------------------------------------------------- /gradle/gradle1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/gradle1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/gradlew -------------------------------------------------------------------------------- /gradle/gradle1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/gradlew.bat -------------------------------------------------------------------------------- /gradle/gradle1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/settings.gradle -------------------------------------------------------------------------------- /gradle/gradle1/src/main/java/com/aditya/gradle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/gradle1/src/main/java/com/aditya/gradle.java -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/how-to-gradle.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/.idea/how-to-gradle.iml -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/.idea/misc.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/.idea/modules.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/.idea/vcs.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0.2/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0.2/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0.2/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/8.0/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Apr 27 17:00:38 IST 2024 2 | gradle.version=8.0.2 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-another-project/gradlew -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-another-project/gradlew.bat -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`[ -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/kotlin/compileKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`1 -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/kotlin/compileKotlin/cacheable/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 163 2 | 0 -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/pluginDescriptors/my-java-base.properties: -------------------------------------------------------------------------------- 1 | implementation-class=MyJavaBasePlugin 2 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/pluginDescriptors/my-java-library.properties: -------------------------------------------------------------------------------- 1 | implementation-class=MyJavaLibraryPlugin 2 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-another-project/java-plugins/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-build-logic/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0.2/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0.2/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0.2/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/8.0/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Apr 27 17:00:38 IST 2024 2 | gradle.version=8.0.2 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/compiler.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/gradle.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/kotlinc.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/misc.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/modules.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/.idea/vcs.xml -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/app/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/app/run.sh: -------------------------------------------------------------------------------- 1 | java -cp 'libs/*' myproject.MyApplication -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/build.gradle.kts -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/business-logic/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/domain-layer/build/tmp/jar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/gradlew -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/gradlew.bat -------------------------------------------------------------------------------- /gradle/how-to-gradle/my-project/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/gradle/how-to-gradle/my-project/settings.gradle.kts -------------------------------------------------------------------------------- /intents/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /intents/.idea/intents.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/.idea/intents.iml -------------------------------------------------------------------------------- /intents/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/.idea/misc.xml -------------------------------------------------------------------------------- /intents/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/.idea/modules.xml -------------------------------------------------------------------------------- /intents/AvroTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.gitignore -------------------------------------------------------------------------------- /intents/AvroTest/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /intents/AvroTest/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.idea/compiler.xml -------------------------------------------------------------------------------- /intents/AvroTest/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.idea/gradle.xml -------------------------------------------------------------------------------- /intents/AvroTest/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.idea/kotlinc.xml -------------------------------------------------------------------------------- /intents/AvroTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.idea/misc.xml -------------------------------------------------------------------------------- /intents/AvroTest/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/.idea/vcs.xml -------------------------------------------------------------------------------- /intents/AvroTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /intents/AvroTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/app/build.gradle -------------------------------------------------------------------------------- /intents/AvroTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /intents/AvroTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /intents/AvroTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /intents/AvroTest/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /intents/AvroTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/build.gradle -------------------------------------------------------------------------------- /intents/AvroTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/gradle.properties -------------------------------------------------------------------------------- /intents/AvroTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /intents/AvroTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/gradlew -------------------------------------------------------------------------------- /intents/AvroTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/gradlew.bat -------------------------------------------------------------------------------- /intents/AvroTest/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/AvroTest/settings.gradle -------------------------------------------------------------------------------- /intents/Intent1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.gitignore -------------------------------------------------------------------------------- /intents/Intent1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /intents/Intent1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.idea/compiler.xml -------------------------------------------------------------------------------- /intents/Intent1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.idea/gradle.xml -------------------------------------------------------------------------------- /intents/Intent1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /intents/Intent1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.idea/misc.xml -------------------------------------------------------------------------------- /intents/Intent1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/.idea/vcs.xml -------------------------------------------------------------------------------- /intents/Intent1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /intents/Intent1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/build.gradle -------------------------------------------------------------------------------- /intents/Intent1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/proguard-rules.pro -------------------------------------------------------------------------------- /intents/Intent1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /intents/Intent1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /intents/Intent1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /intents/Intent1/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /intents/Intent1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/build.gradle -------------------------------------------------------------------------------- /intents/Intent1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/gradle.properties -------------------------------------------------------------------------------- /intents/Intent1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /intents/Intent1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/gradlew -------------------------------------------------------------------------------- /intents/Intent1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/gradlew.bat -------------------------------------------------------------------------------- /intents/Intent1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/Intent1/settings.gradle -------------------------------------------------------------------------------- /intents/MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/.gitignore -------------------------------------------------------------------------------- /intents/MyApplication/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /intents/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /intents/MyApplication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/.idea/gradle.xml -------------------------------------------------------------------------------- /intents/MyApplication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/.idea/misc.xml -------------------------------------------------------------------------------- /intents/MyApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/.idea/vcs.xml -------------------------------------------------------------------------------- /intents/MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /intents/MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /intents/MyApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /intents/MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/build.gradle -------------------------------------------------------------------------------- /intents/MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/gradle.properties -------------------------------------------------------------------------------- /intents/MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/gradlew -------------------------------------------------------------------------------- /intents/MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /intents/MyApplication/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/intents/MyApplication/settings.gradle -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/.gitignore -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/.idea/gradle.xml -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/.idea/misc.xml -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/app/build.gradle -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/build.gradle -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/gradlew -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/gradlew.bat -------------------------------------------------------------------------------- /networking/ApiFetchingRetrofitMVVM/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/networking/ApiFetchingRetrofitMVVM/settings.gradle -------------------------------------------------------------------------------- /threads/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/.idea/modules.xml -------------------------------------------------------------------------------- /threads/.idea/threads.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/.idea/threads.iml -------------------------------------------------------------------------------- /threads/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.gitignore -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/.name: -------------------------------------------------------------------------------- 1 | AsyncTasks -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.idea/compiler.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.idea/gradle.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.idea/misc.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /threads/AsyncTask5/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/app/README.md -------------------------------------------------------------------------------- /threads/AsyncTask5/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/app/build.gradle -------------------------------------------------------------------------------- /threads/AsyncTask5/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/app/proguard-rules.pro -------------------------------------------------------------------------------- /threads/AsyncTask5/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /threads/AsyncTask5/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/build.gradle -------------------------------------------------------------------------------- /threads/AsyncTask5/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/gradle.properties -------------------------------------------------------------------------------- /threads/AsyncTask5/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/gradlew -------------------------------------------------------------------------------- /threads/AsyncTask5/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/gradlew.bat -------------------------------------------------------------------------------- /threads/AsyncTask5/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/AsyncTask5/settings.gradle -------------------------------------------------------------------------------- /threads/HandlerThread4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.gitignore -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/.name: -------------------------------------------------------------------------------- 1 | HandlerThread -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.idea/compiler.xml -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.idea/gradle.xml -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.idea/misc.xml -------------------------------------------------------------------------------- /threads/HandlerThread4/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/HandlerThread4/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /threads/HandlerThread4/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/app/build.gradle -------------------------------------------------------------------------------- /threads/HandlerThread4/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/app/proguard-rules.pro -------------------------------------------------------------------------------- /threads/HandlerThread4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/build.gradle -------------------------------------------------------------------------------- /threads/HandlerThread4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/gradle.properties -------------------------------------------------------------------------------- /threads/HandlerThread4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/gradlew -------------------------------------------------------------------------------- /threads/HandlerThread4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/gradlew.bat -------------------------------------------------------------------------------- /threads/HandlerThread4/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/HandlerThread4/settings.gradle -------------------------------------------------------------------------------- /threads/IntentService6/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/IntentService6/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/IntentService6/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/IntentService6/.idea/misc.xml -------------------------------------------------------------------------------- /threads/IntentService6/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/IntentService6/.idea/workspace.xml -------------------------------------------------------------------------------- /threads/Thread2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.gitignore -------------------------------------------------------------------------------- /threads/Thread2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/Thread2/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.idea/compiler.xml -------------------------------------------------------------------------------- /threads/Thread2/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.idea/gradle.xml -------------------------------------------------------------------------------- /threads/Thread2/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/Thread2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.idea/misc.xml -------------------------------------------------------------------------------- /threads/Thread2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/Thread2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /threads/Thread2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/build.gradle -------------------------------------------------------------------------------- /threads/Thread2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/proguard-rules.pro -------------------------------------------------------------------------------- /threads/Thread2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /threads/Thread2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /threads/Thread2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /threads/Thread2/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /threads/Thread2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/build.gradle -------------------------------------------------------------------------------- /threads/Thread2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/gradle.properties -------------------------------------------------------------------------------- /threads/Thread2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /threads/Thread2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/gradlew -------------------------------------------------------------------------------- /threads/Thread2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/gradlew.bat -------------------------------------------------------------------------------- /threads/Thread2/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Thread2/settings.gradle -------------------------------------------------------------------------------- /threads/Threads3/.README.md.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.README.md.swp -------------------------------------------------------------------------------- /threads/Threads3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.gitignore -------------------------------------------------------------------------------- /threads/Threads3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/Threads3/.idea/.name: -------------------------------------------------------------------------------- 1 | Thread3 -------------------------------------------------------------------------------- /threads/Threads3/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.idea/compiler.xml -------------------------------------------------------------------------------- /threads/Threads3/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.idea/gradle.xml -------------------------------------------------------------------------------- /threads/Threads3/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/Threads3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.idea/misc.xml -------------------------------------------------------------------------------- /threads/Threads3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/Threads3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /threads/Threads3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /threads/Threads3/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/app/build.gradle -------------------------------------------------------------------------------- /threads/Threads3/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/app/proguard-rules.pro -------------------------------------------------------------------------------- /threads/Threads3/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /threads/Threads3/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /threads/Threads3/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /threads/Threads3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/build.gradle -------------------------------------------------------------------------------- /threads/Threads3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/gradle.properties -------------------------------------------------------------------------------- /threads/Threads3/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /threads/Threads3/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/gradlew -------------------------------------------------------------------------------- /threads/Threads3/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/gradlew.bat -------------------------------------------------------------------------------- /threads/Threads3/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/Threads3/settings.gradle -------------------------------------------------------------------------------- /threads/thread1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.gitignore -------------------------------------------------------------------------------- /threads/thread1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /threads/thread1/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.idea/compiler.xml -------------------------------------------------------------------------------- /threads/thread1/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.idea/gradle.xml -------------------------------------------------------------------------------- /threads/thread1/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.idea/kotlinc.xml -------------------------------------------------------------------------------- /threads/thread1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.idea/misc.xml -------------------------------------------------------------------------------- /threads/thread1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/.idea/vcs.xml -------------------------------------------------------------------------------- /threads/thread1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /threads/thread1/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/build.gradle -------------------------------------------------------------------------------- /threads/thread1/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/proguard-rules.pro -------------------------------------------------------------------------------- /threads/thread1/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /threads/thread1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /threads/thread1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /threads/thread1/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /threads/thread1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/build.gradle -------------------------------------------------------------------------------- /threads/thread1/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/gradle.properties -------------------------------------------------------------------------------- /threads/thread1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /threads/thread1/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/gradlew -------------------------------------------------------------------------------- /threads/thread1/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/gradlew.bat -------------------------------------------------------------------------------- /threads/thread1/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-Aditya/Practice/HEAD/threads/thread1/settings.gradle --------------------------------------------------------------------------------