Repro - Mobile Analytics for growth
日本語
Sign Up Back to Dashboard
  • System Requirements
  • Dashboard Guide
  • Development Guide
    • Signup
    • iOS/Android SDK
      • Get Started
      • Session Lifecycle
      • User ID
      • Device ID
      • User Profile
      • Event Tracking
      • Push Notification
      • NewsFeed
      • In-App Message
      • Silver Egg Recommendation Messages
      • Remote Config
      • WebView
      • Opt-out feature
      • Settings regarding the collection of advertiser IDs
      • Registering an user device into a specific audience with the help of a QR code
        • Android
        • iOS
      • Set attribution data from Adjust to Repro
      • Set attribution data from AppsFlyer to Repro
      • Log Level
      • Verification Method
    • Web
    • Audience API
    • Audience Import(β)
    • Push API
    • User Profile API
    • User Profile Bulk Import
    • NewsFeed API
    • Deletion Targeted User Registration API
    • Booster installation guide
    • Mail(β)
  • Release Notes
  • FAQ

Registering an user device into a specific audience with the help of a QR code¶

Warning

For this feature at least iOS SDK version 5.16.0 or Android SDK version 5.15.0 is necessary.

Android¶

In order to use this feature, the code snippet below has to be added to your AndroidManifest.xml file.

<manifest>
    <application>
        ...
        <activity
            android:name="io.repro.android.DeepLinkHandler"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>

                <data android:scheme="rpr-{YOUR_PROJECT_ID}"/>
            </intent-filter>
        </activity>
        ...
    </application>
</manifest>

Please replace the placeholder {YOUR_PROJECT_ID} with your Project ID. You can find your Project ID under Settings > Project Settings > General.

qrcode-project-id

iOS¶

In order to use this feature, the code snippet below has to be added to your Info.plist file.

<dict>
    ...
    <key>CFBundleURLTypes</key>
    <array>
        ...
        <dict>
            <key>CFBundleURLSchemes</key>
            <array>
                ...
                <string>rpr-{YOUR_PROJECT_ID}</string>
            </array>
        </dict>
    </array>
</dict>

Please replace the placeholder {YOUR_PROJECT_ID} with your Project ID. You can find your Project ID under Settings > Project Settings > General.

qrcode-project-id
  • « Settings regarding the collection of advertiser IDs
  • Set attribution data from Adjust to Repro »

About Us Careers Terms of Service Privacy Policy Cookie Policy

© 2022 Repro Inc.