我嘗試使用版本25.2.0的支持庫 ,因此我可以使用CameraKit庫。無法在Android Studio中安裝存儲庫和同步項目
我已經拿到了最新的編譯工具下載:
我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
如果我嘗試點擊安裝知識庫和同步項目沒有任何反應。
我已遵循gradle file,例如,可能是我的錯誤?
更新支持庫也 –
當你點擊 「安裝庫和同步工程」,會發生什麼? – CommonsWare
@CommonsWare沒什麼。當鼠標指針位於鏈接上時,它會更改爲指示存在可點擊的鏈接。點擊後沒有任何反應。我試過** File - > Infalidate caches/Restart **。不幸的是,這沒有幫助 – jublikon