> For the complete documentation index, see [llms.txt](https://docs.snapodds.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.snapodds.com/docs/mobile-sdk/react-native/snapodds-sport-media/initialization.md).

# Initialization

### Initialization

In order to initialize Snapscreen, call the following method when your React Native application starts up:

```javascript
SnapscreenSDKModule.setupWithClientId("your-client-id", "your-client-secret");
```

### Additional information

To improve performance, SnapOdds requires basic locational information to be provided. Set the users country and US state information within the SDK using the parameters **country** and **usState**:

```javascript
SnapscreenSDKModule.setCountry("US")
SnapscreenSDKModule.setUsState("NJ")
```
