我正在嘗試將floating search view
library添加到我的Android應用程序中。添加依賴關係之後我:在Android Studio中找不到com.android.support:appcompat-v7:25.3.1?
Error:Could not find com.android.support:appcompat-v7:25.3.1.
Required by:
project :app
Please install the Android Support Repository from the Android SDK Manager.
所以,我加入以下依存關係到我的模塊Gradle
文件:
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:percent:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:support-v13:25.3.1'
後同步Gradle
文件,我得到了同樣的錯誤。然後我清理該項目,甚至 Invalidate cache
來項目,但同樣的迴應。
我的Android Studio
已更新,並且安裝了API級別25。
我在做什麼錯在這裏?
搖籃文件
(建議後編輯搖籃文件)
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "com.app.seeker"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
multiDexEnabled true
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
任何幫助將是明顯的
'請從Android SDK Manager.'安裝Android支持庫或者也許你需要更新它。 – Yupi
@Yupi它已經安裝和升級(在問題中提到):) –
你可以在Android Studio中勾選'show package details'來截取sdk manager的SDK Tools標籤嗎? – jdonmoyer