---
title: "Getting Started with a New Android Studio Project"
slug: "getting-started-with-a-new-android-studio-project-2"
updated: 2024-05-24T16:16:08Z
published: 2024-05-24T16:16:08Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://support.vuzix.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started with a New Android Studio Project

Vuzix recommends using the latest Android Studio version. Android Studio can be downloaded from [https://developer.android.com/studio/](https://developer.android.com/studio/).

- Open Android Studio.
- Select **Start a new Android Studio project** from the “Welcome to Android Studio” window. ​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768056/b501e1b762887f3b11aecb47/_Android_Studio_Intro_20180601181444781.png)](https://vuzix.intercom-attachments-1.com/i/o/459768056/b501e1b762887f3b11aecb47/_Android_Studio_Intro_20180601181444781.png)

Welcome to Android Studio

- Provide the**Application name**and **Company domain** in the “Create Android Project” window.
- Change the **Project location** if you’d like.
- There is no need to check the **Include C++ support**or**Include Kotlin support**options.
- *Note: BladeOS does support Kotlin build applications since they compile to Android APK applications. For this example we will not use Kotlin.*

​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768058/2d5b794679489596fc6767b3/_Android_Studio_New_App_20180601181444834.png)](https://vuzix.intercom-attachments-1.com/i/o/459768058/2d5b794679489596fc6767b3/_Android_Studio_New_App_20180601181444834.png)

Create New Project

- Select**Phone and Tablet**form factor in the “Target Android Devices” window.
- The Vuzix Blade currently runs Android 5.1, so select **API 22** for the target API.
- For this example, there is no need to **Include Android Instant App support**.

​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768064/d147fcf0a8588d555b35553d/_Android_Studio_New_App_API_20180601181444875.png)](https://vuzix.intercom-attachments-1.com/i/o/459768064/d147fcf0a8588d555b35553d/_Android_Studio_New_App_API_20180601181444875.png)

Target Android Devices

- For this example, select the **Empty Activity** template in the “Add an Activity to Mobile” window.

​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768068/c44e83f941d7a6dcfeca5594/_Android_Studio_New_App_Activity_20180601181444906.png)](https://vuzix.intercom-attachments-1.com/i/o/459768068/c44e83f941d7a6dcfeca5594/_Android_Studio_New_App_Activity_20180601181444906.png)

Add an Activity to Mobile

- Provide your**Activity Name**.
- Ensure the Generate Layout File is checked.
- Provide your**Layout Name.**
- For this Sample, make sure you do not enable the "Backwards Compatibility (AppCompat)" option.
- Click **Finish**.

​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768072/9142719f3eecf711dc94e435/_Android_Studio_New_App_Configure_20180601181444954.png)](https://vuzix.intercom-attachments-1.com/i/o/459768072/9142719f3eecf711dc94e435/_Android_Studio_New_App_Configure_20180601181444954.png)

Configure Activity

- Android Studio will generate the example project and display the MainActivity class as shown below.

​

[![](https://vuzix.intercom-attachments-1.com/i/o/459768076/aa7538b9249f38796039ead4/_Start_Sample_20180601181445012.png)](https://vuzix.intercom-attachments-1.com/i/o/459768076/aa7538b9249f38796039ead4/_Start_Sample_20180601181445012.png)

New Project ​

This is the basis of any Vuzix Blade application, and basic Android activity application.

Now lets continue the process of making this Vuzix Blade application by adding the Vuzix HUD libraries and resource.
