这是我的错误,整个项目都依赖于此
我的Gradle代码如下
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.github.ben-manes.versions'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.Safeer.Ahmad.MusicXtreme"
minSdkVersion 21
targetSdkVersion 25
versionCode 34
versionName "1.1.0"
renderscriptTargetApi 23
renderscriptSupportModeEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:appcompat-v7:24.0.0'
// compile 'com.android.support:appcompat-v7:+'
// compile 'com.android.support:support-v7:+'
compile 'com.github.mmin18:realtimeblurview:1.1.0'
compile 'jp.wasabeef:recyclerview-animators:2.2.5'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.5.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'bz.tsung.android:objectify:1.1.1'
compile 'com.android.support:cardview-v7:25.2.0'
compile 'com.android.support:palette-v7:25.2.0'
compile 'com.wang.avi:library:2.1.3'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.diogobernardino:williamchart:2.3.0'
compile 'tyrantgit:explosionfield:1.0.1'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:0.7.0'
compile 'me.priyesh:chroma:1.0.2'
compile 'com.github.QuadFlask:colorpicker:0.0.12'
compile 'com.github.amlcurran.showcaseview:library:5.4.3'
compile 'cn.aigestudio.wheelpicker:WheelPicker:1.1.2'
compile 'com.lantouzi.wheelview:library:1.1.2'
compile 'jp.wasabeef:blurry:2.1.0'
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
debugCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
}
再看一遍
这个错误是怎么发生的?我更新了android studio和gradle并构建了工具,因为我希望所有东西都是最新的,这个错误突然出现,我尝试了所有可能的方法来解决它,但失败了。只是这个错误没有解决,我的应用程序已经准备好了。
当前gradle是3.3,android Studio是2.3.1,最新的26个支持库appcompat
更新appcompat-v7
行。最新的appcompat版本是
compile 'com.android.support:appcompat-v7:25.3.1'
如果将所有依赖项更新到25.3.1
不起作用,请单击“分析”-
[更新]用下面的代码替换依赖项,并检查其是否有效
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:renderscript:25.2.0'
compile 'com.github.mmin18:realtimeblurview:1.1.0'
compile 'jp.wasabeef:recyclerview-animators:2.2.5'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.5.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'bz.tsung.android:objectify:1.1.1'
compile 'com.android.support:cardview-v7:25.2.0'
compile 'com.android.support:recycler-v7:25.2.0'
compile 'com.android.support:palette-v7:25.2.0'
compile 'com.wang.avi:library:2.1.3'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.diogobernardino:williamchart:2.3.0'
compile 'tyrantgit:explosionfield:1.0.1'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.h6ah4i.android.widget.verticalseekbar:verticalseekbar:0.7.0'
compile 'me.priyesh:chroma:1.0.2'
compile 'com.github.QuadFlask:colorpicker:0.0.12'
compile 'com.github.amlcurran.showcaseview:library:5.4.3'
compile 'cn.aigestudio.wheelpicker:WheelPicker:1.1.2'
compile 'com.lantouzi.wheelview:library:1.1.2'
compile 'jp.wasabeef:blurry:2.1.0'
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
debugCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
}
出现此错误是因为您为不同的模块声明了不同版本的支持库。例如:
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:support-v4:25.2.0'
首先,您需要将这些更改为相同的版本。我发现通过在项目的extblock中添加一个可见的块来保持版本号同步更容易。如果我有时间,我会在这里添加一个链接。与此同时,您应该做一些研究。
我不确定编译从哪里获得版本25.0.2,因为您似乎没有明确声明这一点。您的其他依赖项之一可能使用该版本的支持库。
我是Android开发的新手,我正在制作Firebase聊天应用,但突然间我面临着传递依赖的问题。我跟踪了这个链接不要用于库版本。但没能解决问题。这是我的代码build.gradle(模块), 我面临以下错误, 所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。发现版本26.0.0-alpha1,25.1.0。示例包括com.android.su
所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到的版本28.0.0, 26.1.0。示例包括com.android.support:动画-矢量-绘图:28.0.0和com.android.support:支持-媒体-比较:26.1.0少(Ctrl F1)有一些库或工具和库的组合不兼容,或者可能导致错误。其中一种不兼容是使用不是最新版本的A
我的android Studio显示此错误。 所有com.android.support库都必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到的版本27.1.1, 26.1.0。示例包括com.android.support:动画-矢量-绘图: 27.1.1和com.android.support:支持-媒体-比较: 26.1.0更少...(Ctrl F1)有一些库或工具和库的组合不兼
我试着用一个特定的活动运行我的应用程序,我一个连续的崩溃正在发生。 我发现了一个与appcompat版本有关的错误。然而,我不确定如何修复这个错误,即获取我的所有依赖在同一版本。 我想知道有没有一个快速的解决办法?如果不是,有什么步骤来确保它们都在正确的/相同的版本上? 任何帮助都将不胜感激。多谢了。
在我的android studio今天从2.2.3版到2.3版之后,我在'com.android.support:AppCompat-v7:25.2.0'依赖项上的build.gradle中发现了这个错误。但项目仍然可以运行。并且我运行一个Gradle依赖关系报告来查看我的依赖关系的完整树。显示如下所示。但我仍然不知道如何修复这个错误。 依赖树 我的分级:
我有一个错误在gradle文件编译'com.android.support: appcompat-v7:27.0.2'. gradle版本是2.3.0 我找了很多,但没能解决这个问题。我的错误是: 一切正常。Android支持库必须使用完全相同的版本规范(混合版本可能会导致运行时崩溃)。找到了版本27.0.2、25.1.0、25.0.0。例如com。Android支持:动画矢量绘图:27.0.2和