> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rork.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How To Create a privacy policy, Terms and conditions, and EULA

> Every app must include Terms & Conditions, a Privacy Policy, and an EULA to be approved on the App Store and to protect you legally.

export const CtaBanner = () => <div style={{
  display: "flex",
  alignItems: "center",
  justifyContent: "space-between",
  gap: "24px",
  flexWrap: "wrap",
  margin: "40px 0 8px",
  padding: "22px 28px",
  borderRadius: "16px",
  background: "linear-gradient(135deg,rgba(249,115,22,0.10),rgba(255,255,255,0.03),rgba(249,115,22,0.06))",
  border: "1px solid rgba(255,255,255,0.08)"
}}>
    <div>
      <div style={{
  fontSize: "19px",
  fontWeight: 700,
  color: "#fff",
  letterSpacing: "-0.3px",
  lineHeight: 1.3
}}>
        Build your app with Rork today.
      </div>
      <div style={{
  fontSize: "14px",
  color: "rgba(255,255,255,0.6)",
  marginTop: "4px",
  lineHeight: 1.5
}}>
        Ship iOS, Android, and web apps by chatting with AI.
      </div>
    </div>
    <a href="https://rork.com" style={{
  flexShrink: 0,
  display: "inline-block",
  padding: "10px 24px",
  background: "linear-gradient(135deg,#fff,#f0f0f0)",
  color: "#000",
  fontSize: "14px",
  fontWeight: 600,
  borderRadius: "100px",
  textDecoration: "none",
  whiteSpace: "nowrap"
}}>
      Try Rork for Free
    </a>
  </div>;

### 1. End User License Agreement (EULA)

* You **do not need to write your own EULA**.
* Apple allows you to use **Apple's Standard EULA**, which is accepted by default on the App Store.
* When submitting your app, simply select **Apple's Standard EULA** unless you have custom legal requirements.

<Check>
  **Recommended**: Use Apple's Standard EULA.
</Check>

### 2. Privacy Policy

* A **Privacy Policy is required** for all apps, especially if you collect:
  * User data
  * Analytics
  * Payments
  * Account information
* You can generate a compliant Privacy Policy using tools like:
  * **Termly**
  * [**PrivacyPolicies.com**](http://PrivacyPolicies.com)
  * **Iubenda**

These tools allow you to:

* Answer a few questions about your app
* Auto-generate a policy
* Host the policy or export it as a URL

<Check>
  **Recommended**: Use **Termly** for fast, App Store-ready policies.
</Check>

### 3. Terms & Conditions

* Terms & Conditions define how users are allowed to use your app and limit your liability.
* You can generate Terms & Conditions using the **same tools**:
  * Termly
  * [PrivacyPolicies.com](http://PrivacyPolicies.com)
* Most tools bundle **Terms + Privacy Policy** together.

<Check>
  **Recommended**: Generate Terms & Conditions with the same service you use for your Privacy Policy.
</Check>

### 4. Where to Use These Policies

Make sure you:

* Add all policies in your App Store description to be safe
* Link to your policies inside the app's Settings and Paywall.

<CtaBanner />
