How to Create a New Project in Android Studio Canary Version with Jetpack Compose? Last Updated : 05 Sep, 2024 Comments Improve Suggest changes Like Article Like Report Jetpack Compose is a new toolkit provided by Google. This is useful for designing beautiful UI designs. After the successful installation of the Android Studio Canary version, we are moving towards the creation of a new Project. In this article, we will take a look at How to create a new project in the Android Studio Canary Version using Jetpack Compose. Create a New Project in Android Studio with Jetpack ComposeAfter launching up your Android Studio Canary version for the first time you will get to see the below screen.Step 1: Click on the first option to start with New ProjectClick on the Create New Project option after that you will get to see the below screen. If the Application is already open then four lines button at the top left corner. Then Click New Project to create a new android application Project. Step 2: After clicking on Create New Project you will get to see the below screen. On this screen make sure to select Phone and Tablet as a default selection and then click on Empty Compose Activity in the right section and then click on the Next option. Step 3: After selecting Empty Compose Activity you will get to see the below screen.After click on next, you will get to see the below screen. On this screen give a name to your application in the first text box which represents the Name of the project. Select your minimum SDK for Marshmallow (6.0). The 84.9% of devices indicates the % of devices on which our app will works. After giving the name and selecting the minimum SDK click on the Finish option to create a new project. After clicking on Finish the default application will be created and now you can start writing your code. Comment More infoAdvertise with us Next Article How to Create a New Project in Android Studio Canary Version with Jetpack Compose? C chaitanyamunje Follow Improve Article Tags : Technical Scripter Android Technical Scripter 2020 Android-Jetpack Similar Reads How to Create Admin & Client App in One Project Using Android Studio? You all must know about projects in which two applications are required one for the client and the other for the admin. Here we will see how we can implement both the applications under a single project in android studio. Let us see the step-by-step implementation of this procedure. Step by Step Imp 2 min read How to Create Outlined Text in Android using Jetpack Compose? In Android, we can customize various aspects of a Text for displaying them accordingly. We can change the font size, and font family as well as apply various functions like bold, italics, etc. However, it is not possible to display an outline font for the same text. In case, you are unaware of what 3 min read How to Get Screen Width and Height in Android using Jetpack Compose? Android applications are being developed for different device orientations to support a huge range of devices. So that users with different device size configurations can use the application. Many applications need to get the height and width of the device screen to create UI. In this article, we wi 5 min read How to Create/Start a New Project in Android Studio? After successfully installing the Android Studio and opening it for the first time. We need to start with some new projects to start our journey in Android.In this article, we will learn about How to Create a New Project in Android Studio.Steps to Create/Start a New Android Project in Android Studio 2 min read How to Post Data to API using Volley in Android using Jetpack Compose? APIs are used within Android Applications to interact with a database to perform various CRUD operations on data within the database such as adding new data, reading the existing data, and updating and deleting existing data. In this article, we will take a look at How to Post data to API in android 3 min read Like