问候语 我是Android Studio的新手,我运行我的应用程序,我收到以下错误:
Failed to resolve: com.android.support: support-v4:24.0.0-beta1
我需要知道这个错误背后的原因以及如何解决它。
任何Android Studio专家都可以帮助我吗?
感谢
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.andoid.support: support-v4:25.3.1'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:25.1.1'
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.1.1'
}
答案 0 :(得分:1)
我需要知道这个错误背后的原因
在模块的build.gradle
文件中(例如app/build.gradle
),您有一行:
compile 'com.android.support:support-v4:24.0.0-beta1'
我不知道您为何要求提供此库的过时测试版。
如何解决它
将版本号更改为更新的版本号。理想情况下,您将compileSdkVersion
设置为25,然后使用:
compile 'com.android.support:support-v4:25.3.1'
因为版本25.3.1是此库的当前版本。