我已經浪費了一整天的時間,並且沒有接近解決方案。無法解析代碼中引用的支持版本的消息
今天早上,我決定添加LeakCanary來檢查我們正在開發的android應用程序中的泄漏。我通常在脫機模式下工作,因爲它可以加速構建。將它作爲依賴項添加後,我禁用了離線模式。
一分鐘內我得到了一個錯誤說 -
- compileSdkVersion 23
- buildToolsVersion 「23.0.3」
Failed to resolve: com.android.support:appcompat-v7:25.0.0
現在目前,我們正在與合作
和我們所有的android支持庫,v4和v7,都使用23.1.1
所以我想也許LeakCanary庫內部使用25.0.0,所以我從build.gradle中刪除了庫。
但是錯誤仍然存在。
我曾嘗試 -
- 關閉和重新啓動的Android工作室。
- 關閉並重新打開AS中的項目。
- 使高速緩存失效並重新啓動AS。
- 清潔版本。
實際上,我的代碼與昨天的代碼完全相似,當它正在構建和運行正常時,但今天看起來似乎沒有。
可能是什麼問題?
編輯
這裏的build.gradle -
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
repositories {
maven {
url "http://repo1.maven.org/maven2"
}
useLibrary 'org.apache.http.legacy'
}
defaultConfig {
applicationId "com.example.pc.vision_test"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
multiDexEnabled true
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.ogaclejapan.smarttablayout:library:[email protected]'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.apis:google-api-services-youtube:v3-rev149-1.20.0'
compile 'com.google.http-client:google-http-client-android:1.20.0'
compile 'com.google.api-client:google-api-client-android:1.20.0'
compile 'com.google.api-client:google-api-client-gson:1.20.0'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.google.android.gms:play-services-auth:8.4.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.google.android.gms:play-services-appindexing:8.4.0'
compile 'com.amazonaws:aws-android-sdk-core:2.+'
compile 'com.amazonaws:aws-android-sdk-cognito:2.+'
compile 'com.amazonaws:aws-android-sdk-s3:2.+'
compile 'com.android.support:multidex:1.0.1'
compile 'commons-io:commons-io:2.4'
compile 'com.github.PhilJay:MPAndroidChart:v2.2.5'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.google.maps.android:android-maps-utils:0.3+'
compile 'com.android.support:palette-v7:23.1.1'
compile 'com.github.shazrazdan:Elemento:[email protected]'
compile 'com.afollestad.material-dialogs:core:0.8.6.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.github.bmarrdev:android-DecoView-charting:v1.2'
compile 'com.vimeo.networking:vimeo-networking:1.0.1'
compile 'com.roomorama:caldroid:3.0.1'
compile 'org.apache:pdfbox-android:1.8.9.0'
compile 'com.android.support:customtabs:23.1.1'
}
apply plugin: 'com.google.gms.google-services'
你可以發佈你的gradle嗎? – Raghavendra
它可能會幫助你雖然[無法解決com.android.support ... 25.0.0](http://stackoverflow.com/questions/40321265/android-studio-suddenly-started-to-display-unable-to-resolve -com-android-support)檢查 – Raghavendra
是的,我的問題類似。但我現在不想更新。 –