Dashboard Setup
This guide walks you through setting up your Clippr account, creating organizations, and configuring apps.
Create Your Account
- Go to app.useclippr.xyz
- Click Sign Up
- Enter your email and create a password
- Verify your email address
Info
You can also sign up with Google or GitHub for faster onboarding.
Create an Organization
Organizations are workspaces that contain your apps, links, and team members.
Create an App
Apps represent your mobile applications. Each app gets its own subdomain and API key.
Getting Android SHA256 Fingerprints
Android requires SHA256 fingerprints for App Links verification.
Debug Keystore
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
Release Keystore
keytool -list -v -keystore /path/to/your/release.keystore -alias your-alias
Google Play App Signing
If using Google Play App Signing:
- Go to Google Play Console → Your App → Setup → App signing
- Copy the SHA256 fingerprint from "App signing key certificate"
⚠️ Warning
Add both your upload key fingerprint AND Google Play's app signing fingerprint if you use Play App Signing.
Verify Your Configuration
After creating your app, Clippr automatically hosts:
- iOS AASA:
https://yourapp.clppr.xyz/.well-known/apple-app-site-association - Android Asset Links:
https://yourapp.clppr.xyz/.well-known/assetlinks.json
You can verify these by visiting the URLs in your browser.
Test AASA (iOS)
curl https://yourapp.clppr.xyz/.well-known/apple-app-site-association
Expected response:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "TEAMID.com.yourcompany.yourapp",
"paths": ["*"]
}
]
}
}
Test Asset Links (Android)
curl https://yourapp.clppr.xyz/.well-known/assetlinks.json
Expected response:
[
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.yourcompany.yourapp",
"sha256_cert_fingerprints": ["..."]
}
}
]
API Key Management
Viewing Your API Key
- Go to Apps → Select your app
- The API key is shown in the app details
Rotating Your API Key
If your API key is compromised:
- Go to Apps → Select your app
- Click Rotate API Key
- Confirm the rotation
- Update your app with the new key and release an update
⚠️ Warning
Rotating the API key immediately invalidates the old key. Make sure to update your app before rotating in production.
Team Management
Invite team members to collaborate on your organization.
Invite a Member
- Go to Organization Settings → Members
- Click Invite Member
- Enter their email address
- Select their role:
- Owner: Full access, can manage billing and delete org
- Admin: Can manage apps, links, and members
- Member: Can create and manage links
- Viewer: Read-only access
Remove a Member
- Go to Organization Settings → Members
- Click the menu next to the member
- Click Remove
Next Steps
Your dashboard is now configured! Next:
- Quick Start - Integrate the SDK
- Creating Links - Create your first deep link
- Analytics - Track your link performance