https://github.com/platonnetwork/client-sdk-android
A Android interface for interacting with the PlatON network
https://github.com/platonnetwork/client-sdk-android
Last synced: about 1 month ago
JSON representation
A Android interface for interacting with the PlatON network
- Host: GitHub
- URL: https://github.com/platonnetwork/client-sdk-android
- Owner: PlatONnetwork
- License: other
- Created: 2019-01-18T01:36:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-10T09:01:02.000Z (almost 4 years ago)
- Last Synced: 2024-04-22T00:43:34.997Z (about 1 year ago)
- Language: Java
- Size: 2.34 MB
- Stars: 8
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
> Android SDK is a Java development kit for PlatON public chain provided by PlatON for Android developers.# Build
```
git clone https://github.com/PlatONnetwork/client-sdk-android.git
cd client-sdk-android/
./gradlew clean jar //Generate jar package
```# Use
* config maven repository: https://sdk.platon.network/nexus/content/groups/public/
* config maven or gradle in project```
com.platon.client
core
0.7.6.0-android```
or
```
compile "com.platon.client:core:0.7.6.0-android"
```* use in project
```
Web3j web3j = Web3jFactory.build(new HttpService("https://host:port"));
```# Other
[more reference wiki](https://github.com/PlatONnetwork/wiki/wiki)