How to Clone Android Project from GitHub in Android Studio
Last Updated :
26 Jun, 2025
Android Studio is the official IDE for Android app development, based on IntelliJ IDEA. It supports building apps for Android phones, tablets, Wear OS, TV, and Auto using Java or Kotlin for backend and XML for UI design.
Git is an open-source version control system that tracks changes in code, making collaboration easy. GitHub, built around Git, is a cloud platform used to host and manage code repositories. Developers often upload their Android projects to GitHub for sharing or collaboration. In some cases, you may want to clone an existing Android project from GitHub into Android Studio for learning, testing, or development.
This guide explains how to clone a GitHub project into Android Studio step by step.
Step by Step Implementation
Find the appropriate android project according to the requirement in GitHub. You may also go through this link to find a project on COVID-19 Tracker Android App. So for demonstration purposes let's clone this project in this article.
After redirect to the above web page click on the green-colored Code button then copy the hyperlink as shown in the below image. You may copy the link manually or by just click on the Copy icon.

Method 1
Step 1: Open your Android Studio then go to the File > New > Project from Version Control as shown in the below image.

Step 2: After clicking on the Project from Version Control a pop-up screen will arise like below. In the Version control choose Git from the drop-down menu.

Step 3: Then at last paste the link in the URL and choose your Directory. Click on the Clone button and you are done.

Method 2
Step 1: Click on the Checkout Project from Version Control. In Version control choose Git from the drop-down menu.

Step 2: Then a pop-up box will come. Paste the link in the URL and choose your Directory. Click on the Clone button and you are done.

Note: If you want to upload a project on GitHub from Android Studio then you may refer to How to Upload Project on GitHub from Android Studio?
How to Clone Android Project from GitHub in Android Studio?
Similar Reads
How to Upload Project on GitHub from Android Studio? Learning how to upload a project to GitHub from Android Studio is an essential skill for developers, as it allows you to share your code, collaborate with others, and manage version control. With GitHub integration in Android Studio, it's easy to push your project to a repository. This guide will wa
3 min read
How to Upload Project on GitHub from Android Studio? Learning how to upload a project to GitHub from Android Studio is an essential skill for developers, as it allows you to share your code, collaborate with others, and manage version control. With GitHub integration in Android Studio, it's easy to push your project to a repository. This guide will wa
3 min read
How to Upload Project on GitHub from Android Studio? Learning how to upload a project to GitHub from Android Studio is an essential skill for developers, as it allows you to share your code, collaborate with others, and manage version control. With GitHub integration in Android Studio, it's easy to push your project to a repository. This guide will wa
3 min read
How to Clone a Project From GitHub using VSCode? Cloning a project from GitHub is often the first step for developers looking to contribute to open-source projects or work collaboratively with their team. While there are various ways to clone a GitHub repository, using Visual Studio Code (VSCode) adds a layer of convenience and integration. In thi
2 min read
How to Push a Project and Contribute on GitHub? GitHub is a powerful platform for hosting and collaborating on code repositories. Whether you are working on an open-source project or collaborating with a team, knowing how to push a project and contribute on GitHub is essential. This article will guide you through the steps to push your project to
5 min read
How to Push a Project and Contribute on GitHub? GitHub is a powerful platform for hosting and collaborating on code repositories. Whether you are working on an open-source project or collaborating with a team, knowing how to push a project and contribute on GitHub is essential. This article will guide you through the steps to push your project to
5 min read