GithubHelp home page GithubHelp logo

Vaibhav Mojidra Software Developer

Vaibhav Mojidra VAIBHAV MOJIDRA

vaibhavmojidra

Vaibhav Mojidra Coding

I'm a passionate software developer with a specialization in full stack development. With a strong foundation in programming and an eye for creating intuitive user experiences, I have developed several successful apps that are live on the Google Play Store. Throughout my journey as a developer, I have gained expertise in various programming languages, frameworks, and tools that empower me to bring ideas to life efficiently. I have experience working with Android Studio, Java, Kotlin, and various libraries to build scalable and performant mobile apps. Feel free to explore my GitHub repositories, where you'll find a collection of my personal projects & coding practices.


🌐 Social Media & Other Accounts

vaibhavmojidra2311 vaibhavmojidra2311 vaibhavmojidra vaibhav-mojidra-260733171 vaibhavmojidra vaibhavmojidra 13474737 vaibhavmojidra


vaibhavmojidra Technical Skills

android angular angularjs apachecordova arduino bash bootstrap c chartjs cplusplus csharp css3 dotnet electron firebase flutter gcp git html5 illustrator java javascript kotlin linux mongodb mssql mysql nodejs oracle photoshop postman python react reactnative sqlite tensorflow unity


vaibhavmojidra2311 Apps Live On Google Play

Aptitude Test Hidden Launcher
Programming eBooks Shooting Birds
Programming MCQ CAPP

vaibhavmojidra GitHub Achievements

vaibhavmojidra


vaibhavmojidra GitHub Statistics

vaibhavmojidra

 vaibhavmojidra

vaibhavmojidra

Vaibhav Mojidra's Projects

android-java-demo-notification-tap-action icon android-java-demo-notification-tap-action

Every notification should respond to a tap, usually to open an activity in your app that corresponds to the notification. To do so, you must specify a content intent defined with a PendingIntent object and pass it to setContentIntent().

android-kotlin---demo-dagger-2-constructor-injection icon android-kotlin---demo-dagger-2-constructor-injection

Dagger 2 walks through the dependency graph and generates code that is both easy to understand and trace, while also saving you from writing a large amount of boilerplate code you would normally need to write by hand to obtain references and pass them to other objects as dependencies.

android-kotlin---demo-dagger-2-field-injection icon android-kotlin---demo-dagger-2-field-injection

Dagger 2 is one of dependency injection framework in Android that can provide us dependencies in a particular class. It’s probably the most used dependency injection framework in Android development.

android-kotlin---demo-dagger-2-module-demo icon android-kotlin---demo-dagger-2-module-demo

Dagger 2 is one of dependency injection framework in Android that can provide us dependencies in a particular class. It’s probably the most used dependency injection framework in Android development.

android-kotlin---demo-dagger-2-singleton icon android-kotlin---demo-dagger-2-singleton

Dagger 2 is one of dependency injection framework in Android that can provide us dependencies in a particular class. It’s probably the most used dependency injection framework in Android development. Singleton annotation can be put in other component and as long as the component alive the singleton annotated object will alive as well.

android-kotlin---demo-dagger-2-state-of-module icon android-kotlin---demo-dagger-2-state-of-module

Dagger 2 is one of dependency injection framework in Android that can provide us dependencies in a particular class. It’s probably the most used dependency injection framework in Android development.

android-kotlin---demo-databinding-with-livedata-kotlin icon android-kotlin---demo-databinding-with-livedata-kotlin

LiveData is an observable data holder class. Unlike a regular observable, LiveData is lifecycle-aware, meaning it respects the lifecycle of other app components, such as activities, fragments, or services. Instead of viewmodel..observe and setting the value to view we can directly use in XML @{vm.obj}

android-kotlin---demo-navigation-architecture-components-kotlin icon android-kotlin---demo-navigation-architecture-components-kotlin

Navigation refers to the interactions that allow users to navigate across, into, and back out from the different pieces of content within your app. Android Jetpack's Navigation component helps you implement navigation, from simple button clicks to more complex patterns, such as app bars and the navigation drawer.

android-kotlin---demo-notification-action-buttons icon android-kotlin---demo-notification-action-buttons

A notification can offer up to three action buttons that allow the user to respond quickly, such as snooze a reminder or even reply to a text message. But these action buttons should not duplicate the action performed when the user taps the notification.

