From 9116a3a79c1c62b2a214c04e20d5625e35201d72 Mon Sep 17 00:00:00 2001 From: Jarrad Hope Date: Thu, 28 May 2015 20:17:24 +0200 Subject: [PATCH] minor readme and config lint error ignore changes --- README.md | 15 +++++++++------ ethereumj-core/build.gradle | 5 +++++ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2e23c154..41b9736a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -# Welcome to ethereumj for android +# Welcome to EthereumJ for Android # 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. -This is an android version of ethereumj (https://github.com/ethereum/ethereumj). +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-optimized fork of [EthereumJ](https://github.com/ethereum/ethereumj). This repository consists of: * [ethereum-core](ethereumj-core): a android compatible library of ethereumj-core . @@ -13,8 +14,10 @@ This is a work in progress. # Building from source - - Clone this repository and run `./gradlew build` (or at least `./gradlew antlr4` to generate sources). - - Import gradle.build from the root folder into Android Studio. + - Clone this repository and run + `./gradlew antlr4; ./gradlew build -x test` + - Install onto Android Device + `adb install -r app/build/outputs/apk/app-debug.apk` # License -ethereumj is released under the [MIT license](LICENSE). +EthereumJ is released under the [MIT license](LICENSE). diff --git a/ethereumj-core/build.gradle b/ethereumj-core/build.gradle index 1b0926b0..b4baf172 100644 --- a/ethereumj-core/build.gradle +++ b/ethereumj-core/build.gradle @@ -35,6 +35,11 @@ android { compileSdkVersion 21 buildToolsVersion "21.1.2" + // TODO remove this later + lintOptions { + abortOnError false + } + defaultConfig { minSdkVersion 14 targetSdkVersion 21