34

我嘗試使用版本25.2.0的支持庫 ,因此我可以使用CameraKit庫。無法在Android Studio中安裝存儲庫和同步項目

我已經拿到了最新的編譯工具下載:

enter image description here

和支持庫: enter image description here

我gradle這個文件:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion '25.0.2' 
    defaultConfig { 
     applicationId "com.sample.myapp" 
     minSdkVersion 21 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.1" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 
repositories { 
    maven { 
     url "https://jitpack.io" 
    } 
    mavenCentral() 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    testCompile 'junit:junit:4.12' 

    // Google libraries 
    compile 'com.android.support:appcompat-v7:25.2.0' 
    compile 'com.android.support:design:25.2.0' 
    compile 'com.android.support:support-v4:25.2.0' 
    compile 'com.google.android.gms:play-services-vision:10.0.1' 
    compile 'com.android.volley:volley:1.0.0' 

    // Third party libraries 
    compile 'com.flurgle:camerakit:0.9.17' 

    compile 'com.android.support:recyclerview-v7:25.2.0' 
    compile 'com.android.support:cardview-v7:25.2.0' 
} 

問題: 對於每一個支持-library我得到的問題:

Failed to resolve com.android.support:cardview-v7:25.2.0 

如果我嘗試點擊安裝知識庫和同步項目沒有任何反應。

enter image description here

我已遵循gradle file,例如,可能是我的錯誤?

+1

更新支持庫也 –

+0

當你點擊 「安裝庫和同步工程」,會發生什麼? – CommonsWare

+1

@CommonsWare沒什麼。當鼠標指針位於鏈接上時,它會更改爲指示存在可點擊的鏈接。點擊後沒有任何反應。我試過** File - > Infalidate caches/Restart **。不幸的是,這沒有幫助 – jublikon

回答

22

使用嘗試最新的支持庫版本:

compile 'com.android.support:appcompat-v7:25.3.1' 
compile 'com.android.support:support-v4:25.3.1' 
compile 'com.android.support:design:25.3.1' 
compile 'com.google.android.gms:play-services-vision:10.2.1' 
compile 'com.android.volley:volley:1.0.0' 
// Third party libraries 
compile 'com.flurgle:camerakit:0.9.17' 

compile 'com.android.support:recyclerview-v7:25.3.1' 
compile 'com.android.support:cardview-v7:25.3.1' 

這裏是詳細Dependencies

編輯

使用Google Maven Repository

要將它們添加到您的構建,需要首先在您的頂級build.gradle文件中包含Google的Maven存儲庫:

項目 - 的build.gradle(不應用程序build.gradle

allprojects { 
    repositories { 
     jcenter() 
     // If you're using a version of Gradle lower than 4.1, you must instead use: 
     maven { 
      url 'https://maven.google.com' 
     } 
     // An alternative URL is 'https://dl.google.com/dl/android/maven2/' 
    } 
} 
+0

我已經應用了你提出的改變並得到了問題:未能解決:com。 android.support:design:25.3.1 – jublikon

+0

依賴是來自官方文檔...乾淨的構建,並確保你連接到互聯網 – rafsanahmad007

+0

@ jublikon由於它沒有列在你的Android工作室,你需要拉最新的。你有一段時間沒有更新。 –

57

此前Android的支持庫的依賴關係,從Android SDK中管理器下載。

現在,所有新版本都可以從Google的Maven存儲庫中獲得。 未來所有android庫將通過maven.google.com

分發所以,通過將以下代碼添加到存儲庫將生成項目。

repositories { 
    maven { 
     url "https://maven.google.com" 
    } 
} 
38

我不得不將以下內容添加到我的項目級別build.gradle。然後按鈕來安裝和工作。

allprojects { 
    repositories { 
     jcenter() 
     maven { 
      url "https://maven.google.com" 
     } 
    } 
} 
+0

我不明白爲什麼他們不會在新項目中包含此項功能。 – Pztar

+7

,因爲谷歌Android團隊越來越愚蠢的屁股,總是有這樣的更新浪費開發人員時間來解決這個愚蠢的錯誤。 – winsontan520

4

讓蘇爾把它放在所有項目下!我的錯誤是把它放在buildscript下。

DONT DO THAT

buildscript { 
    repositories { 
     jcenter() 
     maven { 
      url 'https://maven.google.com' //dont put it here 
     } 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.3' 
    } 
} 

地做到了

allprojects { 
    repositories { 
     jcenter() 
     maven { 
      url 'https://maven.google.com' //put it here 
     } 
    } 
} 
相關問題