我正在尝试编写应用程序。我的三星手机有Android8.0版。我以为我的应用程序崩溃了,因为我在8.1(API 27)运行它。所以我降级了SDK版本等。但是现在当我尝试构建APK时,它会给我这个错误:
一切正常。Android支持库必须使用完全相同的版本规范(混合版本可能会导致运行时崩溃)。找到了27.1.1和26.1.0版本。例如com.Android支持:动画矢量绘图:27.1.1和com.Android支持:设计:减少26.1.0。。。(Ctrl-F1)有些库、工具和库的组合不兼容,或可能导致错误。其中一个不兼容之处是编译时使用的Android支持库版本不是最新版本(尤其是低于targetSdkVersion的版本)。
我的身材。格雷德尔:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.socialapps.socialme"
minSdkVersion 19
targetSdkVersion 26
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(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-auth:11.8.0'
implementation 'com.google.firebase:firebase-database:11.8.0'
implementation 'com.google.firebase:firebase-storage:11.8.0'
compile 'de.hdodenhof:circleimageview:2.2.0'
compile 'com.theartofdev.edmodo:android-image-cropper:2.6.0'
compile 'com.squareup.picasso:picasso:2.5.2'
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'
“实施”网站。Android支持:设计:26.1.0'用红线划线。谁能帮帮我吗?谢谢:D
关键字compile
已弃用。将它们替换为实现
word...并更新库的版本...为此,您可以在任何库上设置光标并按Alt Enter并选择更新为...例如将这些库更改为这些验证:
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
在将targetSdkVersion更新到27之后,我得到了这个错误消息。 所有com.android.support库必须使用完全相同的版本规范(混合版本会导致运行时崩溃)。找到版本27.0.2、25.2.0.示例包括和 我知道我应该更新,但我不知道该如何更新,因为我没有在build.gradle中使用它,所以我尝试更新SDK工具,但问题仍然存在。波纹管已建好。级:
在我的android studio今天从2.2.3版到2.3版之后,我在'com.android.support:AppCompat-v7:25.2.0'依赖项上的build.gradle中发现了这个错误。但项目仍然可以运行。并且我运行一个Gradle依赖关系报告来查看我的依赖关系的完整树。显示如下所示。但我仍然不知道如何修复这个错误。 依赖树 我的分级:
当我今天将android studio从2.2.3版本更新到2.3版本时,我突然在依赖项的第一个编译行build.gradle中出现了这个错误 (首先是哪个依赖关系并不重要,但它总会给我这个错误): 所有com.android.support库必须使用完全相同的版本规范(混合版本会导致运行时崩溃)。找到25.2.0、24.0.0版本。示例包括com.android.support:animated
我使用当前版本的mapbox SDK导航。Android的导航SDK当前版本:V0.32.0,如果我在build.gradle(模块:App)中添加实现“com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.30.0”,则出现错误 所有com.android.support库必须使用完全相同的版本规范(混合版本会导致运行时崩溃)。找到28.0.0、
在我将firebaseUi库添加到gradle之后,它显示了这个错误- 但我找不到Paletter-V7:23.4.0库的任何用途 分级-