Dragonpass Hybrid SDK for Android lets a host app launch and interact with Dragonpass DPApps.
This repository distributes the Android DPSDK through JitPack. It does not include SDK source code, credentials, or demo projects.
- Android 5.0 (API level 21) or later
- Android Gradle Plugin / Gradle setup with JitPack support
- A registered
clientId - A DPApp
appId - A host-app auth-code flow
To request or confirm your clientId, DPApp appId, and auth-code setup, contact the Dragonpass DPSDK team through Contact Us.
For manual installation with Gradle / JitPack:
Add JitPack to dependency resolution:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}Add the dependency to your app module:
dependencies {
implementation("com.github.bigBandFE:dpsdk-android:2.0.0")
}If your host app still depends on AndroidX migration compatibility, add this to gradle.properties:
android.enableJetifier=trueYou can also use the AI-assisted integration skill after reviewing the manual installation steps:
hermes skills install --category devops --yes \
"https://raw.githubusercontent.com/bigBandFE/dpsdk-ai-skill/main/SKILL.md"Initialize DPSDK from the host Application:
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
DPSDK.init(this).setDPSdkConfig(
DPSDKConfig.Builder()
.setClientId("<client_id>")
.build()
)
}
}Register the Application class in AndroidManifest.xml:
<application
android:name=".MyApplication"
...>After your host app obtains a non-empty auth code from its backend/auth flow, pass it to the SDK:
DPSDK.setAuthCode("<auth_code>")Refresh remote DPApp configuration before showing DPApp entry points:
DPSDK.updateConfig(onSuccess = {
DPSDK.getDPApps(onSuccess = { apps ->
// Enable entry points for available app IDs.
})
}, onError = { code, msg ->
// Show a host-app controlled failure state.
})Open a DPApp from a valid Activity context:
val appId = "<app_id>"
DPSDK.getDPApp(appId).open(this)Register custom event handlers before opening the DPApp when the miniapp needs host capabilities:
val appId = "<app_id>"
DPSDK.getDPApp(appId)
.setCustomEventListener { activity, data, event, callback ->
when (event.eventType) {
"requestLocationPermission" -> {
// Request permission in the host app, then call callback.
}
}
}
.open(this)- Dependency resolution failure: confirm JitPack is configured and the dependency version exists.
- Startup failure: confirm
clientIdis registered for your host app. - Blank or unavailable DPApp: confirm the DPApp
appIdand auth-code flow with the Dragonpass DPSDK team. - Auth errors: ensure the host app obtains a fresh non-empty auth code before opening DPApps.
- WebView or JSBridge callback issues: register custom event handlers before opening the DPApp.
For setup support, open a request through Contact Us.