我是Android Studio的新手。由于我的研究,我现在正在使用Android Studio 2.2.1。我在网站上找到了相关的答案,我尝试了所有解决方案,但仍然无法使用。
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.quynhnhu.demoapp"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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:28.+'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
您需要在您的项目 / 根 build.gradle中包含com.android.support:appcompat-v7:28.+
的google maven存储库。因此,更改您的build.gradle以包括如下所示的存储库:
allprojects {
repositories {
maven {
url 'https://maven.google.com'
}
}
}
更多详细信息,请访问Support Library Setup。
注意:请更新您的Gradle版本和Android Studio。