人工智能碰撞检测
解锁设备上的崩溃模型
在几秒钟内生成许可证密钥。它与您的应用 ID 绑定,按需下载,并且完全在设备上运行 — 没有运行时调用。
使用 Google 登录 · 免费开发 · 无需信用卡
它是如何运作的
1Sign in & enter your app idLog in with Google, then provide your Android package or iOS bundle id (e.g.
com.acme.driver).2Generate a keyPick dev or prod and click generate. Copy the key — or the ready-made
ImpactConfig snippet.3Paste & shipDrop the key into your config. Tracelet downloads the model once, then runs inference entirely on-device.
开发许可证与生产许可证
| 开发 | 产品 | |
|---|---|---|
| 用于 | 调试构建、模拟器、CI | 已在商店发布应用程序 |
| 绑定 | 仅限应用程序 ID | 绑定到您发布的应用程序 |
| 需要 | 只是您的应用程序 ID | 应用程序 ID ****** 签名证书 SHA-256 |
| 最大有效期 | 90 天 | 730 天 |
🔒
每个密钥均在设备上进行加密签名和验证。许可证只能解锁崩溃模型,没有其他功能,并且您可以撤销直接从门户颁发的任何密钥。
将其放入您的应用程序中
从门户复制密钥后,将其连接到 ImpactConfig:
import 'package:tracelet/tracelet.dart' as tl;
final config = tl.ImpactConfig(
enableCrashDetection: true,
crashModelUnlockUrl: 'https://unlock.ikolvi.com/unlock',
crashModelLicenseKey: 'PASTE_YOUR_KEY_HERE',
crashModelThreshold: 0.5074575792,
);该门户会生成这个精确的代码片段(您的密钥已填写),以便您可以直接复制粘贴它。
Last updated on