Skip to content

Commit f83663d

Browse files
authored
docs: Add app engine installation note. (#764)
1 parent f1d3b5e commit f83663d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,16 @@ For more usage examples, check out [the tests](src/test/java/com/google/maps).
143143

144144
### Google App Engine Support
145145

146-
You can use this client library on Google App Engine with a single code change.
146+
To use Google App Engine with this client library add the latest [App Engine dependency](https://mvnrepository.com/artifact/com.google.appengine/appengine-api-1.0-sdk)
147+
to your `build.gradle` file:
148+
149+
```groovy
150+
dependencies {
151+
implementation 'com.google.appengine:appengine-api-1.0-sdk:<latest version>'
152+
}
153+
```
154+
155+
You can then use this client library on Google App Engine with the following code change:
147156

148157
```java
149158
new GeoApiContext.Builder(new GaeRequestHandler.Builder())

0 commit comments

Comments
 (0)