Getting Started With Expo and Tauri
mkdir my-project && cd my-project: Create a project and cd into it.
git init: Initialize git so if any of these steps goes wrong, it can be reversed.
yarn create expo .: Create an expo app in the root directory.
yarn add -D @tauri-apps/cli@latest: Install the tauri CLI.
yarn tauri init Initialize tauri with answers related to expo.
# Where are your web assets (HTML/CSS/JS) located: ../dist
# What is the url of your dev server: localhost:8081
# What is your frontend dev command: yarn web
# What is your frontend build command: npx expo export