Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent committed Mar 1, 2021
1 parent d503bdd commit d55b179
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

For more information, see the [README](https://github.com/sumup/Android-MerchantSDK/blob/master/README.md)

## Version 3.3.1
* [ADDED] Support for Brazilian Pin+ Cless Card Reader
* [ADDED] On top of establishing the Bluetooth connection via the “Connect” button, it is now also possible to do it by tapping on the card reader image
* [IMPROVEMENT] Refreshed SumUp Brand Design Language for color and typography
* [FIXED] “Forgot password” button was broken in the previous release and is now clickable
* [FIXED] A crash that can occur when updating the firmware of the Card Reader
* [IMPROVEMENT] Update technical stack:
* Raises targetSdkVersion to API 29 - it is still possible to target API 28
* Updates the Android Gradle Plugin to version 4.4.1
* Introduces Kotlin - Version 1.3.10 and above is needed
* [IMPROVEMENT] Miscellaneous bug fixes and enhancements

## Version 3.3.0
* [CHANGED] The SumUp SDK is migrated to AndroidX. Please make sure to [migrate your project to AndroidX](https://developer.android.com/jetpack/androidx/migrate) before including SumUp SDK 3.3.0 and future SDK versions.
* [CHANGED] Package requires minor edit.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ For more information about SumUp developer products, please refer to our <a href
3. Requested an Affiliate (Access) Key via [SumUp Dashboard](https://me.sumup.com/developers) for Developers.
4. `minSdkVersion` 16 or later
5. Project [migrated to AndroidX](https://developer.android.com/jetpack/androidx/migrate)
6. Android Gradle plugin 3.3.0 or later
7. Kotlin 1.3.10 or later

## I. Integrate the SumUp SDK

Expand All @@ -38,7 +40,7 @@ allprojects {
Add the dependency to a module:

```groovy
compile 'com.sumup:merchant-sdk:3.3.0'
implementation 'com.sumup:merchant-sdk:3.3.1'
```


Expand Down
11 changes: 5 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
compileSdkVersion 30

defaultConfig {
applicationId "com.sumup.sdksampleapp"
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 30
versionCode 1
versionName "3.3.0"
versionName "3.3.1"
}

packagingOptions {
Expand All @@ -28,7 +27,7 @@ android {
}

dependencies {
implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.google.android.gms:play-services-location:18.0.0'

implementation 'com.sumup:merchant-sdk:3.3.0'
implementation 'com.sumup:merchant-sdk:3.3.1'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
classpath 'com.android.tools.build:gradle:4.0.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

0 comments on commit d55b179

Please sign in to comment.