Integration guides for the Tenjin SDK, optimized for AI assistants.
Use the main guide — it will detect your platform and fetch the right guide:
Add Tenjin SDK to my project using:
https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/llm-guide.md
Use a platform-specific guide directly:
| Platform | Guide URL |
|---|---|
| iOS | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/ios/llm-guide.md |
| Android | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/android/llm-guide.md |
| Flutter | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/flutter/llm-guide.md |
| Ionic | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/ionic/llm-guide.md |
| React Native | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/react-native/llm-guide.md |
| Unity | https://raw.githubusercontent.com/tenjin/sdk-llm-guides/main/guides/unity/llm-guide.md |
Add Tenjin SDK to my project using: <url-from-table>
guides/
├── llm-guide.md # Entry point (detects platform, routes to specific guide)
├── ios/
│ └── llm-guide.md # iOS-specific integration guide
├── android/
│ └── llm-guide.md # Android-specific integration guide
├── flutter/
│ └── llm-guide.md # Flutter-specific integration guide
├── ionic/
│ └── llm-guide.md # Ionic (Capacitor) integration guide
├── react-native/
│ └── llm-guide.md # React Native integration guide
└── unity/
└── llm-guide.md # Unity integration guide
If you're an AI assistant and the user asks to integrate Tenjin:
- Fetch
guides/llm-guide.md - Detect the platform from their project files
- Fetch the platform-specific guide
- Follow the workflow
When adding a new platform guide:
- Create
guides/{platform}/llm-guide.md - Add platform detection hints to
guides/llm-guide.md - Keep guides self-contained
- Don't hardcode SDK versions — check latest release
- Include code examples, checklist, common mistakes