Mobile App Handoff
Launch SecureSign Mobile App from your native Android or iOS application — no SDK required.
Overview
If you have a native Android or iOS app, you do not embed an SDK. Instead, launch the SecureSign Mobile App with a signing deep link and receive the signed result via callback URL or app link.
Android
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(
"securesign://sign?requestId=$requestId&hashBase64=$hash&callbackUrl=$callback&apiKey=$apiKey"
))
startActivityForResult(intent, SIGN_REQUEST_CODE)
// Handle signed result in onActivityResult or callback URL
iOS
if let url = URL(string: "securesign://sign?requestId=\(requestId)&hashBase64=\(hash)&callbackUrl=\(callback)&apiKey=\(apiKey)") {
UIApplication.shared.open(url)
}
// Handle return in onOpenURL / scene(_:openURLContexts:)
No Public Mobile SDK
SDK not available
Toolsbots does not provide public Android or iOS SDK packages. All mobile signing goes through the SecureSign Mobile App to protect our product IP. For enterprise embedded requirements, contact us.