-
Android Memory leaks and Garbage collection
Memory Leak:
A memory leak happens when memory is allocated but never freed. This means the garbage collector is not able to take out the trash onc...
Read More >
-
Garbage Collection in Java
Garbage collection in Java is the process by which Java programs perform automatic memory management. Java programs compile to bytecode that can be ru...
Read More >
-
Google OAuth | Error: OAuth 2.0 Playground Error 403: access_denied
Go to your developer console https://console.cloud.google.com/apis/credentials/consent
Go to OAuth consent screen
Go to +Add users, und...
Read More >
-
MVC (Model View Controller) Architecture Pattern in Android
Developing an android application by applying a software architecture pattern is always preferred by the developers. An architecture pattern gives mod...
Read More >
-
Dependency Injection In Flutter With Inherited Widget
Introduction To Dependency Injection
Dependency Injection is a technique for resolving object dependencies during class initialization. It allows t...
Read More >
-
MVP (Model View Presenter) Architecture Pattern in Android
In the initial stages of Android development, learners do write codes in such a manner that eventually creates a MainActivity class tha...
Read More >
-
MVVM (Model View ViewModel) Architecture Pattern in Android
Developers always prefer clean and structured code for their projects. By organizing the codes according to a design pattern helps in the maintenance ...
Read More >
-
Dependency Injection in Dart/Flutter Apps
Dependency Injection is a way of making the dependencies of an object available via another object, and these dependencies are usually known as servic...
Read More >
-
BDD With Gherkin In Flutter
In this article we will learn about Behavior Driven Development BDD with Gherkin in Flutter. We will introduce the concept of BDD and learn how we can...
Read More >
-
Android Dependency Injection
What is Dependency Injection?
The term “Dependency Injection” or in short “DI” is independent of Androi...
Read More >