Skip to main content
Unveilydocs

License Setup

Get your license key and connect it to your app.

Korean businesses — When entering your Tax ID during checkout, use your Business Registration Number in XXX-XX-XXXXX format (with hyphens). Entering numbers only will result in a payment error.

Getting Your License Key

Development and production licenses are automatically issued when your subscription is complete.

  1. Go to My Page → License
  2. Check your Development License Key and Production License Key

Creating the License File

Development License

# Create the file
echo "your-issued-dev-license-key" > app/src/debug/assets/license.key

Production License

# After activating the production license (My Page → App Settings)
echo "your-issued-prod-license-key" > app/src/release/assets/license.key

The production license must be activated in My Page. The app will not run if the package name and app signature hash do not match.

Production License Activation Steps

  1. Register your package name in My Page → App Settings
  2. Enter your release keystore SHA-256 hash
  3. Click the Activate Production License button
  4. After activation, update the app/src/release/assets/license.key file

iOS License Placement

On iOS, place the license key in your app bundle's Resources area.

UnveilyApp/Supporting/license.key

On first launch, the SDK automatically migrates the key into the iOS Keychain. License activation is bound to your Bundle ID / Team ID, so the values you register in the dashboard must match your app settings. See the iOS Configuration Guide for details.

For more details, see the License Structure document.

On this page