https://github.com/circlefin/modularwallets-android-sdk
https://github.com/circlefin/modularwallets-android-sdk
java sdk
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/circlefin/modularwallets-android-sdk
- Owner: circlefin
- License: apache-2.0
- Created: 2024-11-18T11:58:05.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-24T13:59:55.000Z (12 months ago)
- Last Synced: 2025-07-24T18:13:22.841Z (12 months ago)
- Topics: java, sdk
- Language: Kotlin
- Homepage:
- Size: 198 KB
- Stars: 4
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
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'
}
```