Setup Flutter in Android Studio

Setup Flutter Installation in Android Studio

In this article, we will learn how to setup Flutter installation in Android Studio. VIDEO TUTORIAL Install Plugins First, we have to install the Flutter and Dart plugins in Android Studio. 1. Open Android Studio and navigate to File -> Settings -> Plugins and enter flutter in the input field. It will show suggestions as

Read More
Implementation vs API banner

Implementation vs api in Android Gradle

Today we will learn about Implementation vs api in Android Gradle. While working on Android Gradle files you must have come across these keywords multiple times. The ‘api’ keyword is mostly used when you are working on modular applications and working on a library module. Definitions ‘implementation’: This configuration is used to declare dependencies that are

Read More
Create Firebase Project

Create Firebase Project

What is Firebase? Firebase is a powerful tool which helps small and big business to grow. It provides a lot of services that can be used with any technology. Integrating Firebase services in any project is like a piece of cake. Many clients and developers out there still struggle to create a Firebase project. But

Read More
Convert android project into library banner

Convert an Android Project into a Library

Have you ever run into a situation where you want to convert an Android project into a Library so that you can use it in your project? Why do we need this? We like some project which can be useful in our project but there is no library available for it. Instead of copy pasting

Read More
Publish an Android Library

Publish an Android Library

In the previous article, we learned how to create an Android Library. In this article, we will learn how to Publish an Android Library. Benefits of Publishing an Android Library: Easy code management. One point of access to your library. Use the library in multiple projects. There are several places where you can publish an

Read More
Create an Android Library

Create an Android Library

Android libraries play a vital role in Android application development. We use them in our day-to-day development. Every Android project consists lot of libraries which are nothing but our dependencies. Have you ever thought about how to create an Android library? Today we will learn to Create an Android library. What is Android Library? Android libraries

Read More