Skip to content

Commit

Permalink
Small improvements; fix examples docs (#1595)
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Lebedev <[email protected]>
  • Loading branch information
thenswan committed Oct 16, 2023
1 parent 697dacb commit 787052d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/android-app/android-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

> Please note that the minimal Android SDK level required for using the Hedera SDK in an Android project is **26**.
To get started with an Android project, you'll need to add the following two dependencies:
To get started with an Android project, you'll need to add the following **two** dependencies:

1. Hedera Java SDK:
1. **Hedera Java SDK:**
```groovy
implementation 'com.hedera.hashgraph:sdk:2.29.0'
```

2. gRPC implementation:
2. **gRPC implementation:**
```groovy
// okhttp transport (for lighter-weight applications or Android)
implementation 'io.grpc:grpc-okhttp:1.58.0'
Expand Down
2 changes: 1 addition & 1 deletion docs/java-app/java-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Please note that JDK 17 is required. The Temurin builds of [Eclipse Adoptium](https://adoptium.net/) are strongly recommended.
To get started with a Java project, you'll need to add the following three dependencies:
To get started with a Java project, you'll need to add the following **three** dependencies:

**1. Hedera Java SDK:**

Expand Down
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
## Usage

### Configuration
Running the examples requires `.env` file to exist under [`examples folder`](../examples):
Running the examples requires `.env` file to exist under [`root project folder`](../examples):

```sh
$ cp .env.example .env
$ cp .env.sample ../.env
```

The `OPERATOR_ID` and `OPERATOR_KEY` variables should be set in a `.env` file.
Expand Down

0 comments on commit 787052d

Please sign in to comment.