├── ActivityLifeCycle
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── activitylifecycle
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── activitylifecycle
│ │ │ │ └── MainActivity.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.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
│ │ │ ├── ids.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── activitylifecycle
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Email
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ ├── release
│ │ ├── app-release.apk
│ │ └── output-metadata.json
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ ├── android
│ │ │ └── email
│ │ │ │ └── ExampleInstrumentedTest.java
│ │ │ └── example
│ │ │ └── email
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ ├── android
│ │ │ │ └── email
│ │ │ │ │ └── MainActivity.java
│ │ │ │ └── example
│ │ │ │ └── email
│ │ │ │ └── MainActivity.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ └── activity_main.xml
│ │ │ ├── menu
│ │ │ └── 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
│ │ │ ├── styles.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ ├── android
│ │ └── email
│ │ │ └── ExampleUnitTest.java
│ │ └── example
│ │ └── email
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── key.jks
└── settings.gradle.kts
├── Explicit
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── explicit
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── explicit
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MainActivity2.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── activity_main2.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── explicit
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── FirebaseImage
├── .gitignore
├── .idea
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── google-services.json
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── firebaseimage
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── firebaseimage
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── retrive.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── activity_retrive.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
│ │ └── firebaseimage
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ ├── libs.versions.toml
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Fragments
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── fragments
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── fragments
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── MainActivity2.java
│ │ │ │ ├── SharedViewModel.java
│ │ │ │ ├── frag1.java
│ │ │ │ └── frag2.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_main2.xml
│ │ │ ├── fragment_frag1.xml
│ │ │ └── fragment_frag2.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
│ │ └── fragments
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── FragmentsLogin
├── .gitignore
├── .idea
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── fragmentslogin
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── fragmentslogin
│ │ │ │ ├── Homescreen.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── details.java
│ │ │ │ ├── helper.java
│ │ │ │ ├── homebuttons.java
│ │ │ │ ├── login.java
│ │ │ │ └── registration.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ ├── fragment_details.xml
│ │ │ ├── fragment_homebuttons.xml
│ │ │ ├── fragment_homescreen.xml
│ │ │ ├── fragment_login.xml
│ │ │ └── fragment_registration.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
│ │ └── fragmentslogin
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ ├── libs.versions.toml
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── LoginAppWithSql
├── .gitignore
├── .idea
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── loginappwithsql
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── loginappwithsql
│ │ │ │ ├── DatabaseHelper.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── ProfileActivity.java
│ │ │ │ └── register.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── bg.jpeg
│ │ │ ├── bg1.jpeg
│ │ │ ├── bgp.jpg
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_profile.xml
│ │ │ └── activity_register.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
│ │ └── loginappwithsql
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ ├── libs.versions.toml
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Notification
├── .gitignore
├── .idea
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── android
│ │ │ └── notification
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── notification
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── notification.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ └── notifications.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── activity_notification.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
│ │ └── android
│ │ └── notification
│ │ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
├── Realtimeregister
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ ├── render.experimental.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── google-services.json
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── android
│ │ │ └── realtimeregister
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── realtimeregister
│ │ │ │ ├── DashboardFragment.java
│ │ │ │ ├── HelperClass.java
│ │ │ │ ├── HomeFragment.java
│ │ │ │ ├── HomeViewModel.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── NotificationsFragment.java
│ │ │ │ ├── NotificationsViewModel.java
│ │ │ │ ├── UserViewModel.java
│ │ │ │ ├── home.java
│ │ │ │ ├── login.java
│ │ │ │ ├── navigation.java
│ │ │ │ ├── profile.java
│ │ │ │ └── signup.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── border.xml
│ │ │ ├── home.png
│ │ │ ├── ic_dashboard_black_24dp.xml
│ │ │ ├── ic_home_black_24dp.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── ic_notifications_black_24dp.xml
│ │ │ ├── logout.png
│ │ │ └── user.png
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_login.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_navigation.xml
│ │ │ ├── activity_signup.xml
│ │ │ ├── fragment_dashboard.xml
│ │ │ ├── fragment_home.xml
│ │ │ ├── fragment_notifications.xml
│ │ │ ├── fragment_profile.xml
│ │ │ └── navigation.xml
│ │ │ ├── menu
│ │ │ ├── bottom_menu.xml
│ │ │ └── bottom_nav_menu.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── navigation
│ │ │ └── mobile_navigation.xml
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── android
│ │ └── realtimeregister
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Splash
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── splash
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── splash
│ │ │ │ ├── Home.java
│ │ │ │ └── MainActivity.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── github.png
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_home.xml
│ │ │ └── activity_main.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── splash
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ ├── libs.versions.toml
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Themesandstyles
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── .name
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── theme
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── theme
│ │ │ │ └── MainActivity.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ └── activity_main.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ ├── styles.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── theme
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── URL
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── url
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── url
│ │ │ │ └── MainActivity.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ └── activity_main.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── url
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
├── Whatsapp
├── .idea
│ ├── .gitignore
│ ├── .name
│ └── vcs.xml
└── app
│ └── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── android
│ │ └── whatsapp
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── android
│ │ │ └── whatsapp
│ │ │ └── MainActivity.java
│ └── res
│ │ ├── font
│ │ ├── product.ttf
│ │ ├── productbold.ttf
│ │ └── productsans.xml
│ │ └── menu
│ │ └── activity_main.xml
│ └── test
│ └── java
│ └── com
│ └── android
│ └── whatsapp
│ └── ExampleUnitTest.java
├── activitylifecycle
├── Screenshot_20240209_122258.png
└── app
│ └── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── android
│ │ └── activitylifecycle
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ └── java
│ │ └── com
│ │ └── android
│ │ └── activitylifecycle
│ │ └── MainActivity.java
│ └── test
│ └── java
│ └── com
│ └── android
│ └── activitylifecycle
│ └── ExampleUnitTest.java
├── bottomnavigation
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ ├── render.experimental.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle
│ ├── google-services.json
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── android
│ │ │ └── bottomnavigation
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── bottomnavigation
│ │ │ │ ├── DashboardFragment.java
│ │ │ │ ├── HelperClass.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── UserViewModel.java
│ │ │ │ ├── customdialogbox.java
│ │ │ │ ├── login.java
│ │ │ │ ├── navigation.java
│ │ │ │ ├── signup.java
│ │ │ │ └── ui
│ │ │ │ ├── home
│ │ │ │ ├── HomeFragment.java
│ │ │ │ └── HomeViewModel.java
│ │ │ │ └── notifications
│ │ │ │ ├── NotificationsFragment.java
│ │ │ │ └── NotificationsViewModel.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── border.xml
│ │ │ ├── ic_dashboard_black_24dp.xml
│ │ │ ├── ic_home_black_24dp.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── ic_notifications_black_24dp.xml
│ │ │ ├── logo.png
│ │ │ ├── logout.png
│ │ │ └── white_background.xml
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout-land
│ │ │ ├── activity_login.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_signup.xml
│ │ │ ├── fragment_dashboard.xml
│ │ │ └── navigation.xml
│ │ │ ├── layout
│ │ │ ├── activity_login.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_signup.xml
│ │ │ ├── custom_dialog_box.xml
│ │ │ ├── fragment_dashboard.xml
│ │ │ ├── fragment_home.xml
│ │ │ ├── fragment_notifications.xml
│ │ │ └── navigation.xml
│ │ │ ├── menu
│ │ │ └── bottom_nav_menu.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ │ ├── navigation
│ │ │ └── mobile_navigation.xml
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ ├── style.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── android
│ │ └── bottomnavigation
│ │ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
├── drawables
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── Screenshot_20240502_031645.png
├── Screenshot_20240502_031710.png
├── back.jpg
├── bench_hi_res_512.png
├── call.png
├── github.png
├── location-map.png
├── running.png
├── telephone-call.png
└── web_hi_res_512.png
├── searchengine
├── .gitignore
├── .idea
│ ├── .gitignore
│ ├── .name
│ ├── compiler.xml
│ ├── deploymentTargetDropDown.xml
│ ├── gradle.xml
│ ├── migrations.xml
│ ├── misc.xml
│ └── vcs.xml
├── app
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── android
│ │ │ └── vignanadhara
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── circleimg-playstore.png
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── android
│ │ │ │ └── vignanadhara
│ │ │ │ ├── DataClass.java
│ │ │ │ ├── Detailed_View.java
│ │ │ │ ├── HelperClass.java
│ │ │ │ ├── Login.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ ├── MyAdapter.java
│ │ │ │ ├── profile.java
│ │ │ │ ├── signup.java
│ │ │ │ ├── startscreen.java
│ │ │ │ ├── through.java
│ │ │ │ └── webview.java
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── adhi.jpg
│ │ │ ├── akash.JPG
│ │ │ ├── amar.jpg
│ │ │ ├── black_round.xml
│ │ │ ├── chairman.jpg
│ │ │ ├── ckr.jpg
│ │ │ ├── colimg.jpg
│ │ │ ├── deadpool.jpg
│ │ │ ├── discover.xml
│ │ │ ├── edittext.xml
│ │ │ ├── facebook.png
│ │ │ ├── horizontal.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── icons.xml
│ │ │ ├── img.png
│ │ │ ├── insta.png
│ │ │ ├── linkedin.png
│ │ │ ├── mahotsav.png
│ │ │ ├── mayookh.JPG
│ │ │ ├── ml.jpg
│ │ │ ├── phd.jpg
│ │ │ ├── search.png
│ │ │ ├── shivasai.jpg
│ │ │ ├── tbilogo.png
│ │ │ ├── twitter.png
│ │ │ ├── vaibav.jpg
│ │ │ ├── vardhan.JPG
│ │ │ ├── vice.jpg
│ │ │ └── whatsapp.png
│ │ │ ├── font
│ │ │ ├── product.ttf
│ │ │ ├── productbold.ttf
│ │ │ └── productsans.xml
│ │ │ ├── layout
│ │ │ ├── activity_detailed_view.xml
│ │ │ ├── activity_login.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_profile.xml
│ │ │ ├── activity_signup.xml
│ │ │ ├── activity_startscreen.xml
│ │ │ ├── activity_webview.xml
│ │ │ └── search_recycle.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── circleimg.xml
│ │ │ └── circleimg_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── circleimg.webp
│ │ │ ├── circleimg_foreground.webp
│ │ │ └── circleimg_round.webp
│ │ │ ├── mipmap-mdpi
│ │ │ ├── circleimg.webp
│ │ │ ├── circleimg_foreground.webp
│ │ │ └── circleimg_round.webp
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── circleimg.webp
│ │ │ ├── circleimg_foreground.webp
│ │ │ └── circleimg_round.webp
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── circleimg.webp
│ │ │ ├── circleimg_foreground.webp
│ │ │ └── circleimg_round.webp
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── circleimg.webp
│ │ │ ├── circleimg_foreground.webp
│ │ │ └── circleimg_round.webp
│ │ │ ├── values-night
│ │ │ └── themes.xml
│ │ │ ├── values
│ │ │ ├── circleimg_background.xml
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ ├── styles.xml
│ │ │ └── themes.xml
│ │ │ └── xml
│ │ │ ├── backup_rules.xml
│ │ │ └── data_extraction_rules.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── android
│ │ └── vignanadhara
│ │ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
└── whatsapp
├── .gitignore
├── .idea
├── compiler.xml
├── deploymentTargetDropDown.xml
├── gradle.xml
├── migrations.xml
└── misc.xml
├── app
├── .gitignore
├── build.gradle.kts
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── example
│ │ └── whatsapp
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ │ └── example
│ │ │ └── whatsapp
│ │ │ └── MainActivity.java
│ └── res
│ │ ├── drawable
│ │ ├── ic_launcher_background.xml
│ │ └── ic_launcher_foreground.xml
│ │ ├── layout
│ │ └── activity_main.xml
│ │ ├── mipmap-anydpi-v26
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_launcher.webp
│ │ └── ic_launcher_round.webp
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.webp
│ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xhdpi
│ │ ├── ic_launcher.webp
│ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_launcher.webp
│ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_launcher.webp
│ │ └── ic_launcher_round.webp
│ │ ├── values-night
│ │ └── themes.xml
│ │ ├── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── themes.xml
│ │ └── xml
│ │ ├── backup_rules.xml
│ │ └── data_extraction_rules.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── whatsapp
│ └── ExampleUnitTest.java
├── build.gradle.kts
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
└── settings.gradle.kts
/ActivityLifeCycle/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/values/ids.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | ActivityLifeCycle
3 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/app/src/test/java/com/example/activitylifecycle/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.activitylifecycle;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/ActivityLifeCycle/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/ActivityLifeCycle/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/ActivityLifeCycle/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/ActivityLifeCycle/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 15:28:12 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/ActivityLifeCycle/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "ActivityLifeCycle"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/Email/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Email/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Email/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Email/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Email/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Email/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Email/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Email/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Email/app/release/app-release.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/release/app-release.apk
--------------------------------------------------------------------------------
/Email/app/release/output-metadata.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 3,
3 | "artifactType": {
4 | "type": "APK",
5 | "kind": "Directory"
6 | },
7 | "applicationId": "com.android.email",
8 | "variantName": "release",
9 | "elements": [
10 | {
11 | "type": "SINGLE",
12 | "filters": [],
13 | "attributes": [],
14 | "versionCode": 1,
15 | "versionName": "1.0",
16 | "outputFile": "app-release.apk"
17 | }
18 | ],
19 | "elementType": "File"
20 | }
--------------------------------------------------------------------------------
/Email/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/Email/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/Email/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Email/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Email
3 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Email/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Email/app/src/test/java/com/android/email/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.email;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Email/app/src/test/java/com/example/email/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.email;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Email/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/Email/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Email/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 14:29:07 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Email/key.jks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Email/key.jks
--------------------------------------------------------------------------------
/Email/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Email"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/Explicit/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Explicit/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Explicit/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Explicit/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Explicit/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Explicit/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Explicit/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Explicit/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Explicit
3 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Explicit/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Explicit/app/src/test/java/com/example/explicit/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.explicit;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Explicit/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/Explicit/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Explicit/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Explicit/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 15:10:27 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Explicit/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Explicit"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/FirebaseImage/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/FirebaseImage/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FirebaseImage/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FirebaseImage/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FirebaseImage/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FirebaseImage/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FirebaseImage/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | FirebaseImage
3 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/FirebaseImage/app/src/test/java/com/example/firebaseimage/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.firebaseimage;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/FirebaseImage/build.gradle.kts:
--------------------------------------------------------------------------------
1 | buildscript {
2 | dependencies {
3 | classpath(libs.google.services)
4 | }
5 | }
6 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
7 | plugins {
8 | alias(libs.plugins.androidApplication) apply false
9 | }
--------------------------------------------------------------------------------
/FirebaseImage/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FirebaseImage/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/FirebaseImage/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri May 10 17:09:05 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Fragments/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Fragments/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Fragments/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Fragments/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Fragments/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Fragments/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Fragments/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Fragments/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 | #FF6F41
6 | #8BC34A
7 | #FFFF00
8 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Fragments
3 |
4 | Hello blank fragment
5 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Fragments/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Fragments/app/src/test/java/com/example/fragments/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.fragments;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Fragments/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/Fragments/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Fragments/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Fragments/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Feb 09 14:54:42 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Fragments/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Fragments"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/FragmentsLogin/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/FragmentsLogin/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FragmentsLogin/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FragmentsLogin/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FragmentsLogin/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/FragmentsLogin/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | FragmentsLogin
3 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/FragmentsLogin/app/src/test/java/com/example/fragmentslogin/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.fragmentslogin;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/FragmentsLogin/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | alias(libs.plugins.androidApplication) apply false
4 | }
--------------------------------------------------------------------------------
/FragmentsLogin/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/FragmentsLogin/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/FragmentsLogin/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri May 10 14:18:12 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/LoginAppWithSql/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/drawable/bg.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/drawable/bg.jpeg
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/drawable/bg1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/drawable/bg1.jpeg
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/drawable/bgp.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/drawable/bgp.jpg
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | LoginAppWithSql
3 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/LoginAppWithSql/app/src/test/java/com/example/loginappwithsql/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.loginappwithsql;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/LoginAppWithSql/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | alias(libs.plugins.androidApplication) apply false
4 | }
--------------------------------------------------------------------------------
/LoginAppWithSql/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/LoginAppWithSql/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/LoginAppWithSql/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 24 14:24:30 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Notification/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Notification/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Notification/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Notification/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Notification/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Notification/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Notification/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Notification/app/src/main/res/drawable/notifications.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Notification/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/Notification/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/Notification/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Notification/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Notification
3 |
--------------------------------------------------------------------------------
/Notification/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Notification/app/src/test/java/com/android/notification/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.notification;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Notification/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id 'com.android.application' version '8.2.2' apply false
4 | }
--------------------------------------------------------------------------------
/Notification/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Notification/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Notification/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Mar 22 11:27:57 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Notification/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Notification"
17 | include ':app'
18 |
--------------------------------------------------------------------------------
/Realtimeregister/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/render.experimental.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Realtimeregister/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Realtimeregister/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/border.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/drawable/home.png
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/ic_dashboard_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/ic_home_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/ic_notifications_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/logout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/drawable/logout.png
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/drawable/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/drawable/user.png
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/menu/bottom_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | RealTime Register
3 | Home
4 | Dashboard
5 | Logout
6 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Realtimeregister/app/src/test/java/com/android/realtimeregister/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.realtimeregister;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Realtimeregister/build.gradle.kts:
--------------------------------------------------------------------------------
1 | buildscript {
2 | dependencies {
3 | classpath("com.google.gms:google-services:4.4.1")
4 | }
5 | }
6 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
7 | plugins {
8 | id("com.android.application") version "8.2.2" apply false
9 | }
--------------------------------------------------------------------------------
/Realtimeregister/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Realtimeregister/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Realtimeregister/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Mar 06 10:31:39 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Realtimeregister/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Realtimeregister"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/Splash/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Splash/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Splash/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Splash/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Splash/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Splash/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Splash/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Splash/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Splash/app/src/main/res/drawable/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/drawable/github.png
--------------------------------------------------------------------------------
/Splash/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/Splash/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/Splash/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/layout/activity_home.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Splash/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Splash
3 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Splash/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Splash/app/src/test/java/com/example/splash/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.splash;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Splash/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | alias(libs.plugins.androidApplication) apply false
4 | }
--------------------------------------------------------------------------------
/Splash/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Splash/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Splash/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Apr 26 09:03:36 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Themesandstyles/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/.name:
--------------------------------------------------------------------------------
1 | Theme
--------------------------------------------------------------------------------
/Themesandstyles/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Themesandstyles/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Themesandstyles/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/java/com/example/theme/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.theme;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 |
5 | import android.os.Bundle;
6 |
7 | public class MainActivity extends AppCompatActivity {
8 |
9 | @Override
10 | protected void onCreate(Bundle savedInstanceState) {
11 | super.onCreate(savedInstanceState);
12 | setContentView(R.layout.activity_main);
13 | }
14 | }
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Theme
3 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Themesandstyles/app/src/test/java/com/example/theme/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.theme;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Themesandstyles/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/Themesandstyles/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Themesandstyles/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Themesandstyles/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jan 31 14:09:41 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/Themesandstyles/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "Theme"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/URL/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/URL/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/URL/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/URL/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/URL/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/URL/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/URL/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/URL/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/URL/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | URL
3 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/URL/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/URL/app/src/test/java/com/example/url/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.url;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/URL/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/URL/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/URL/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/URL/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 14:59:59 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/URL/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "URL"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/Whatsapp/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/Whatsapp/.idea/.name:
--------------------------------------------------------------------------------
1 | whatsapp
--------------------------------------------------------------------------------
/Whatsapp/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Whatsapp/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Whatsapp/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/Whatsapp/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/Whatsapp/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/Whatsapp/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/Whatsapp/app/src/main/res/menu/activity_main.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Whatsapp/app/src/test/java/com/android/whatsapp/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.whatsapp;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/activitylifecycle/Screenshot_20240209_122258.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/activitylifecycle/Screenshot_20240209_122258.png
--------------------------------------------------------------------------------
/activitylifecycle/app/src/test/java/com/android/activitylifecycle/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.activitylifecycle;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/bottomnavigation/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/render.experimental.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bottomnavigation/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bottomnavigation/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/border.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/ic_dashboard_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/ic_home_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/ic_notifications_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/drawable/logo.png
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/logout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/drawable/logout.png
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/drawable/white_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Student Register
3 | Home
4 | Dashboard
5 | Logout
6 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/main/res/values/style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/bottomnavigation/app/src/test/java/com/android/bottomnavigation/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.bottomnavigation;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/bottomnavigation/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | dependencies {
3 | classpath 'com.google.gms:google-services:4.4.1'
4 | }
5 | }// Top-level build file where you can add configuration options common to all sub-projects/modules.
6 | plugins {
7 | id 'com.android.application' version '8.2.2' apply false
8 | }
--------------------------------------------------------------------------------
/bottomnavigation/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/bottomnavigation/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/bottomnavigation/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Mar 15 10:36:05 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/bottomnavigation/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "bottomnavigation"
17 | include ':app'
18 |
--------------------------------------------------------------------------------
/drawables/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/1.png
--------------------------------------------------------------------------------
/drawables/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/2.png
--------------------------------------------------------------------------------
/drawables/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/3.png
--------------------------------------------------------------------------------
/drawables/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/4.png
--------------------------------------------------------------------------------
/drawables/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/5.png
--------------------------------------------------------------------------------
/drawables/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/6.png
--------------------------------------------------------------------------------
/drawables/Screenshot_20240502_031645.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/Screenshot_20240502_031645.png
--------------------------------------------------------------------------------
/drawables/Screenshot_20240502_031710.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/Screenshot_20240502_031710.png
--------------------------------------------------------------------------------
/drawables/back.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/back.jpg
--------------------------------------------------------------------------------
/drawables/bench_hi_res_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/bench_hi_res_512.png
--------------------------------------------------------------------------------
/drawables/call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/call.png
--------------------------------------------------------------------------------
/drawables/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/github.png
--------------------------------------------------------------------------------
/drawables/location-map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/location-map.png
--------------------------------------------------------------------------------
/drawables/running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/running.png
--------------------------------------------------------------------------------
/drawables/telephone-call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/telephone-call.png
--------------------------------------------------------------------------------
/drawables/web_hi_res_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/drawables/web_hi_res_512.png
--------------------------------------------------------------------------------
/searchengine/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/searchengine/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/searchengine/.idea/.name:
--------------------------------------------------------------------------------
1 | VignanaDhara
--------------------------------------------------------------------------------
/searchengine/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/searchengine/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/searchengine/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/searchengine/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/searchengine/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/searchengine/app/src/main/circleimg-playstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/circleimg-playstore.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/java/com/android/vignanadhara/through.java:
--------------------------------------------------------------------------------
1 | package com.android.vignanadhara;
2 |
3 | import android.widget.TextView;
4 |
5 | public class through {
6 |
7 | private TextView link;
8 |
9 | public TextView getLink() {
10 | return link;
11 | }
12 |
13 | public through(TextView link) {
14 | this.link = link;
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/adhi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/adhi.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/akash.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/akash.JPG
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/amar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/amar.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/black_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/chairman.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/chairman.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/ckr.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/ckr.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/colimg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/colimg.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/deadpool.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/deadpool.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/discover.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/edittext.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/facebook.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/horizontal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/icons.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/img.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/insta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/insta.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/linkedin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/linkedin.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/mahotsav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/mahotsav.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/mayookh.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/mayookh.JPG
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/ml.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/ml.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/phd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/phd.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/search.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/shivasai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/shivasai.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/tbilogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/tbilogo.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/twitter.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/vaibav.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/vaibav.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/vardhan.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/vardhan.JPG
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/vice.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/vice.jpg
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/drawable/whatsapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/drawable/whatsapp.png
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/font/product.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/font/product.ttf
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/font/productbold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/font/productbold.ttf
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/font/productsans.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
12 |
13 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-anydpi-v26/circleimg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-anydpi-v26/circleimg_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-hdpi/circleimg.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-hdpi/circleimg.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-hdpi/circleimg_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-hdpi/circleimg_foreground.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-hdpi/circleimg_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-hdpi/circleimg_round.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-mdpi/circleimg.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-mdpi/circleimg.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-mdpi/circleimg_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-mdpi/circleimg_foreground.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-mdpi/circleimg_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-mdpi/circleimg_round.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xhdpi/circleimg.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xhdpi/circleimg.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xhdpi/circleimg_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xhdpi/circleimg_foreground.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xhdpi/circleimg_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xhdpi/circleimg_round.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg_foreground.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxhdpi/circleimg_round.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg_foreground.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg_foreground.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/app/src/main/res/mipmap-xxxhdpi/circleimg_round.webp
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/values/circleimg_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 |
--------------------------------------------------------------------------------
/searchengine/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/searchengine/app/src/test/java/com/android/vignanadhara/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.android.vignanadhara;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/searchengine/build.gradle.kts:
--------------------------------------------------------------------------------
1 | buildscript {
2 | dependencies {
3 | classpath("com.google.gms:google-services:4.4.1")
4 | }
5 | }
6 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
7 | plugins {
8 | id("com.android.application") version "8.2.2" apply false
9 | }
--------------------------------------------------------------------------------
/searchengine/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/searchengine/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/searchengine/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun Feb 18 23:12:51 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/searchengine/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "VignanaDhara"
17 | include(":app")
18 |
--------------------------------------------------------------------------------
/whatsapp/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/whatsapp/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/whatsapp/.idea/deploymentTargetDropDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/whatsapp/.idea/migrations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/whatsapp/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/whatsapp/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FF000000
4 | #FFFFFFFF
5 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | whatsapp
3 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/whatsapp/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/whatsapp/app/src/test/java/com/example/whatsapp/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.whatsapp;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/whatsapp/build.gradle.kts:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id("com.android.application") version "8.2.1" apply false
4 | }
--------------------------------------------------------------------------------
/whatsapp/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vardhannn/AndroidStudioProjects/38558efd7ad8b2354af53b4a85440182a8493b2d/whatsapp/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/whatsapp/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 14:05:59 IST 2024
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/whatsapp/settings.gradle.kts:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | gradlePluginPortal()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 |
16 | rootProject.name = "whatsapp"
17 | include(":app")
18 |
--------------------------------------------------------------------------------