Changed Readme
This commit is contained in:
parent
0338d45a4f
commit
97bcf7a92f
31
README.md
31
README.md
|
@ -1,39 +1,20 @@
|
||||||
# Welcome to ethereumj
|
# Welcome to ethereumj for android
|
||||||
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/ethereum/ethereumj?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
||||||
[![Build Status](https://travis-ci.org/ethereum/ethereumj.svg?branch=master)](https://travis-ci.org/ethereum/ethereumj)
|
|
||||||
[![Coverage Status](https://coveralls.io/repos/ethereum/ethereumj/badge.png?branch=master)](https://coveralls.io/r/ethereum/ethereumj?branch=master)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
###### :small_blue_diamond: .
|
|
||||||
###### :small_blue_diamond: . Talk to us: http://forum.ethergit.com/categories/all
|
|
||||||
###### :small_blue_diamond: .
|
|
||||||
|
|
||||||
|
|
||||||
# About
|
# About
|
||||||
ethereumj is a pure-Java implementation of the Ethereum protocol. For high-level information about Ethereum and its goals, visit [ethereum.org](https://ethereum.org). The [ethereum white paper](https://github.com/ethereum/wiki/wiki/%5BEnglish%5D-White-Paper) provides a complete conceptual overview, and the [yellow paper](http://gavwood.com/Paper.pdf) provides a formal definition of the protocol.
|
ethereumj is a pure-Java implementation of the Ethereum protocol. For high-level information about Ethereum and its goals, visit [ethereum.org](https://ethereum.org). The [ethereum white paper](https://github.com/ethereum/wiki/wiki/%5BEnglish%5D-White-Paper) provides a complete conceptual overview, and the [yellow paper](http://gavwood.com/Paper.pdf) provides a formal definition of the protocol.
|
||||||
|
This is an android version of ethereumj (https://github.com/ethereum/ethereumj).
|
||||||
|
|
||||||
This repository consists of:
|
This repository consists of:
|
||||||
* [ethereum-core](ethereumj-core): a library suitable for inclusion in any JVM-based project.
|
* [ethereum-core](ethereumj-core): a android compatible library of ethereumj-core .
|
||||||
* [ethereum-studio](ethereumj-studio): a simple GUI for exploring Ethereum functionality and usage of the ethereumj API.
|
* [app]: a simple mockup GUI for exploring Ethereum functionality and usage.
|
||||||
|
|
||||||
To see ethereum-studio in action, watch this [video](https://youtu.be/D5ok7jh7AOg).
|
|
||||||
|
|
||||||
# Todo
|
# Todo
|
||||||
The Ethereum protocol is under heavy development, thus so is this implementation. See the [todo list](TODO.md), GitHub [Issues](https://github.com/ethereum/ethereumj/issues) and [milestone schedule](https://github.com/ethereum/ethereumj/milestones). Issues are prioritized using [waffle](http://waffle.io/ethereum/ethereumj).
|
This is a work in progress.
|
||||||
|
|
||||||
# Contact
|
|
||||||
Chat with us via [Gitter](https://gitter.im/ethereum/ethereumj) or [#ethereumj](https://webchat.freenode.net/?channels=ethereumj) on Freenode.
|
|
||||||
|
|
||||||
# Building from source
|
# Building from source
|
||||||
|
|
||||||
- Clone this repository and run `./gradlew build` (or at least `./gradlew antlr4` to generate sources).
|
- Clone this repository and run `./gradlew build` (or at least `./gradlew antlr4` to generate sources).
|
||||||
- Import all sources into IntelliJ IDEA (14+) with `File->Import project` and point to the top-level `build.gradle` file.
|
- Import gradle.build from the root folder into Android Studio.
|
||||||
- Make sure to set your language level in `File->Project Structure...` to JDK 8.
|
|
||||||
- Run `Build->Make Project`. When complete, there should be no errors.
|
|
||||||
|
|
||||||
# Usage
|
|
||||||
For complete details on downloading, building and using [etherumj-core](ethereumj-core) and [ethereumj-studio](ethereumj-studio), see their respective readme files.
|
|
||||||
|
|
||||||
# License
|
# License
|
||||||
ethereumj is released under the [MIT license](LICENSE).
|
ethereumj is released under the [MIT license](LICENSE).
|
||||||
|
|
|
@ -103,17 +103,12 @@ dependencies {
|
||||||
|
|
||||||
compile('com.cedarsoftware:java-util:1.8.0') {
|
compile('com.cedarsoftware:java-util:1.8.0') {
|
||||||
exclude group: 'commons-logging', module: 'commons-logging'
|
exclude group: 'commons-logging', module: 'commons-logging'
|
||||||
}
|
} // for deep equals
|
||||||
// for deep equals
|
|
||||||
|
|
||||||
//compile 'org.antlr:antlr4-runtime:4.5'
|
//compile 'org.antlr:antlr4-runtime:4.5' // for serpent compilation
|
||||||
|
|
||||||
|
|
||||||
// for serpent compilation
|
|
||||||
|
|
||||||
compile 'com.yuvalshavit:antlr-denter:1.1'
|
compile 'com.yuvalshavit:antlr-denter:1.1'
|
||||||
|
|
||||||
|
|
||||||
compile 'org.slf4j:slf4j-android:1.7.12'
|
compile 'org.slf4j:slf4j-android:1.7.12'
|
||||||
|
|
||||||
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
|
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
|
||||||
|
|
|
@ -44,8 +44,6 @@ public class ChannelManager {
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//@PostConstruct
|
|
||||||
public void init() {
|
public void init() {
|
||||||
scheduleChannelCollector();
|
scheduleChannelCollector();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue