Skip to content

Commit

Permalink
2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
adyen-git-manager committed Mar 27, 2019
1 parent af65ddd commit d74771e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To give you as much flexibility as possible, our Android SDK can be integrated i
Import the quick integration modules by adding these lines to your build.gradle file.

```groovy
final checkoutVersion = "2.4.0"
final checkoutVersion = "2.4.1"
implementation "com.adyen.checkout:ui:${checkoutVersion}"
implementation "com.adyen.checkout:nfc:${checkoutVersion}" // Optional; Integrates NFC card reader in card UI
implementation "com.adyen.checkout:wechatpay:${checkoutVersion}" // Optional; Integrates support for WeChat Pay
Expand Down Expand Up @@ -136,7 +136,7 @@ By default, we use the font that is declared in the theme that is used for check
#### Installation
Import the following modules by adding these line to your `build.gradle` file.
```groovy
final checkoutVersion = "2.4.0"
final checkoutVersion = "2.4.1"
implementation "com.adyen.checkout:core:${checkoutVersion}"
implementation "com.adyen.checkout:core-card:${checkoutVersion}" // Optional; Required for processing card payments.
implementation "com.adyen.checkout:nfc:${checkoutVersion}" // Optional; Enables reading of card information with the device"s NFC chip.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ext {
]

versionCode = 210
versionName = "2.4.0"
versionName = "2.4.1"

testCoverageEnabled = true
}
Expand Down
22 changes: 11 additions & 11 deletions checkout-ui/src/main/res/layout/activity_open_invoice_details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@
style="@style/Checkout.TextAppearance.Section.Title"
android:text="@string/checkout_personal_details_social_security_number"/>

<EditText
android:id="@+id/editText_ssnLookup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textView_ssnLookupTitle"
android:digits="1234567890 "
android:inputType="number"
android:maxLength="13"
android:hint="@string/checkout_personal_details_social_security_number_hint"
tools:ignore="Autofill" />

<android.support.v4.widget.ContentLoadingProgressBar
android:id="@+id/progressBar_ssnLookup"
style="@style/Widget.AppCompat.ProgressBar"
Expand All @@ -41,17 +52,6 @@
android:layout_alignEnd="@id/editText_ssnLookup"
android:visibility="gone"
tools:visibility="visible"/>

<EditText
android:id="@+id/editText_ssnLookup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/textView_ssnLookupTitle"
android:digits="1234567890 "
android:inputType="number"
android:maxLength="13"
android:hint="@string/checkout_personal_details_social_security_number_hint"
tools:ignore="Autofill" />
</RelativeLayout>

<LinearLayout
Expand Down

0 comments on commit d74771e

Please sign in to comment.