Skip to main content

Unity SDK

Install Unity SDK from the public devkit with explicit setup, verification, and CI gate steps.

6 min readSDK Integration

Get the SDK

Use the public devkit repository as the source of truth for Unity integration.

Install and Bootstrap

Install via UPM Git URL, then initialize from your startup scene.

// Packages/manifest.json
"com.argus.sdk": "https://github.com/ludotronics/argus-devkit.git?path=unity#main"

// Runtime bootstrap
Argus.Init("ak_live_YOUR_KEY", projectId: "my-game");

Configure and Verify

Configure API key, project ID, and backend URL, then verify telemetry in dashboard.

  • - Development and CI: Test mode
  • - Production: Live mode with consent controls
  • - Verify event flow in /live and run readiness in /runs
Treat API keys as environment-scoped secrets and rotate on a regular cadence.

CI/CD Release Gate

Upload build, execute run matrix, and gate release by scorecard policy.

argus push build.apk --project my-game
argus run --project my-game --persona explorer,completionist --budget 8

Related Docs