我正在使用Windows 10和Android Studio版本3.2.1
我遇到拖曳问题:
1-当我尝试在SDK管理器中更新或安装软件包时,收到此消息:
安装未成功完成。请参阅IDE日志 详细信息
2-当我创建一个新项目时,出现此错误:
无法解决':app @ debug / compileClasspath'的依赖关系:可以 找不到匹配的版本 com.android.support:appcompat-v7:29。+。
无法解决以下方面的依赖性 ':app @ debugAndroidTest / compileClasspath':找不到任何版本 匹配com.android.support:appcompat-v7:29。+。
build.gradle(模块):
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.one-click.myapplication"
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:29.+'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
我尝试了很多解决方案,但没有任何帮助,希望您能帮助我
答案 0 :(得分:0)
将实现“ com.android.support:appcompat-v7:29.+”更改为以下内容,并将compileSdkVersion 29更改为compileSdkVersion 28,将targetSdkVersion 29更改为targetSdkVersion 28
实现'com.android.support:appcompat-v7:28.0.0' 实施'com.android.support:support-v4:28.0.0'