Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

fixed wrong properties name on readme #5

Merged
merged 2 commits into from
May 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To get the example application up and running:

1. Clone this repo: `git clone https://github.com/EOSIO/eosio-java-android-example-app.git`
1. Open the project with Android Studio.
1. Create `gradle.properties` file:
1. Modify `eosio.properties` file:

```java
node_url=[your node endpoint URL] //mandatory
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'one.block:eosiojava:0.0.1'
implementation 'one.block:eosiojavasoftkeysignatureprovider:0.0.1'
implementation 'one.block:eosiojavaandroidabieosserializationprovider:0.0.1'
implementation 'one.block:eosiojavarpcprovider:0.0.1'
implementation 'one.block:eosiojava:0.1.0'
implementation 'one.block:eosiojavasoftkeysignatureprovider:0.1.0'
implementation 'one.block:eosiojavaandroidabieosserializationprovider:0.1.0'
implementation 'one.block:eosiojavarpcprovider:0.1.0'

implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
Expand Down