为什么Algolia客户端没有在android studio中解决?

问题描述 投票:0回答:1

我不知道为什么android studio无法从import语句中解析Client和Query:

import com.algolia.search.saas.Client;
import com.algolia.search.saas.Query;

它显示无法解析两个import语句上的Client和Query。

这存在于我的应用Gradle文件中:

implementation 'com.algolia:instantsearch-android:1.15.0'

我尝试使缓存无效并重启多次,甚至尝试在上面的Gradle文件中更改Algolia依赖的版本,但没有任何效果。

我无法理解为什么会发生这种情况,如果有人能帮助我,我将不胜感激。

android algolia saas instantsearch
1个回答
1
投票

试试这个:https://www.algolia.com/doc/guides/building-search-ui/installation/android/

dependencies {
    // [...]
    implementation 'com.algolia:instantsearch-android:1.+'
    // This will automatically update to the latest v1 release of InstantSearch

    // OR
    implementation 'com.algolia:algoliasearch-android:3.+'
    // This will automatically update to the latest v3 release of the client
}

0
投票

尝试包括这个

实现'com.algolia:instantsearch-androidx-core:1.15.2'


0
投票

我正在使用androidx库,所以你的里程可能会有所不同,但是添加

    implementation 'com.algolia:algoliasearch-android:3.27.0'

为我解决了这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.