android-kotlin---demo-notification-direct-reply icon android-kotlin---demo-notification-direct-reply

The direct reply action, introduced in Android 7.0 (API level 24), allows users to enter text directly into the notification, which is delivered to your app without opening an activity. For example, you can use a direct reply action to let users reply to text messages or update task lists from within the notification.

android-kotlin---demo-pure-dependency-injection-using-constructor icon android-kotlin---demo-pure-dependency-injection-using-constructor

Dependency injection (DI) is a technique widely used in programming and well suited to Android development. By following the principles of DI, you lay the groundwork for good app architecture. Implementing dependency injection provides you with the following advantages: 1. Reusability of code 2. Ease of refactoring 3. Ease of testing

android-kotlin---demo-pure-dependency-injection-using-field icon android-kotlin---demo-pure-dependency-injection-using-field

Dependency injection (DI) is a technique widely used in programming and well suited to Android development. By following the principles of DI, you lay the groundwork for good app architecture. Implementing dependency injection provides you with the following advantages: 1. Reusability of code 2. Ease of refactoring 3. Ease of testing

android-kotlin---demo-pure-dependency-injection-using-methods icon android-kotlin---demo-pure-dependency-injection-using-methods

Dependency injection (DI) is a technique widely used in programming and well suited to Android development. By following the principles of DI, you lay the groundwork for good app architecture. Implementing dependency injection provides you with the following advantages: 1. Reusability of code 2. Ease of refactoring 3. Ease of testing

android-kotlin---demo-recyclerview icon android-kotlin---demo-recyclerview

RecyclerView makes it easy to efficiently display large sets of data. You supply the data and define how each item looks, and the RecyclerView library dynamically creates the elements when they're needed.When an item scrolls off the screen, RecyclerView doesn't destroy its view.Instead, it reuses the view for new items that have scrolled onscreen.

android-kotlin---demo-room-db icon android-kotlin---demo-room-db

The Room persistence library provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite.

android-kotlin---demo-simple-data-binding icon android-kotlin---demo-simple-data-binding

Data binding is a feature in Android that allows developers to bind UI components to data sources in a declarative manner. It eliminates the need for boilerplate code to manually retrieve data from data sources and set it to UI components.

android-kotlin---demo-two-way-databinding icon android-kotlin---demo-two-way-databinding

The Data Binding Library is a support library that allows you to bind UI components in your layouts to data sources in your app using a declarative format rather than programmatically.

android-kotlin---demo-view-model-factory icon android-kotlin---demo-view-model-factory

The ViewModelFactory is a class in the Android Architecture Components that is used to create instances of ViewModel classes. In Android, a ViewModel is used to store and manage data that is used in an activity or fragment, and survives configuration changes, such as screen rotation.

android-kotlin---demo-work-manager-chaining icon android-kotlin---demo-work-manager-chaining

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---demo-work-manager-one-time-request icon android-kotlin---demo-work-manager-one-time-request

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---demo-work-manager-periodic-request icon android-kotlin---demo-work-manager-periodic-request

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

android-kotlin---push-notifications-below-and-above-android-oreo icon android-kotlin---push-notifications-below-and-above-android-oreo

A notification is a message that Android displays outside your app's UI to provide the user with reminders, communication from other people, or other timely information from your app. Users can tap the notification to open your app or take an action directly from the notification.

android-kotlin---retrofit-demo icon android-kotlin---retrofit-demo

Retrofit is type-safe HTTP client for Android and Java by Square, Inc. It is an open source library which simplifies HTTP communication by turning remote APIs into declarative, type-safe interfaces. It makes it relatively easy to retrieve and upload JSON (or other structured data) via a REST based webservice.

android-kotlin---simple-view-model-demo icon android-kotlin---simple-view-model-demo

In Android, a view is a fundamental building block for constructing user interfaces. Views can be arranged in a hierarchical structure to create complex layouts. Each view is represented by a class, and these classes are organized into a hierarchy based on their functionality.

android-kotlin-demo-notification-tap-action icon android-kotlin-demo-notification-tap-action

Every notification should respond to a tap, usually to open an activity in your app that corresponds to the notification. To do so, you must specify a content intent defined with a PendingIntent object and pass it to setContentIntent().

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.