-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1322cb0
commit 8c9a738
Showing
133 changed files
with
2,849 additions
and
2,098 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
#### Android Components (V3) | ||
Version 3.x.x is a completely new way of integrating payments using the Checkout API (payments/) with our UI Components or Drop-in. | ||
It is not compatible with the integrations of version 2.x.x, which used the SDK specific API (paymentSession/). | ||
Version 2.x.x will only receive maintenance for bug fixes, not any new features. | ||
Check the Readme page and documentation website for more information. | ||
|
||
- Create default Configuration Builders. | ||
- Add UiCustomization class to 3DS2 component. | ||
- Bug fixes. | ||
<ul> | ||
<li>Add "One Click Payment" option for card payment.</li> | ||
<li>Update UI/UX for Drop-In and components.</li> | ||
<li>Changed PaymentComponent observer output to contain PaymentComponentData. PaymentMethodDetails is now inside of PaymentComponentData.</li> | ||
<li>Bug fixes.</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ Copyright (c) 2019 Adyen N.V. | ||
~ | ||
~ This file is open source and available under the MIT license. See the LICENSE file for more info. | ||
~ | ||
~ Created by arman on 10/7/2019. | ||
--> | ||
|
||
<resources> | ||
<color name="stroke_color">#C9C9C9</color> | ||
<color name="white">#FFFFFF</color> | ||
<color name="black">#000000</color> | ||
<color name="primaryColor">#1A73E8</color> | ||
<color name="textColor">#DE000000</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
base-v3/src/main/java/com/adyen/checkout/base/ComponentAvailableCallback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright (c) 2019 Adyen N.V. | ||
* | ||
* This file is open source and available under the MIT license. See the LICENSE file for more info. | ||
* | ||
* Created by caiof on 23/7/2019. | ||
*/ | ||
|
||
package com.adyen.checkout.base; | ||
|
||
import android.support.annotation.NonNull; | ||
|
||
import com.adyen.checkout.base.model.paymentmethods.PaymentMethod; | ||
|
||
public interface ComponentAvailableCallback<ConfigurationT extends Configuration> { | ||
|
||
void onAvailabilityResult(boolean isAvailable, @NonNull PaymentMethod paymentMethod, @NonNull ConfigurationT config); | ||
} |
16 changes: 16 additions & 0 deletions
16
base-v3/src/main/java/com/adyen/checkout/base/ComponentProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright (c) 2019 Adyen N.V. | ||
* | ||
* This file is open source and available under the MIT license. See the LICENSE file for more info. | ||
* | ||
* Created by caiof on 23/7/2019. | ||
*/ | ||
|
||
package com.adyen.checkout.base; | ||
|
||
/** | ||
* This provider should be used to get an instance of a {@link Component} that is bound your lifecycle. | ||
*/ | ||
public interface ComponentProvider<ComponentT extends Component> { | ||
// Maker interface | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.