Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions android/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Building the demo app

Create a new file `local.properties`:

```
EVERVAULT_APP_ID=<YOUR_EVERVAULT_APP_ID>
EVERVAULT_MERCHANT_ID=<YOUR_EVERVAULT_MERCHANT_ID>
Expand All @@ -9,3 +10,8 @@ EVERVAULT_MERCHANT_ID=<YOUR_EVERVAULT_MERCHANT_ID>
```bash
./gradlew build
```

## Releasing a new version

1. Bump the version in the `googlepay/build.gradle.kts` file
2. Create a new release in the GitHub repository with the tag `android-v<VERSION>`
2 changes: 1 addition & 1 deletion android/googlepay/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.evervault.payments" // Maven group ID
version = "android-v0.0.27" // Bump per release
version = "android-v0.0.30" // Bump per release

android {
namespace = "com.evervault.payments"
Expand Down
Loading