Unboxing the Android SDK
CyoGateSDK— Main entry point (singleton)CyoGateConfiguration— Builder-pattern configurationTransactionRequest— Describes the paymentTransactionResult— Contains outcome dataCyoGateTransactionCallback— Result callback interface
import net.cyogate.sdk.CyoGateSDK
val config = CyoGateConfiguration.Builder()
.setApiKey("YOUR_PUBLIC_KEY")
.setEnvironment(CyoGateEnvironment.PRODUCTION)
.build()
val sdk = CyoGateSDK.initialize(this, config)
See the Tap to Pay on Android overview for the full topic list.