gpt4 book ai didi

android - 无法实现 androidx.appcompat.appcompat :1. 0.0

转载 作者:行者123 更新时间:2023-11-29 18:29:10 32 4
gpt4 key购买 nike

我是 Android 开发的绝对初学者,并尝试构建测试自动化来测试移动应用程序。经过数周的 IntelliJ 设置后,我仍然面临问题,其中包括以下问题。

因为我使用的是 SDK ver 29,我被告知我应该将所有“support”关键字转换为 androidx 的格式,如下所示:

enter image description here

所以,当我应用它时,我在“1.0.0”的末尾有一条指示错误的红色波浪线,如下所示 enter image description here

下面是我的app/build.gradle

android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
defaultConfig {
applicationId "com.example.test"
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'])
//noinspection GradleCompatible
//implementation 'com.android.support:appcompat-v7:29+'
implementation androidx.appcompat.appcompat:1.0.0
//implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
implementation 'androidx.annotation:annotation:1.1.0'
//androidTestImplementation 'com.android.support.test:runner:1.0.2'
//androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//androidTestImplementation 'com.android.support:support-annotations:24.0.0'
//implementation("com.android.support:support-v4:27.1.1")
//implementation project(':react-native-fast-image')

}
if(hasProperty('buildScan')){
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service';
termsOfServiceAgree = 'yes'
}
}

希望大家指教我哪里做错了。

最佳答案

使用

implementation 'androidx.appcompat:appcompat:1.0.0'

代替

implementation androidx.appcompat:appcompat:1.0.0

关于android - 无法实现 androidx.appcompat.appcompat :1. 0.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57353895/

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