我不知道为什么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依赖的版本,但没有任何效果。
我无法理解为什么会发生这种情况,如果有人能帮助我,我将不胜感激。
试试这个: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
}
尝试包括这个
实现'com.algolia:instantsearch-androidx-core:1.15.2'
我正在使用androidx库,所以你的里程可能会有所不同,但是添加
implementation 'com.algolia:algoliasearch-android:3.27.0'
为我解决了这个问题。