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.

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.
