The Trinsic Android UI Library provides ways to launch verification sessions directly from your Android application.
This library must be paired with an api library as part of a full integration.
This library is delivered via Jitpack.
Add jitpack to the repositories
block in your Gradle build file:
repositories {
google()
mavenCentral()
// Add jitpack below
maven {
url = URI("https://jitpack.io")
}
}
Add the library as a Gradle dependency:
dependencies {
...
implementation("com.github.trinsic-id:sdk-android-ui")
}
See the library's page on Jitpack for installation instructions for Maven and others.
First, choose a custom scheme to register against your app. This is necessary for the library to hook into the final session redirect and pass the results back to your application.
The custom scheme can be any valid URL scheme, but it must be globally unique. No other app -- including any of your own -- should register against the same scheme.
An example of a good scheme is acme-corp-shopping-app-trinsic-redirect
.
Place the following snippet in your app's AndroidManifest.xml
, replacing [YOURCUSTOMSCHEME]
with the scheme you chose in step 1
<activity
android:name="id.trinsic.android.ui.CallbackActivity"
android:exported="true">
<intent-filter android:label="trinsic">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="[YOURCUSTOMSCHEME]" />
</intent-filter>
</activity>
If your app's manifest specifies the android:taskAffinity
property on any activity which calls this library, you must make some adjustments.
If your activity specifies a custom task affinity (which is not an empty string), simply make the following changes:
1. Change the CallbackActivity
entry
Modify the snippet above (which you pasted into your AndroidManifest.xml
) to specify the same android:taskAffinity
property as you specify on your own app's activity.
2. Add an entry for InvokeActivity
Normally, your app does not need to add a manifest entry for InvokeActivity
(which is provided by this library); however, to align task affinities, you will need to do so.
Simply paste the following snippet next to where you pasted the above snippet, replacing [your.custom.affinity]
with the custom affinity you specified on your own app's activity.
<activity
android:name="id.trinsic.android.ui.InvokeActivity"
android:taskAffinity="whatever.custom" />
Warning
A security vulnerability -- affecting all versions of Android below Android 9.0 / API 28 -- is partially mitigated by explicitly specifying an empty taskAffinity
.
Although the official recommendation is to change your app's minimum SDK version to 28
or higher, setting an empty taskAffinity
offers some mitigation for older devices.
However, since an empty taskAffinity
breaks this library, think carefully about how you proceed.
Note that this vulnerability is not related to this library: if your app's minimum SDK version is less than 28 then it is inherently vulnerable, as the issue exists within Android itself. This library has no effect on your app's security.
Your options are:
- (Recommended) Increase your app's minimum SDK version to
28
or higher- Unless your app requires it (which is uncommon), you can safely remove the
android:taskAffinity=""
property after this change - This will prevent your app from running on roughly 9% of Android devices
- This is the only way to fully mitigate the aforementioned security issue.
- Unless your app requires it (which is uncommon), you can safely remove the
- Remove the
android:taskAffinity=""
field without changing your app's minimum SDK version- Your app may be vulnerable to activity hijacking on older Android devices
If you specify a custom task affinity of ""
(an empty string), this library cannot function.
This is because cross-task activity communication is not possible in the way this library requires, and an empty task affinity will cause one or more of the library's vital activities to launch in a separate task from your original activity.