Skip to main content

How to setup an expo project with EAS?

 How to setup an expo project with EAS?


Run the following commands:

1. npx create-expo-app@latest

    give a name to your project <sociallogin>

2. cd sociallogin

3. eas login

    login to your eas account with credentials

4. eas build:configure

Comments

Popular posts from this blog

Entity Framework: Database First Approach in .NET

Getting Started with Entity Framework: Database First Approach in .NET Entity Framework (EF) is a powerful Object-Relational Mapper (ORM) that allows developers to work with databases using C# objects instead of writing raw SQL queries. 🔷 What is Entity Framework? Entity Framework simplifies database interaction by mapping database tables to C# classes, enabling clean and maintainable code. +-------------------+ +---------------------+ +------------------+ | C# Classes | ----> | Entity Framework | ----> | Database | | (Entities) | | (ORM Layer) | | (Tables/Rows) | +-------------------+ +---------------------+ +------------------+ 🔷 Entities and Domain Classes 📌 Entity Classes Entity classes represent database tables. Each object corresponds to a row in the table. 📌 Domain Classes Domain classes represent business logic and real-world entities. Entities: Have primary keys Val...