gpt4 book ai didi

android - 没有找到类 rx.android.schedulers.AndroidSchedulers

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:46:08 25 4
gpt4 key购买 nike

我在我的应用程序中同时使用了 rxjava/rxandroid 和 jackson-databind,但似乎这两个库无法协同工作。当我尝试运行我的应用程序时,它返回以下错误:

java.lang.ClassNotFoundException: rx.android.schedulers.AndroidSchedulers

这是我的 gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "myapp"
minSdkVersion Integer.parseInt(project.ANDROID_MIN_SDK_VERSION)
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}


packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
}

lintOptions {
abortOnError false
}
}

repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.pspdfkit:pspdfkit:2.0.1@aar'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.google.guava:guava:19.0'
compile 'org.lucasr.twowayview:twowayview:0.1.4'
compile 'com.joanzapata.pdfview:android-pdfview:1.0.2@aar'
compile 'net.lingala.zip4j:zip4j:1.3.2'
compile 'com.github.chrisbanes.photoview:library:1.2.4'
compile 'com.makeramen:roundedimageview:2.2.1'
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'ch.acra:acra:4.7.0'

compile 'io.reactivex:rxjava:1.1.0'
compile 'io.reactivex:rxandroid:1.1.0'

compile ('com.koushikdutta.ion:ion:2.+') {
exclude (group: 'com.google.code.gson')
}
compile (project (':common'))

在公共(public)项目中有一个 jackson 依赖项导致应用程序产生此错误:

compile 'com.fasterxml.jackson.core:jackson-databind:2.7.0-rc2'

有人遇到过这个问题吗?有简单的解决方案吗?

最佳答案

问题来自使用 RxAndroid 和 multidex 支持。对我有用的解决方案是添加 android:name="android.support.multidex.MultiDexApplication"在 list 中的应用程序级别。

如果您有类似android:name=".MyApp" 的内容,请覆盖 attachBaseContext() 方法

@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}

所有这些建议都来自

http://developer.android.com/tools/building/multidex.html

关于android - 没有找到类 rx.android.schedulers.AndroidSchedulers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34621524/

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