hostname verifier fixx 2023 for braintree paypal
This commit is contained in:
5
.idea/jarRepositories.xml
generated
5
.idea/jarRepositories.xml
generated
@@ -46,5 +46,10 @@
|
||||
<option name="name" value="maven" />
|
||||
<option name="url" value="https://www.jitpack.io" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="maven3" />
|
||||
<option name="name" value="maven3" />
|
||||
<option name="url" value="https://cardinalcommerceprod.jfrog.io/artifactory/android" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
||||
@@ -18,7 +18,7 @@ android {
|
||||
compileSdkVersion 33
|
||||
defaultConfig {
|
||||
applicationId "ch.pizzalemon.android"
|
||||
minSdkVersion 16
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 33
|
||||
versionCode 27// play store'daki version --> canlı: 0 - dahili test: 17
|
||||
versionName "2.07" // play store'daki version --> canlı: 0.00 - dahili test: 1.17
|
||||
@@ -77,12 +77,10 @@ dependencies {
|
||||
implementation 'io.github.inflationx:viewpump:2.0.3'
|
||||
implementation 'com.wdullaer:materialdatetimepicker:4.2.3'
|
||||
implementation 'q.rorbin:badgeview:1.1.3'
|
||||
implementation 'com.braintreepayments.api:braintree:2.22.0'
|
||||
implementation 'org.jsoup:jsoup:1.14.2'
|
||||
implementation 'me.relex:circleindicator:2.1.6'
|
||||
implementation('com.braintreepayments.api:drop-in:3.7.1') {
|
||||
exclude group: 'com.braintreepayments.api', module: 'braintree'
|
||||
}
|
||||
implementation 'com.braintreepayments.api:braintree:3.20.1'
|
||||
implementation 'com.braintreepayments.api:drop-in:5.4.1'
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
}
|
||||
|
||||
@@ -218,7 +218,7 @@ public class CreateOrderActivity extends BaseActivity {
|
||||
case PAYPAL:
|
||||
paymentMethodCode = ApiConstants.PAYMENT_METHOD_CODE_PAYPAL;
|
||||
break;
|
||||
case ANDROID_PAY:
|
||||
case GOOGLE_PAYMENT:
|
||||
paymentMethodCode = ApiConstants.PAYMENT_METHOD_CODE_ANDROID_PAY;
|
||||
break;
|
||||
default:
|
||||
|
||||
@@ -933,8 +933,9 @@ public class CreateOrderSummaryFragment extends CreateOrderBaseFragment {
|
||||
.clientToken(braintreePaymentTokenModel.getToken())
|
||||
.requestThreeDSecureVerification(true)
|
||||
.amount(amountStringForBraintree)
|
||||
.disableAndroidPay()
|
||||
.disableGooglePayment()
|
||||
//.paypalRequest(paypalRequest)
|
||||
.disablePayPal()
|
||||
.disableVenmo();
|
||||
|
||||
|
||||
|
||||
@@ -24,6 +24,13 @@ allprojects {
|
||||
//maven { url 'https://jitpack.io' } https://stackoverflow.com/questions/50791632/could-not-find-any-version-that-matches-com-google-android-gmsplay-services-bas
|
||||
maven { url "https://www.jitpack.io" }
|
||||
maven { url "https://maven.google.com" }
|
||||
maven {
|
||||
url "https://cardinalcommerceprod.jfrog.io/artifactory/android"
|
||||
credentials {
|
||||
username 'braintree_team_sdk'
|
||||
password 'AKCp8jQcoDy2hxSWhDAUQKXLDPDx6NYRkqrgFLRc3qDrayg6rrCbJpsKKyMwaykVL8FWusJpp'
|
||||
}
|
||||
}
|
||||
flatDir {
|
||||
dirs 'libs'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user