GameDevPartner SDK
SDK for integrating GameDevPartner affiliate tracking into Unity games. Tracks installs, purchases, and influencer attribution.
com.gamedevpartner.sdk 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/nonstop1899-sdk.git README Markdown
Copy this to your project's README.md
## Installation
Add **GameDevPartner SDK** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/nonstop1899-sdk.git
```
[](https://www.pkglnk.dev/pkg/nonstop1899-sdk)README
GameDevPartner Unity SDK
SDK for integrating affiliate tracking into Unity games. Tracks installs, purchases, and influencer attribution.
Unity 2020.3 LTS+ | v1.0.0
Installation (Unity Package Manager)
- Open your Unity project
- Go to Window > Package Manager
- Click + > Add package from git URL
- Paste:
https://github.com/nonstop1899/gamedevpartner-unity-sdk.git
- Click Add
Quick Start
1. Initialize SDK
using GameDevPartner.SDK;
void Awake() {
GameDevPartnerSDK.Init(new SDKConfig {
GameId = "your_game_slug",
ApiKey = "YOUR_LIVE_KEY",
Region = SDKRegion.RU,
DebugMode = true
});
}
2. Identify Player
GameDevPartnerSDK.IdentifyPlayer(playerId);
3. Track Purchase
GameDevPartnerSDK.TrackPurchase(new PurchaseEvent {
PlayerId = playerId,
ProductId = "gem_pack_100",
Amount = 299f,
Currency = "RUB",
Source = PaymentSource.YooKassa,
TransactionId = txId,
ReceiptData = receipt
});
Features
- Offline queue (up to 100 events, 7-day retention)
- HMAC-SHA256 request signing
- Automatic platform/GAID/IDFV detection
- Editor settings window (Window > GameDevPartner > Settings)
Documentation
Full documentation: gamedevpartner.ru/developer/sdk
License
MIT
Comments
No comments yet. Be the first!
Sign in to join the conversation
Sign In