这是我的依赖项文件,在编译“ com.android.support:appcompat-v7.27.1.1”上有带下划线的红色文本.
apply plugin: 'com.androID.application' androID {compileSdkVersion 27defaultConfig { applicationID "com.abc.mcaproject" minSdkVersion 21 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'])compile 'com.androID.support:appcompat-v7.27.1.1'implementation 'com.androID.support.constraint:constraint-layout:1.1.0'implementation 'com.Google.firebase:firebase-database:11.6.0'implementation 'com.Google.firebase:firebase-messaging:11.6.0'implementation 'com.Google.firebase:firebase-auth:11.6.0'implementation 'com.Google.firebase:firebase-storage:11.6.0'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'}apply plugin: 'com.Google.gms.Google-services'
因此,我在更改styles.xml中的主题时遇到问题
解决方法:
当您将鼠标悬停在红线上时,可能会向您显示以下图像,我将其附加在下面.
它告诉您的是某些库中存在版本冲突,因此建议我们添加这些库.对于我来说,首先显示为CardVIEw,然后显示为Design.所以我加了.下面是它的代码.
dependencIEs { implementation filetree(dir: 'libs', include: ['*.jar']) implementation 'com.androID.support:appcompat-v7:27.1.1' implementation 'com.androID.support.constraint:constraint-layout:1.1.0' implementation 'com.payumoney.sdkui:plug-n-play:1.2.0' implementation 'com.androID.support:cardvIEw-v7:27.1.1' implementation 'com.androID.support:design:27.1.1' 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'}
因此,请将其添加为2或更多.
希望能有所帮助.
以上是内存溢出为你收集整理的gradle文件中的“com.android.support:appcompat-v7.27.1.1”问题全部内容,希望文章能够帮你解决gradle文件中的“com.android.support:appcompat-v7.27.1.1”问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)