Skip to content

Commit

Permalink
Cc 8198/add store cvn method (#98)
Browse files Browse the repository at this point in the history
* update API version to level 30

* update readme
  • Loading branch information
stephenthajeb authored Mar 17, 2023
1 parent 32b56a3 commit d8bde7d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
- Feat: Added storeCVN method for caching cvn on subsequent multi-use token purpose
- Feat: Added storeCVN test page
- Bug: Bug fix for validation on createAuthentication method
- Chore: Bump up API version from 28 to 30.

## NOTE: 3.4.2 - 3.7.0 is being skipped due to inconsistency github release tag version with sdk version. Starting on 3.8.0 these 2 version are sync.
## NOTE: Github tag from 3.4.2 - 3.7.0 is being skipped due to inconsistency github release tag version with sdk version. Starting on 3.8.0 github release tag and xendit-android-sdk package version are in sync.

## 3.4.2 (2021-09-15)
- Updated Cardinal Commerce Library credentials
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,24 @@ Maven:
<dependency>
<groupId>com.xendit</groupId>
<artifactId>xendit-android</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<type>pom</type>
</dependency>
```

Gradle:
```
compile 'com.xendit:xendit-android:3.7.0'
compile 'com.xendit:xendit-android:3.8.0'
```

Ivy:
```
<dependency org='com.xendit' name='xendit-android' rev='3.7.0'>
<dependency org='com.xendit' name='xendit-android' rev='3.8.0'>
<artifact name='xendit-android' ext='pom' ></artifact>
</dependency>
```

For more information, visit https://central.sonatype.dev/artifact/com.xendit/xendit-android/3.7.0/versions
For more information, visit https://central.sonatype.dev/artifact/com.xendit/xendit-android/3.8.0/versions

**Note**:

Expand Down
6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 30
defaultConfig {
applicationId "com.xendit.example"
targetSdkVersion 28
targetSdkVersion 30


versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down
4 changes: 2 additions & 2 deletions xendit-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ ext {
}

android {
compileSdkVersion 28
compileSdkVersion 30
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
targetSdkVersion 30
versionCode 1
versionName
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down

0 comments on commit d8bde7d

Please sign in to comment.