Skip to content

Commit a6c1c1c

Browse files
author
ehowlsla
committed
payapp update
1 parent 5894821 commit a6c1c1c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

BootpayWebView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
final class BootpayWebView extends WebView {
42-
private static final String BOOTPAY = "https://inapp.bootpay.co.kr/2.0.2/production.html";
42+
private static final String BOOTPAY = "https://inapp.bootpay.co.kr/2.0.3/production.html";
4343

4444
private ConnectivityManager connManager;
4545

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ allprojects {
2222
## build.gradle (Modlue):
2323
```gradle
2424
dependencies {
25-
compile 'com.github.bootpay:client_android_java:1.1.3'
25+
compile 'com.github.bootpay:client_android_java:2.0.3'
2626
}
2727
```
2828

@@ -37,6 +37,7 @@ dependencies {
3737
Bootpay.init(getFragmentManager())
3838
.setApplicationId("59a7e647396fa64fcad4a8c2")
3939
.setPG(PG.DANAL)
40+
.setUserPhone("010-1234-5678")
4041
.setMethod(Method.CARD)
4142
.setName("맥북프로임다")
4243
.setOrderId(String.valueOf(System.currentTimeMillis()))

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import java.net.URISyntaxException
2626
internal class BootpayWebView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0): WebView(context, attrs, defStyleAttr) {
2727

2828
companion object {
29-
private const val BOOTPAY = "https://inapp.bootpay.co.kr/2.0.2/production.html"
29+
private const val BOOTPAY = "https://inapp.bootpay.co.kr/2.0.3/production.html"
3030

3131
private const val ERROR = -2
3232

0 commit comments

Comments
 (0)