gpt4 book ai didi

crash - Android Studio 在第一次运行时崩溃了

转载 作者:行者123 更新时间:2023-12-03 16:58:19 25 4
gpt4 key购买 nike

我有这个错误

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.



我在 Android Studio 下载 gradle 时睡着了,所以我的笔记本电脑进入了 sleep 模式并停止了一切。

现在我得到了上面的错误。我认为第一次运行下载中缺少某些内容,我该如何解决?

- - - - - 编辑
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:29.+'
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'
}

第二个
// 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.3.0'

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

allprojects {
repositories {
google()
jcenter()

}
}

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

最佳答案

根据 Google:这是 Support Library 28.0.0 的稳定版本,适合在生产中使用。这将是 android.support 打包下的最后一个功能版本,鼓励开发人员迁移到 AndroidX。

引用 https://developer.android.com/topic/libraries/support-library/revisions

这就是为什么你得到错误

implementation 'com.android.support:appcompat-v7:29.+' 

迁移到 androidX 或者您可以使用
implementation 'com.android.support:appcompat-v7:28.0.0' 
implementation 'com.android.support:support-v4:28.0.0'

在你的毕业典礼上

希望对你有帮助
快乐编码

关于crash - Android Studio 在第一次运行时崩溃了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59132452/

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