An open API service indexing awesome lists of open source software.

https://github.com/circlefin/modularwallets-android-sdk


https://github.com/circlefin/modularwallets-android-sdk

java sdk

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# modularwallets-android-sdk

## Installation
Add the maven repository to your gradle file. It's suggested that load settings from `local.properties`:
```gradle
repositories {
...
maven {
Properties properties = new Properties()
// Load local.properties.
properties.load(new File(rootDir.absolutePath + "/local.properties").newDataInputStream())

url properties.getProperty('mwsdk.maven.url')
credentials {
username properties.getProperty('mwsdk.maven.username')
password properties.getProperty('mwsdk.maven.password')
}
}
}
```
Add the maven setting values in `local.properties` file:
```properties
mwsdk.maven.url=https://maven.pkg.github.com/circlefin/modularwallets-android-sdk
mwsdk.maven.username=
# Fine-grained personal access tokens or classic with package write permission.
mwsdk.maven.password=

```

Add the dependency:

```gradle
dependencies {
implementation 'circle.modularwallets:core:version'
}
```