Skip to content

Commit 59f462b

Browse files
author
ehowlsla
committed
inicis bank update
1 parent 447b6c8 commit 59f462b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

bootpay/src/main/java/kr/co/bootpay/BootpayWebView.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ private Intent parse(String url) {
203203
}
204204

205205
private Boolean isIntent(String url) {
206-
return url.matches("^intent:?\\w*://\\S+$");
206+
// return url.matches("^intent:?\\w*://\\S+$");
207+
return url.startsWith("intent:");
207208
}
208209

209210
private Boolean isMarket(String url) {

sample/src/main/java/bootpay/co/kr/samplepayment/NativeActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ public void onClick_request(View v) {
7676
Bootpay.init(getFragmentManager())
7777
.setContext(this)
7878
.setApplicationId(application_id) // 해당 프로젝트(안드로이드)의 application id 값
79-
.setPG(PG.DANAL) // 결제할 PG 사
80-
.setMethod(Method.CARD)
79+
.setPG(PG.INICIS) // 결제할 PG 사
80+
.setMethod(Method.BANK)
8181
.setBootExtra(bootExtra)
8282
.setBootUser(bootUser)
8383
// .setUserPhone("010-1234-5678") // 구매자 전화번호

0 commit comments

Comments
 (0)