diff --git a/docs/android-app/android-app-quickstart.md b/docs/android-app/android-app-quickstart.md index b2481b093..d35aaae3a 100644 --- a/docs/android-app/android-app-quickstart.md +++ b/docs/android-app/android-app-quickstart.md @@ -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' diff --git a/docs/java-app/java-app-quickstart.md b/docs/java-app/java-app-quickstart.md index 16384aedf..cb6878461 100644 --- a/docs/java-app/java-app-quickstart.md +++ b/docs/java-app/java-app-quickstart.md @@ -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:** diff --git a/examples/README.md b/examples/README.md index a2f3e4117..7c768aea6 100644 --- a/examples/README.md +++ b/examples/README.md @@ -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.