Import
import tw.com.ecpay.paymentgatewaykit.manager.*
初始化
使用SDK前的初始化,帶入Activity與環境參數
PaymentkitManager.initialize(mActivity, serverType);
帶入參數
Activity Android Activity
Activity元件 必填
請提供APP當前畫面的Activity元件
ServerType String
環境參數 必填
- Stage : 測試環境
- Prod : 正式環境
初始化SDK使用範例
public void init() {
ServerType serverType = ServerType.Stage;
String typeStr = "stage";
sdkInit(serverType);
}
private void sdkInit(ServerType serverType) {
PaymentkitManager.initialize(mActivity, serverType);
}