gpt4 book ai didi

android - 其他解决方案无法解决-错误:无法解决:com.android.support:support-v13.27.0.1:

转载 作者:行者123 更新时间:2023-12-03 05:09:49 25 4
gpt4 key购买 nike

我尝试了其他SO解决方案,并且具有较低且相同的支持lib版本,但是每次都会出现此错误:
错误:无法解决:com.android.support:support-v13.27.0.0:
打开文件

这是app.gradle:

    apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
applicationId "io.github.blackjack"
minSdkVersion 18
targetSdkVersion 27
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:27.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
compile 'com.android.support:support-v13.27.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

尝试添加Maven
build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

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


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
// maven{ url 'https://maven.google.com'}
}
}

task clean(type: Delete) {
delete rootProject.buildDir

}

我想念什么吗?

最佳答案

您使用的行不正确:

compile 'com.android.support:support-v13.27.0.1'

它应该是:
compile 'com.android.support:support-v13:27.0.1'

应该是 :之后的 .而不是 support-v13

关于android - 其他解决方案无法解决-错误:无法解决:com.android.support:support-v13.27.0.1:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49890052/

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