Guides
/
Building Search UI
May. 23, 2022
How to Install InstantSearch Android
On this page
Installing InstantSearch Android# A
You can add InstantSearch to your Android application by adding the following line to your build.gradle
’s dependencies:
Copy
1
2
3
4
dependencies {
// [...]
implementation 'com.algolia:instantsearch-android:3.+'
}
Compose#
You can add Compose UI support by adding the following line to your build.gradle
’s dependencies:
Copy
1
2
3
4
dependencies {
// [...]
implementation 'com.algolia:instantsearch-compose:3.+'
}
Paging 3#
You can add Paging 3 support by adding the following line to your build.gradle
’s dependencies:
Copy
1
2
3
4
dependencies {
// [...]
implementation 'com.algolia:instantsearch-android-paging3:3.+'
}
Insights#
You can add InstantSearch Insights by adding the following line to your build.gradle
’s dependencies:
Copy
1
2
3
4
dependencies {
// [...]
implementation "com.algolia:instantsearch-insights-android:3.+"
}
Did you find this page helpful?