Skip to content

Instantly share code, notes, and snippets.

@nataliaconde
Created June 16, 2021 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nataliaconde/b2e9ef9324697ec138529829988c36b4 to your computer and use it in GitHub Desktop.
Save nataliaconde/b2e9ef9324697ec138529829988c36b4 to your computer and use it in GitHub Desktop.
Incognia-Java.kt
Incognia.getInstallationId(context, new IncogniaListener<String>() {
@Override
public void onResult(final Result<String> result) {
if (result.isSuccessful()) {
String installationId = result.getResult();
// HttpURLConnection
httpUrlConnection.setRequestProperty("Incognia-Installation-ID", installationId);
}
// Send the request with the installationId to your backend server
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment