https://github.com/circlefin/w3s-android-sdk
https://github.com/circlefin/w3s-android-sdk
web3
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/circlefin/w3s-android-sdk
- Owner: circlefin
- License: apache-2.0
- Created: 2023-07-06T16:29:42.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T17:22:10.000Z (over 2 years ago)
- Last Synced: 2025-01-26T12:44:13.626Z (over 1 year ago)
- Topics: web3
- Homepage:
- Size: 10.7 KB
- Stars: 11
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# w3s-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('pwsdk.maven.url')
credentials {
username properties.getProperty('pwsdk.maven.username')
password properties.getProperty('pwsdk.maven.password')
}
}
}
```
Add the maven setting values in `local.properties` file:
```properties
pwsdk.maven.url=https://maven.pkg.github.com/circlefin/w3s-android-sdk
pwsdk.maven.username=
# Fine-grained personal access tokens or classic with package write permission.
pwsdk.maven.password=
```
Add the dependency:
```gradle
dependencies {
implementation 'circle.programmablewallet:sdk:version'
}
```