> ## Documentation Index
> Fetch the complete documentation index at: https://solanalabs-beeman-seeker-connect-docs-location-1e9568.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a Project

> Get started quickly with a Solana Mobile template app generated by create-solana-dapp.

export const FooterDisclaimer = () => {
  return <p className="not-prose mt-16 text-center text-xs text-gray-500 dark:text-gray-400">
      Code samples on this page are subject to the{" "}
      <a className="underline underline-offset-2" href="https://www.apache.org/licenses/LICENSE-2.0">
        Apache 2.0 license
      </a>
      .
    </p>;
};

We recommend beginning with a Solana Mobile template app generated by `create-solana-dapp`. The pre-built templates provide:

* React Native framework (powered by Expo)
* Mobile Wallet Adapter and Solana RPC integration examples
* Pre-built components, navigation, and React hooks

## Initialize your project

Run the following command in your terminal:

```bash theme={null}
npm create solana-dapp@latest
```

When prompted, select the **Solana Mobile** framework, then choose from the available template options.

## Build and run your app

Install dependencies, then build and launch the app on your connected Android device or emulator.

<CodeGroup>
  ```bash npm theme={null}
  npm install
  npm run android
  ```

  ```bash yarn theme={null}
  yarn install
  yarn android
  ```

  ```bash pnpm theme={null}
  pnpm install
  pnpm android
  ```
</CodeGroup>

<FooterDisclaimer />
