Ethereum-Android-Intro icon indicating copy to clipboard operation
Ethereum-Android-Intro copied to clipboard

A quick intro demonstrating working with Ethereum on Android using Infura and Web3j.

Results 2 Ethereum-Android-Intro issues
Sort by recently updated
recently updated
newest added

``` System.out.println("7"); // toastAsync("Connecting to Ethereum network..."); // FIXME: Add your own API key here web3 = Web3j.build(new HttpService("https://kovan.infura.io/v3/75ef71603d6041bd9a259a4748404bd5")); System.out.println("8"); try { Web3ClientVersion clientVersion = web3.web3ClientVersion().sendAsync().get(); // Web3ClientVersion clientVersion =...