gpt4 book ai didi

安卓工作室 3.1.3 错误 : Unable to resolve dependency

转载 作者:太空狗 更新时间:2023-10-29 14:38:46 24 4
gpt4 key购买 nike

我要在我的公司开发Android。

我下载了 Android Studio 3.1 并创建了一个新的空白项目,但出现错误。

Gradle 下载会导致无条件错误。

我引用了很多谷歌的东西,但我无法解决。

构建渐变:

buildscript {    
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
}
}

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.fouad.kurd"
minSdkVersion 18
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 {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.+'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

gradle.wrapper.properties:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

:( Error Screen shot

请帮帮我

最佳答案

您将无法将 constraintLayout 与目标 sdk 版本 28 一起使用

所以罪魁祸首是

implementation 'com.android.support.constraint:constraint-layout:1.0.2'

所以请移除约束布局或将目标sdk版本降低到27。

关于安卓工作室 3.1.3 错误 : Unable to resolve dependency,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51703886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com