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

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

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)