Skip to content

Commit 760fad4

Browse files
author
Michael Cretzman
authored
Update README.md
1 parent 9c29f98 commit 760fad4

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

android/jms/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Kaazing Android WebSocket JMS Tutorial
22

3-
This tutorial shows how Android application can communicate over the web with an JMS server via Kaazing WebSocket Gateway using Kaazing Java WebSocket Client library. The application publishes text messages via Kaazing Gateway to a JMS server and listens to the messages from the JMS server over WebSocket.
3+
This Android app communicates with an JMS server via Kaazing WebSocket Gateway. The app publishes text messages to a JMS server and listens for messages from the JMS server over WebSocket.
44

55
## Minimum Requirements for Running or Building Kaazing Android JMS WebSocket tutorial
66

@@ -9,7 +9,7 @@ This tutorial shows how Android application can communicate over the web with an
99
* Android Studio 2.10 or higher
1010
* Android SDK 4.4 or higher
1111

12-
## Steps for building and running the project
12+
## Steps for Building and Running the Project
1313

1414
- Build the application using Android Studio
1515
- Open the project in Android Studio by navigating to the project directory
@@ -18,6 +18,19 @@ This tutorial shows how Android application can communicate over the web with an
1818
- Create Android Virtual Device (AVD) for API level 19 (KitKat) or higher. For more information refer to [Create and Manage Virtual Devices](https://developer.android.com/studio/run/managing-avds.html)
1919
- Run the application from Android Studio by selecting Run/Run Project. Refer to [Running Your App](https://developer.android.com/training/basics/firstapp/running-app.html) for more information.
2020

21+
After installing Android Studio, update the following files with the Android SDK path or version (if necessary):
22+
- local.properties
23+
- project.properties
24+
- AndroidManifest.xml
25+
- app/build.gradle
26+
27+
In you experience the error `Could not find or load main class org.gradle.wrapper.GradleWrapperMain`, add a wrapper in the build.gradle file:
28+
29+
```
30+
task wrapper(type: Wrapper) {
31+
gradleVersion = <gradle-version-installed>
32+
}
33+
```
2134

2235
## Interact with Kaazing Android JMS Client API
2336

0 commit comments

Comments
 (0)