Privy Expo Starter

This demonstrates a minimal working installation of the privy sdk in a fresh expo app.

Setup

  1. Install dependencies

    npm i
  2. Add your Privy app ID in App.js

    export default function App() {
      return (
        <PrivyProvider appId="<your-privy-app-id>">
          <View style={styles.container}>
            <Content />
          </View>
        </PrivyProvider>
      );
    }

Run the app

# expo go
npm start

# ios
npm run ios

# android
npm run android

expo-starter-request-network