> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-react-native-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-react-native-integration/start/expo.md).

# Expo

This plugin is designed for use with Expo. Please ensure that you are using one of the following workflows:

* Bare Workflow
* Managed Workflow with EAS

You can build your project in the cloud using EAS Build or locally with the `expo prebuild` command.

#### Configuring Platform-Specific AdMob App IDs

If you are using **Bare Workflow**, you need to manually add the AdMob App IDs to the native configuration files, as described [here](/aatkit-react-native-integration/start/google-mobile-ads-sdk.md).

However, for Managed Workflow with EAS to specify separate AdMob App IDs for Android and iOS, you need to update your Expo configuration. This can be done in either `app.config.js` or `app.json` by adding the following entry under `plugins`, like:

```json
plugins: [
  [
    "@addapptr/react-native-aatkit",
    {
      "androidAdMobAppId": "ca-app-pub-000000000000000~0000000000",
      "iosAdMobAppId": "ca-app-pub-000000000000000~0000000000"
    }
  ]
]
```

This ensures that the correct AdMob App ID is used depending on the platform the app is running on.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aatkit.gitbook.io/aatkit-react-native-integration/start/expo.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
