我无法使用Android 27作为目标SDK和27.0.3作为buildToolsVersion构建项目。
我的Android工作室版本是3.0.1,我在项目的buid.gradle中的存储库中也有google()。
我收到此错误:
> Could not resolve com.android.support:design:27.0.3.
> Failed to download SHA1 for resource 'https://maven.google.com/com/android/support/design/27.0.3/design-27.0.3.pom'.
> For input string: "<!"
答案 0 :(得分:18)
由于没有27.0.3
,您可以改用27.0.1
,27.0.2
,27.1.0
。您可以在www.notifymyecho.com上查看有效版本。
答案 1 :(得分:0)
目前使用27.0.2
compileSdkVersion 27
buildToolsVersion '27.0.2'
defaultConfig {
applicationId "com.example.packagename"
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
implementation 'com.android.support:design:'27.0.2'
答案 2 :(得分:0)
试试这段代码:
android {
compileSdkVersion 24
buildToolsVersion '26.0.2'
aaptOptions {
cruncherEnabled = false
}
defaultConfig {
applicationId "com.rokolabs.app.rokostickers"
minSdkVersion 19 // use 19 only use for transition(21)
targetSdkVersion 23
versionCode 117
versionName "0.1.30"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
}
}