> For the complete documentation index, see [llms.txt](https://docs.mburger.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mburger.cloud/sample-app-1/create-the-project.md).

# Create the project

{% tabs %}
{% tab title="iOS" %}
Create an empty project with XCode, then create a file called Podfile in the root directory of the project. We will use the Swift language, but all of this can be translated to Objective-C.

We will use [CocoaPods](https://cocoapods.org/) to install the SDK in our project. If you have not installed CocoaPods yet, open a terminal window and run this command:

```bash
$ gem install cocoapods
```

After, create a Podfile, this can be done by running&#x20;

```bash
$ pod init
```

Open the Podfile create and write this, replacing **YourTarget** with the name of your target:

```bash
platform :ios, '10.0'

target 'YourTarget' do
    use_frameworks!

    pod 'MBurger'
end
```

Then open terminal and  run&#x20;

```
$ pod install
```

{% hint style="info" %}
This will create a new *.xcworkspace* file, so remember to use this from now on.
{% endhint %}

{% hint style="success" %}
If everything has gone well you will have installed the [MBurger SDK](https://github.com/Mumble-SRL/MBurger-iOS) in your project.
{% endhint %}
{% endtab %}

{% tab title="Android" %}
Add the MBurger SDK dependency from Maven or download it from the Github project page, then open Android Studio and click on **New Project**, setting up minimum SDK at least OS version 4.2.
{% endtab %}
{% endtabs %}


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.mburger.cloud/sample-app-1/create-the-project.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
