Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -336,10 +336,12 @@ public static void pay(final PoolPayInfo poolPayInfo,final PoolPayListener poolP | ... | @@ -336,10 +336,12 @@ public static void pay(final PoolPayInfo poolPayInfo,final PoolPayListener poolP | 
| 336 | PoolSdkHelper.pay(poolPayInfo, new PoolPayListener() { | 336 | PoolSdkHelper.pay(poolPayInfo, new PoolPayListener() { | 
| 337 | @Override | 337 | @Override | 
| 338 | public void onPaySuccess(String paramCustom) { | 338 | public void onPaySuccess(String paramCustom) { | 
| 339 | + //此处回调只用作游戏关闭支付界面等友好显示,实际支付以服务端为准(游戏请勿弹出toast提示支付状态) | ||
| 339 | System.out.println("支付成功 = " + paramCustom); | 340 | System.out.println("支付成功 = " + paramCustom); | 
| 340 | } | 341 | } | 
| 341 | @Override | 342 | @Override | 
| 342 | public void onPayFailed(String paramCustom, String errorMsg) { | 343 | public void onPayFailed(String paramCustom, String errorMsg) { | 
| 344 | + //此处回调只用作游戏关闭支付界面等友好显示,实际支付以服务端为准(游戏请勿弹出toast提示支付状态) | ||
| 343 | System.out.println("支付失败 = " + paramCustom + "; errorMsg = " | 345 | System.out.println("支付失败 = " + paramCustom + "; errorMsg = " | 
| 344 | + errorMsg); | 346 | + errorMsg); | 
| 345 | } | 347 | } | ... | ... | 
- 
Please register or login to post a comment