API Reference
/
API Methods
/
Update the client
Feb. 26, 2021
Update the client
It’s recommended to use the Kotlin API client, which is better suited for Android development.
You should keep your API client up to date, as the SLA applies only if your API client is up to date.
Semantic versioning
All the Algolia API clients follow Semantic Versioning.
Latest version
You can check what the latest version of the API client is on the GitHub release page.
Update the API client
With sbt
Change the version of the algoliasearch
dependency:
Copy
1
libraryDependencies += "com.algolia" %% "algoliasearch-scala" % "[1,)"
Then run:
Copy
$
sbt update
With Maven
Change the version of the algoliasearch
dependency on the line:
Copy
1
2
3
4
5
<dependency>
<groupId>com.algolia</groupId>
<artifactId>algoliasearch-scala_2.11</artifactId>
<version>[1,)</version>
</dependency>
Then run:
Copy
$
mvn compile