Skip to content

Commit db19ae5

Browse files
committed
kakao method update
1 parent 52688a1 commit db19ae5

File tree

14 files changed

+11
-25
lines changed

14 files changed

+11
-25
lines changed

bootpay/.DS_Store

-2 KB
Binary file not shown.

bootpay/build.gradle

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,6 @@ dependencies {
3333
// implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
3434
// 추가로 unity 폴더를 풀어서 해당 자리에 소스가 생기도록 해야함
3535

36-
//// implementation files('libs/gson-2.8.5.jar')
37-
//// implementation files('libs/okio-2.2.2.jar')
38-
//// implementation files('libs/retrofit-2.5.0.jar')
39-
//// implementation files('libs/converter-gson-2.5.0.jar')
40-
//// implementation files('libs/converter-moshi-2.5.0.jar')
41-
//// implementation files('libs/adapter-rxjava-2.5.0.jar')
42-
//// implementation files('libs/okhttp-3.14.2.jar')
43-
//// implementation files('libs/PersistentCookieJar-v1.0.1.aar')
44-
//// implementation files('libs/play-services-ads-identifier-16.0.0.aar')
45-
//// implementation files('libs/play-services-basement-16.2.0.aar')
46-
//// implementation files('libs/rxjava-1.0.2.jar')
4736

4837

4938
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
@@ -63,15 +52,6 @@ dependencies {
6352

6453
implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
6554

66-
// implementation 'com.squareup.okhttp3:logging-interceptor:4.0.0'
67-
68-
// implementation 'com.google.code.gson:gson:2.8.5'
69-
// implementation 'com.squareup.retrofit2:retrofit:2.5.0'
70-
// implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
71-
// implementation 'com.squareup.retrofit2:converter-moshi:2.5.0'
72-
// implementation 'com.squareup.retrofit2:adapter-rxjava:2.5.0'
73-
// implementation 'com.squareup.okhttp3:okhttp:3.10.0'
74-
// implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
7555

7656
implementation 'com.google.android.gms:play-services-ads-identifier:16.0.0'
7757

bootpay/src/.DS_Store

0 Bytes
Binary file not shown.

bootpay/src/main/.DS_Store

2 KB
Binary file not shown.

bootpay/src/main/java/.DS_Store

0 Bytes
Binary file not shown.

bootpay/src/main/java/kr/.DS_Store

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,12 @@ public BootpayBuilder setMethod(Method method) {
297297
case EASY:
298298
request.setMethod("easy");
299299
break;
300+
case PAYCO:
301+
request.setMethod("payco");
302+
break;
303+
case KAKAO:
304+
request.setMethod("kakao");
305+
break;
300306
}
301307
return this;
302308
}

bootpay/src/main/java/kr/co/bootpay/enums/Method.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ public enum Method {
1313
EASY, // 간편결제
1414
SELECT,
1515
PAYCO, // 페이코 직접호출
16+
KAKAO, // 카카오 직접호출
1617
}

0 commit comments

Comments
 (0)