Realm-java: java.lang.NoClassDefFoundError: rx.Observable in 0.87.0

Created on 18 Dec 2015  ·  17Comments  ·  Source: realm/realm-java

I'm using Jackson to deserialize JSON and I got this exception when update to latest version (0.87.0)

To fix this I added this to gradle
compile 'io.reactivex:rxjava:1.1.0'

12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: FATAL EXCEPTION: main
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: Process: xxx, PID: 7893
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: java.lang.NoClassDefFoundError: rx.Observable
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at libcore.reflect.InternalNames.getClass(InternalNames.java:55)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.Class.getDexCacheType(Class.java:479)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.reflect.ArtMethod.getDexCacheType(ArtMethod.java:191)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.reflect.ArtMethod.getReturnType(ArtMethod.java:145)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.reflect.Method.getReturnType(Method.java:184)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.Class.getDeclaredMethods(Class.java:771)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.AnnotatedClass._addMemberMethods(AnnotatedClass.java:601)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.AnnotatedClass.resolveMemberMethods(AnnotatedClass.java:429)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.AnnotatedClass.memberMethods(AnnotatedClass.java:251)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector._addMethods(POJOPropertiesCollector.java:502)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.collect(POJOPropertiesCollector.java:238)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.BasicClassIntrospector.collectProperties(BasicClassIntrospector.java:142)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.BasicClassIntrospector.forDeserialization(BasicClassIntrospector.java:81)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.introspect.BasicClassIntrospector.forDeserialization(BasicClassIntrospector.java:11)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.DeserializationConfig.introspect(DeserializationConfig.java:550)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache._createDeserializer(DeserializerCache.java:323)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:261)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:241)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:142)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.DeserializationContext.findContextualValueDeserializer(DeserializationContext.java:367)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.createContextual(CollectionDeserializer.java:152)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.createContextual(CollectionDeserializer.java:25)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.DeserializationContext.handleSecondaryContextualization(DeserializationContext.java:581)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.DeserializationContext.findContextualValueDeserializer(DeserializationContext.java:369)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.std.StdDeserializer.findDeserializer(StdDeserializer.java:842)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.resolve(BeanDeserializerBase.java:438)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:292)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:241)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:142)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.DeserializationContext.findRootValueDeserializer(DeserializationContext.java:381)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.ObjectReader._prefetchRootDeserializer(ObjectReader.java:1404)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.ObjectReader.(ObjectReader.java:186)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at com.fasterxml.jackson.databind.ObjectMapper.reader(ObjectMapper.java:2578)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.JacksonConverterFactory.fromResponseBody(JacksonConverterFactory.java:56)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.Retrofit.responseConverter(Retrofit.java:253)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.MethodHandler.createResponseConverter(MethodHandler.java:55)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.MethodHandler.create(MethodHandler.java:29)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.Retrofit.loadMethodHandler(Retrofit.java:151)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at retrofit.Retrofit$1.invoke(Retrofit.java:132)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at java.lang.reflect.Proxy.invoke(Proxy.java:397)
12-18 16:58:56.629 7893-7893/net.citigo.kiotviet E/AndroidRuntime: at $Proxy1.getRetailer(Unknown Source)

T-Doc

Most helpful comment

@mpost @santoshgistto So the workaround here doesn't help? https://realm.io/docs/java/latest/#jackson-databind

All 17 comments

The documentation at https://realm.io/docs/java/latest/#rxjava says that you need to add compile 'io.reactivex:rxjava:1.1.0' to your Gradle file. Of course, if you don't use RxJava, please post your Gradle file so we can understand why adding it fixes your problem.

My Gradle file

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "net.citigo.kiotviet"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    signingConfigs {
        release {
            storeFile file("xxx.jks")
            storePassword "xxx"
            keyAlias "xxx"
            keyPassword "xxx"
        }
    }
    buildTypes {
        release {
            debuggable true
            signingConfig signingConfigs.release
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    sourceSets {
        debug {
            java.srcDirs = ['src/main/java', 'src/debug/java']
        }
        release {
            java.srcDirs = ['src/main/java', 'src/release/java']
        }
    }

    packagingOptions {
        exclude '.readme'
        exclude 'LICENSE.txt'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LGPL2.1'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/README.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/services/javax.annotation.processing.Processor'
        exclude 'META-INF/MANIFEST.MF'
    }
}

repositories {
    maven {
        url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo'
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.github.bumptech.glide:okhttp-integration:1.3.1@aar'
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'com.squareup.retrofit:converter-jackson:2.0.0-beta2'
    compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
    compile 'io.realm:realm-android:0.87.0'
    compile 'io.reactivex:rxjava:1.1.0'

    debugCompile 'com.facebook.stetho:stetho:1.0.0'
    debugCompile 'com.uphyca:stetho_realm:0.7.2'
    debugCompile 'com.facebook.stetho:stetho-okhttp:1.2.0'
}

In your stack trace, I can't see that Realm is involved. And I can't reproduce the error by using your Gradle file. Maybe you need to update your ProGaurd configuration: https://realm.io/docs/java/latest/#proguard

I can repro this runtime exception. It's kinda weird because the line it occurs at is json deserialization / model creation code that doesn't have anything to do with Realm (except for the model being a RealmObject).
Adding the compile 'io.reactivex:rxjava:1.1.0' fixes it.

It happened after I upgraded the example app to Realm 0.87. The source is here: https://github.com/thorbenprimke/realm-searchview/tree/master/example

If you want to repro it, you simply have to comment the compile 'io.reactivex:rxjava:1.1.0' in the example's build.gradle file.

I don't think this has anything to do with proguard.

 java.lang.NoClassDefFoundError: rx.Observable
     at libcore.reflect.InternalNames.getClass(InternalNames.java:55)
     at java.lang.Class.getDexCacheType(Class.java:479)
     at java.lang.reflect.ArtMethod.getDexCacheType(ArtMethod.java:191)
     at java.lang.reflect.ArtMethod.getReturnType(ArtMethod.java:145)
     at java.lang.reflect.Method.getReturnType(Method.java:184)
     at java.lang.Class.getDeclaredMethods(Class.java:771)
     at com.fasterxml.jackson.databind.introspect.AnnotatedClass._findClassMethods(AnnotatedClass.java:1046)
     at com.fasterxml.jackson.databind.introspect.AnnotatedClass._addMemberMethods(AnnotatedClass.java:602)
     at com.fasterxml.jackson.databind.introspect.AnnotatedClass.resolveMemberMethods(AnnotatedClass.java:431)
     at com.fasterxml.jackson.databind.introspect.AnnotatedClass.memberMethods(AnnotatedClass.java:253)
     at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector._addMethods(POJOPropertiesCollector.java:477)
     at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.collectAll(POJOPropertiesCollector.java:284)
     at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.getPropertyMap(POJOPropertiesCollector.java:248)
     at com.fasterxml.jackson.databind.introspect.POJOPropertiesCollector.getProperties(POJOPropertiesCollector.java:155)
     at com.fasterxml.jackson.databind.introspect.BasicBeanDescription._properties(BasicBeanDescription.java:142)
     at com.fasterxml.jackson.databind.introspect.BasicBeanDescription.findProperties(BasicBeanDescription.java:217)
     at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory._findCreatorsFromProperties(BasicDeserializerFactory.java:333)
     at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory._constructDefaultValueInstantiator(BasicDeserializerFactory.java:315)
     at com.fasterxml.jackson.databind.deser.BasicDeserializerFactory.findValueInstantiator(BasicDeserializerFactory.java:254)
     at com.fasterxml.jackson.databind.deser.BeanDeserializerFactory.buildBeanDeserializer(BeanDeserializerFactory.java:222)
     at com.fasterxml.jackson.databind.deser.BeanDeserializerFactory.createBeanDeserializer(BeanDeserializerFactory.java:142)
     at com.fasterxml.jackson.databind.deser.DeserializerCache._createDeserializer2(DeserializerCache.java:403)
     at com.fasterxml.jackson.databind.deser.DeserializerCache._createDeserializer(DeserializerCache.java:352)
     at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCache2(DeserializerCache.java:264)
     at com.fasterxml.jackson.databind.deser.DeserializerCache._createAndCacheValueDeserializer(DeserializerCache.java:244)
     at com.fasterxml.jackson.databind.deser.DeserializerCache.findValueDeserializer(DeserializerCache.java:142)
     at com.fasterxml.jackson.databind.DeserializationContext.findContextualValueDeserializer(DeserializationContext.java:428)
     at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.createContextual(CollectionDeserializer.java:164)
     at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.createContextual(CollectionDeserializer.java:25)
     at com.fasterxml.jackson.databind.DeserializationContext.handleSecondaryContextualization(DeserializationContext.java:669)
     at com.fasterxml.jackson.databind.DeserializationContext.findRootValueDeserializer(DeserializationContext.java:466)
     at com.fasterxml.jackson.databind.ObjectMapper._findRootDeserializer(ObjectMapper.java:3838)
     at com.fasterxml.jackson.databind.ObjectMapper._readValue(ObjectMapper.java:3703)
     at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2029)
     at co.moonmonkeylabs.realmsearchview.example.MainActivity.loadBlogData(MainActivity.java:73)
     at co.moonmonkeylabs.realmsearchview.example.MainActivity.onCreate(MainActivity.java:40)
     at android.app.Activity.performCreate(Activity.java:5990)
     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
    at android.app

@thorbenprimke Thanks for your comment. It is a bit interesting that adding RxJava as a dependency helps (well, we just added support for it but as an optional dependency).

Without having looked closer into it it. I am guessing that Jackson does some inspection of methods/fields of our RealmObject class (which reference the rx.Observable) class and that triggers this exception. On the top of my head I see 2 solutions.

1) Create a mock rx.Observable class (empty class with no fields/methods)
2) Find a way to configure Jackson to ignore certain methods.

In any case it sounds like something we want to document on the website

Same happens to me If when I deserialize the object, im using Firebase which uses jackson for deserialization

RealmUser realmUser = snapshot.getValue(RealmUser.class);

Is the line which throws java.lang.NoClassDefFoundError: rx.Observable

adding compile 'io.reactivex:rxjava:1.0.16' to gradle fixes the problem.

@silva96 Thanks for the solution.

The documentation has been updated with possible solutions.

01-24 22:52:20.919 4871-4871/? D/dalvikvm: Late-enabling CheckJNI
01-24 22:52:20.989 4871-4877/com.example.bitcoiner.printchicken I/jdwp: Ignoring second debugger -- accepting and dropping
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.widget.ImageView., referenced from method com.facebook.drawee.view.DraweeView.
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve direct method 20098: Landroid/widget/ImageView;. (Landroid/content/Context;Landroid/util/AttributeSet;II)V
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method com.facebook.drawee.view.DraweeView.getImageTintList, referenced from method com.facebook.drawee.view.DraweeView.init
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 32866: Lcom/facebook/drawee/view/DraweeView;.getImageTintList ()Landroid/content/res/ColorStateList;
01-24 22:52:20.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0015
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Landroid/view/SearchEvent;)
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.view.Window$Callback.onSearchRequested, referenced from method android.support.v7.view.WindowCallbackWrapper.onSearchRequested
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve interface method 19419: Landroid/view/Window$Callback;.onSearchRequested (Landroid/view/SearchEvent;)Z
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.view.Window$Callback.onWindowStartingActionMode, referenced from method android.support.v7.view.WindowCallbackWrapper.onWindowStartingActionMode
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve interface method 19423: Landroid/view/Window$Callback;.onWindowStartingActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
01-24 22:52:21.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.widget.TintTypedArray.getChangingConfigurations
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 645: Landroid/content/res/TypedArray;.getChangingConfigurations ()I
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.widget.TintTypedArray.getType
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 667: Landroid/content/res/TypedArray;.getType (I)I
01-24 22:52:21.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
01-24 22:52:21.069 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.view.Window.setStatusBarColor, referenced from method com.example.bitcoiner.printchicken.StatusBarCompat.compat
01-24 22:52:21.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 19442: Landroid/view/Window;.setStatusBarColor (I)V
01-24 22:52:21.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x000d
01-24 22:52:21.139 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.view.View., referenced from method com.jcodecraeer.xrecyclerview.progressindicator.AVLoadingIndicatorView.
01-24 22:52:21.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve direct method 18977: Landroid/view/View;. (Landroid/content/Context;Landroid/util/AttributeSet;II)V
01-24 22:52:21.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x70 at 0x0000
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: : EGL 1.4 QUALCOMM build: YWEN_+PATCH[ES]_msm8974_refs/tags/AU_LINUX_ANDROID_LNX.LA.3.5.2.2.1_RB1.04.04.04.090.059__release_ENGG ()
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: OpenGL ES Shader Compiler Version: E031.24.00.15
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: Build Date: 11/04/15 Wed
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: Local Branch: tip
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: Remote Branch: quic/kk_3.5_1
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: Local Patches: 14b1eae272f4a5ed345b2294a1c76becd9b27371 rb: re-work change "ES2.0 Fix for shadow cached VBO validation"
01-24 22:52:21.229 4871-4871/com.example.bitcoiner.printchicken I/Adreno-EGL: c63208cf6c1fe92a04d7ed7e26be44f2f51c94e9 Revert "Fix for perf regression from "ES2.0 Fix for shadow cached VBO validation""
01-24 22:52:21.259 4871-4871/com.example.bitcoiner.printchicken D/OpenGLRenderer: Enabling debug mode 0
01-24 22:52:21.319 4871-4871/com.example.bitcoiner.printchicken I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@42e04840 time:35144623
01-24 22:52:23.849 4871-4871/com.example.bitcoiner.printchicken I/Timeline: Timeline: Activity_launch_request time:35147153
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.content.res.Resources.getDrawable, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawable
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 608: Landroid/content/res/Resources;.getDrawable (ILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method android.content.res.Resources.getDrawableForDensity, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawableForDensity
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 610: Landroid/content/res/Resources;.getDrawableForDensity (IILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
01-24 22:52:23.919 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.plugins.RxJavaPlugins.getInstance, referenced from method rx.Observable.
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64945: Lrx/plugins/RxJavaPlugins;.getInstance ()Lrx/plugins/RxJavaPlugins;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/plugins/RxJavaObservableExecutionHook;)
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64774: Lrx/internal/operators/OnSubscribeAmb;.amb (Ljava/lang/Iterable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64775: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64776: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64777: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64778: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64779: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.949 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x77 at 0x0000
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64780: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x77 at 0x0000
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64781: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x77 at 0x0000
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeAmb.amb, referenced from method rx.Observable.amb
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64782: Lrx/internal/operators/OnSubscribeAmb;.amb (Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;Lrx/Observable;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x77 at 0x0000
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/FuncN;)
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeCombineLatest', referenced from method rx.Observable.combineLatest
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8879 (Lrx/internal/operators/OnSubscribeCombineLatest;) in Lrx/Observable;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func9;)
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64771: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func9;)Lrx/functions/FuncN;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0024
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func8;)
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64770: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func8;)Lrx/functions/FuncN;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0020
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func7;)
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64769: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func7;)Lrx/functions/FuncN;
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x001c
01-24 22:52:23.959 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func6;)
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64768: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func6;)Lrx/functions/FuncN;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0019
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func5;)
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64767: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func5;)Lrx/functions/FuncN;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0016
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func4;)
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64766: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func4;)Lrx/functions/FuncN;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0013
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func3;)
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64765: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func3;)Lrx/functions/FuncN;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0010
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.functions.Functions.fromFunc, referenced from method rx.Observable.combineLatest
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64764: Lrx/functions/Functions;.fromFunc (Lrx/functions/Func2;)Lrx/functions/FuncN;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x000d
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorConcat.instance, referenced from method rx.Observable.concat
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64817: Lrx/internal/operators/OperatorConcat;.instance ()Lrx/internal/operators/OperatorConcat;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.util.UtilityFunctions.identity, referenced from method rx.Observable.concatEager
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64936: Lrx/internal/util/UtilityFunctions;.identity ()Lrx/functions/Func1;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0004
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.util.UtilityFunctions.identity, referenced from method rx.Observable.concatEager
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64936: Lrx/internal/util/UtilityFunctions;.identity ()Lrx/functions/Func1;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0004
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.util.UtilityFunctions.identity, referenced from method rx.Observable.concatEager
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64936: Lrx/internal/util/UtilityFunctions;.identity ()Lrx/functions/Func1;
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.util.UtilityFunctions.identity, referenced from method rx.Observable.concatEager
01-24 22:52:23.969 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64936: Lrx/internal/util/UtilityFunctions;.identity ()Lrx/functions/Func1;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.plugins.RxJavaObservableExecutionHook.onCreate, referenced from method rx.Observable.create
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 64940: Lrx/plugins/RxJavaObservableExecutionHook;.onCreate (Lrx/Observable$OnSubscribe;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0004
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeDefer', referenced from method rx.Observable.defer
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8880 (Lrx/internal/operators/OnSubscribeDefer;) in Lrx/Observable;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeFromIterable', referenced from method rx.Observable.from
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8884 (Lrx/internal/operators/OnSubscribeFromIterable;) in Lrx/Observable;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeToObservableFuture.toObservableFuture, referenced from method rx.Observable.from
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64805: Lrx/internal/operators/OnSubscribeToObservableFuture;.toObservableFuture (Ljava/util/concurrent/Future;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeToObservableFuture.toObservableFuture, referenced from method rx.Observable.from
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64806: Lrx/internal/operators/OnSubscribeToObservableFuture;.toObservableFuture (Ljava/util/concurrent/Future;JLjava/util/concurrent/TimeUnit;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeToObservableFuture.toObservableFuture, referenced from method rx.Observable.from
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64805: Lrx/internal/operators/OnSubscribeToObservableFuture;.toObservableFuture (Ljava/util/concurrent/Future;)Lrx/Observable$OnSubscribe;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeFromCallable', referenced from method rx.Observable.fromCallable
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8883 (Lrx/internal/operators/OnSubscribeFromCallable;) in Lrx/Observable;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeTimerPeriodically', referenced from method rx.Observable.interval
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8891 (Lrx/internal/operators/OnSubscribeTimerPeriodically;) in Lrx/Observable;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.util.ScalarSynchronousObservable.create, referenced from method rx.Observable.just
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64932: Lrx/internal/util/ScalarSynchronousObservable;.create (Ljava/lang/Object;)Lrx/internal/util/ScalarSynchronousObservable;
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorMapNotification', referenced from method rx.Observable.mapNotification
01-24 22:52:23.979 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8921 (Lrx/internal/operators/OperatorMapNotification;) in Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.merge
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve const-class 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x1c at 0x0004
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.merge
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve const-class 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x1c at 0x0004
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorMerge.instance, referenced from method rx.Observable.mergeDelayError
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64844: Lrx/internal/operators/OperatorMerge;.instance (Z)Lrx/internal/operators/OperatorMerge;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0001
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorMerge.instance, referenced from method rx.Observable.mergeDelayError
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64845: Lrx/internal/operators/OperatorMerge;.instance (ZI)Lrx/internal/operators/OperatorMerge;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0001
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeRange', referenced from method rx.Observable.range
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8887 (Lrx/internal/operators/OnSubscribeRange;) in Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x002d
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$3; interface 8866 'Lrx/functions/Func2;'
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$3;' failed
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$3', referenced from method rx.Observable.sequenceEqual
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8820 (Lrx/Observable$3;) in Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorSequenceEqual.sequenceEqual, referenced from method rx.Observable.sequenceEqual
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64871: Lrx/internal/operators/OperatorSequenceEqual;.sequenceEqual (Lrx/Observable;Lrx/Observable;Lrx/functions/Func2;)Lrx/Observable;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.Subscriber.onStart, referenced from method rx.Observable.subscribe
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 64749: Lrx/Subscriber;.onStart ()V
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0016
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorSwitch.instance, referenced from method rx.Observable.switchOnNext
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64883: Lrx/internal/operators/OperatorSwitch;.instance ()Lrx/internal/operators/OperatorSwitch;
01-24 22:52:23.989 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeTimerOnce', referenced from method rx.Observable.timer
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8890 (Lrx/internal/operators/OnSubscribeTimerOnce;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeUsing', referenced from method rx.Observable.using
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8893 (Lrx/internal/operators/OnSubscribeUsing;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/FuncN;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0027
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func9;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0024
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func8;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0020
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func7;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x001c
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func6;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0019
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func5;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0016
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func4;)
01-24 22:52:23.999 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0013
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func3;)
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0010
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x000d
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/FuncN;)
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZip', referenced from method rx.Observable.zip
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8975 (Lrx/internal/operators/OperatorZip;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x000d
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorAll', referenced from method rx.Observable.all
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8894 (Lrx/internal/operators/OperatorAll;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorAsObservable.instance, referenced from method rx.Observable.asObservable
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64810: Lrx/internal/operators/OperatorAsObservable;.instance ()Lrx/internal/operators/OperatorAsObservable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithSize', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8898 (Lrx/internal/operators/OperatorBufferWithSize;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithTime', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8900 (Lrx/internal/operators/OperatorBufferWithTime;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithTime', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8900 (Lrx/internal/operators/OperatorBufferWithTime;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithTime', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8900 (Lrx/internal/operators/OperatorBufferWithTime;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithSingleObservable', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8897 (Lrx/internal/operators/OperatorBufferWithSingleObservable;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithStartEndObservable', referenced from method rx.Observable.buffer
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8899 (Lrx/internal/operators/OperatorBufferWithStartEndObservable;) in Lrx/Observable;
01-24 22:52:24.009 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorBufferWithSingleObservable', referenced from method rx.Observable.buffer
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8897 (Lrx/internal/operators/OperatorBufferWithSingleObservable;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.CachedObservable.from, referenced from method rx.Observable.cache
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64772: Lrx/internal/operators/CachedObservable;.from (Lrx/Observable;)Lrx/internal/operators/CachedObservable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.CachedObservable.from, referenced from method rx.Observable.cache
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64773: Lrx/internal/operators/CachedObservable;.from (Lrx/Observable;I)Lrx/internal/operators/CachedObservable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorCast', referenced from method rx.Observable.cast
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8901 (Lrx/internal/operators/OperatorCast;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action2;)
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$5; interface 8866 'Lrx/functions/Func2;'
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$5;' failed
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$5', referenced from method rx.Observable.collect
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8822 (Lrx/Observable$5;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static field 35791 (SIZE) in Lrx/internal/util/RxRingBuffer;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x60 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorEagerConcatMap', referenced from method rx.Observable.concatMapEager
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8914 (Lrx/internal/operators/OperatorEagerConcatMap;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x001c
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDebounceWithTime', referenced from method rx.Observable.debounce
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8904 (Lrx/internal/operators/OperatorDebounceWithTime;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDebounceWithSelector', referenced from method rx.Observable.debounce
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8903 (Lrx/internal/operators/OperatorDebounceWithSelector;) in Lrx/Observable;
01-24 22:52:24.019 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDelay', referenced from method rx.Observable.delay
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8905 (Lrx/internal/operators/OperatorDelay;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDelayWithSelector', referenced from method rx.Observable.delay
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8906 (Lrx/internal/operators/OperatorDelayWithSelector;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0004
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDelayWithSelector', referenced from method rx.Observable.delay
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8906 (Lrx/internal/operators/OperatorDelayWithSelector;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeDelaySubscription', referenced from method rx.Observable.delaySubscription
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8881 (Lrx/internal/operators/OnSubscribeDelaySubscription;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeDelaySubscriptionWithSelector', referenced from method rx.Observable.delaySubscription
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8882 (Lrx/internal/operators/OnSubscribeDelaySubscriptionWithSelector;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorDematerialize.instance, referenced from method rx.Observable.dematerialize
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64822: Lrx/internal/operators/OperatorDematerialize;.instance ()Lrx/internal/operators/OperatorDematerialize;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorDistinct.instance, referenced from method rx.Observable.distinct
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64824: Lrx/internal/operators/OperatorDistinct;.instance ()Lrx/internal/operators/OperatorDistinct;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDistinct', referenced from method rx.Observable.distinct
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8908 (Lrx/internal/operators/OperatorDistinct;) in Lrx/Observable;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorDistinctUntilChanged.instance, referenced from method rx.Observable.distinctUntilChanged
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64826: Lrx/internal/operators/OperatorDistinctUntilChanged;.instance ()Lrx/internal/operators/OperatorDistinctUntilChanged;
01-24 22:52:24.029 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDistinctUntilChanged', referenced from method rx.Observable.distinctUntilChanged
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8909 (Lrx/internal/operators/OperatorDistinctUntilChanged;) in Lrx/Observable;
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnCompleted
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0005
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnEach
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnEach
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0005
01-24 22:52:24.039 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnError
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0005
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnNext
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0005
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnRequest', referenced from method rx.Observable.doOnRequest
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8911 (Lrx/internal/operators/OperatorDoOnRequest;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnSubscribe', referenced from method rx.Observable.doOnSubscribe
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8912 (Lrx/internal/operators/OperatorDoOnSubscribe;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnEach', referenced from method rx.Observable.doOnTerminate
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8910 (Lrx/internal/operators/OperatorDoOnEach;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0005
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorDoOnUnsubscribe', referenced from method rx.Observable.doOnUnsubscribe
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8913 (Lrx/internal/operators/OperatorDoOnUnsubscribe;) in Lrx/Observable;
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorElementAt', referenced from method rx.Observable.elementAt
01-24 22:52:24.049 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8915 (Lrx/internal/operators/OperatorElementAt;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorElementAt', referenced from method rx.Observable.elementAtOrDefault
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8915 (Lrx/internal/operators/OperatorElementAt;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorAny', referenced from method rx.Observable.exists
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8895 (Lrx/internal/operators/OperatorAny;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorFilter', referenced from method rx.Observable.filter
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8916 (Lrx/internal/operators/OperatorFilter;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorFinally', referenced from method rx.Observable.finallyDo
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8917 (Lrx/internal/operators/OperatorFinally;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.flatMap
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve const-class 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x1c at 0x0004
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.flatMap
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve const-class 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x1c at 0x0004
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorMapPair', referenced from method rx.Observable.flatMap
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8922 (Lrx/internal/operators/OperatorMapPair;) in Lrx/Observable;
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.059 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorMapPair', referenced from method rx.Observable.flatMap
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8922 (Lrx/internal/operators/OperatorMapPair;) in Lrx/Observable;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorMapPair.convertSelector, referenced from method rx.Observable.flatMapIterable
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64842: Lrx/internal/operators/OperatorMapPair;.convertSelector (Lrx/functions/Func1;)Lrx/functions/Func1;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorMapPair.convertSelector, referenced from method rx.Observable.flatMapIterable
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64842: Lrx/internal/operators/OperatorMapPair;.convertSelector (Lrx/functions/Func1;)Lrx/functions/Func1;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorGroupBy', referenced from method rx.Observable.groupBy
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8918 (Lrx/internal/operators/OperatorGroupBy;) in Lrx/Observable;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorGroupBy', referenced from method rx.Observable.groupBy
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8918 (Lrx/internal/operators/OperatorGroupBy;) in Lrx/Observable;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeGroupJoin', referenced from method rx.Observable.groupJoin
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8885 (Lrx/internal/operators/OnSubscribeGroupJoin;) in Lrx/Observable;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorIgnoreElements.instance, referenced from method rx.Observable.ignoreElements
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64838: Lrx/internal/operators/OperatorIgnoreElements;.instance ()Lrx/internal/operators/OperatorIgnoreElements;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OnSubscribeJoin', referenced from method rx.Observable.join
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8886 (Lrx/internal/operators/OnSubscribeJoin;) in Lrx/Observable;
01-24 22:52:24.069 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorMap', referenced from method rx.Observable.map
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8920 (Lrx/internal/operators/OperatorMap;) in Lrx/Observable;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorMaterialize.instance, referenced from method rx.Observable.materialize
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64843: Lrx/internal/operators/OperatorMaterialize;.instance ()Lrx/internal/operators/OperatorMaterialize;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.observeOn
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve instanceof 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x20 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorOnBackpressureBuffer.instance, referenced from method rx.Observable.onBackpressureBuffer
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64849: Lrx/internal/operators/OperatorOnBackpressureBuffer;.instance ()Lrx/internal/operators/OperatorOnBackpressureBuffer;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnBackpressureBuffer', referenced from method rx.Observable.onBackpressureBuffer
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8926 (Lrx/internal/operators/OperatorOnBackpressureBuffer;) in Lrx/Observable;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnBackpressureBuffer', referenced from method rx.Observable.onBackpressureBuffer
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8926 (Lrx/internal/operators/OperatorOnBackpressureBuffer;) in Lrx/Observable;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorOnBackpressureDrop.instance, referenced from method rx.Observable.onBackpressureDrop
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64851: Lrx/internal/operators/OperatorOnBackpressureDrop;.instance ()Lrx/internal/operators/OperatorOnBackpressureDrop;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnBackpressureDrop', referenced from method rx.Observable.onBackpressureDrop
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8927 (Lrx/internal/operators/OperatorOnBackpressureDrop;) in Lrx/Observable;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorOnBackpressureLatest.instance, referenced from method rx.Observable.onBackpressureLatest
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64852: Lrx/internal/operators/OperatorOnBackpressureLatest;.instance ()Lrx/internal/operators/OperatorOnBackpressureLatest;
01-24 22:52:24.079 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnErrorResumeNextViaObservable', referenced from method rx.Observable.onErrorResumeNext
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8930 (Lrx/internal/operators/OperatorOnErrorResumeNextViaObservable;) in Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnErrorResumeNextViaFunction', referenced from method rx.Observable.onErrorResumeNext
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8929 (Lrx/internal/operators/OperatorOnErrorResumeNextViaFunction;) in Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnErrorReturn', referenced from method rx.Observable.onErrorReturn
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8931 (Lrx/internal/operators/OperatorOnErrorReturn;) in Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorOnExceptionResumeNextViaObservable', referenced from method rx.Observable.onExceptionResumeNext
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8932 (Lrx/internal/operators/OperatorOnExceptionResumeNextViaObservable;) in Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorPublish.create, referenced from method rx.Observable.publish
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64857: Lrx/internal/operators/OperatorPublish;.create (Lrx/Observable;Lrx/functions/Func1;)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorPublish.create, referenced from method rx.Observable.publish
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64858: Lrx/internal/operators/OperatorPublish;.create (Lrx/Observable;)Lrx/observables/ConnectableObservable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeat
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64792: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeat
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64793: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;J)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeat
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64794: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;JLrx/Scheduler;)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeat
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64795: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;Lrx/Scheduler;)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeatWhen
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64796: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;Lrx/functions/Func1;)Lrx/Observable;
01-24 22:52:24.089 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0005
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.repeat, referenced from method rx.Observable.repeatWhen
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64797: Lrx/internal/operators/OnSubscribeRedo;.repeat (Lrx/Observable;Lrx/functions/Func1;Lrx/Scheduler;)Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0005
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$16; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$16;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$16', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8801 (Lrx/Observable$16;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$17; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$17;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$17', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8802 (Lrx/Observable$17;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$18; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$18;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$18', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8803 (Lrx/Observable$18;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x000a
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$19; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$19;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$19', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8804 (Lrx/Observable$19;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$21; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$21;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$21', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8807 (Lrx/Observable$21;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$22; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$22;' failed
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$22', referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8808 (Lrx/Observable$22;) in Lrx/Observable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.create, referenced from method rx.Observable.replay
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64859: Lrx/internal/operators/OperatorReplay;.create (Lrx/Observable;)Lrx/observables/ConnectableObservable;
01-24 22:52:24.099 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.create, referenced from method rx.Observable.replay
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64860: Lrx/internal/operators/OperatorReplay;.create (Lrx/Observable;I)Lrx/observables/ConnectableObservable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.create, referenced from method rx.Observable.replay
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64862: Lrx/internal/operators/OperatorReplay;.create (Lrx/Observable;JLjava/util/concurrent/TimeUnit;Lrx/Scheduler;I)Lrx/observables/ConnectableObservable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x77 at 0x000f
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.observeOn, referenced from method rx.Observable.replay
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64864: Lrx/internal/operators/OperatorReplay;.observeOn (Lrx/observables/ConnectableObservable;Lrx/Scheduler;)Lrx/observables/ConnectableObservable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0004
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.create, referenced from method rx.Observable.replay
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64861: Lrx/internal/operators/OperatorReplay;.create (Lrx/Observable;JLjava/util/concurrent/TimeUnit;Lrx/Scheduler;)Lrx/observables/ConnectableObservable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorReplay.observeOn, referenced from method rx.Observable.replay
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64864: Lrx/internal/operators/OperatorReplay;.observeOn (Lrx/observables/ConnectableObservable;Lrx/Scheduler;)Lrx/observables/ConnectableObservable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0004
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.retry, referenced from method rx.Observable.retry
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64798: Lrx/internal/operators/OnSubscribeRedo;.retry (Lrx/Observable;)Lrx/Observable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.retry, referenced from method rx.Observable.retry
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64799: Lrx/internal/operators/OnSubscribeRedo;.retry (Lrx/Observable;J)Lrx/Observable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorRetryWithPredicate', referenced from method rx.Observable.retry
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8935 (Lrx/internal/operators/OperatorRetryWithPredicate;) in Lrx/Observable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0004
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.retry, referenced from method rx.Observable.retryWhen
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64800: Lrx/internal/operators/OnSubscribeRedo;.retry (Lrx/Observable;Lrx/functions/Func1;)Lrx/Observable;
01-24 22:52:24.109 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0005
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OnSubscribeRedo.retry, referenced from method rx.Observable.retryWhen
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64801: Lrx/internal/operators/OnSubscribeRedo;.retry (Lrx/Observable;Lrx/functions/Func1;Lrx/Scheduler;)Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0005
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSampleWithTime', referenced from method rx.Observable.sample
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8937 (Lrx/internal/operators/OperatorSampleWithTime;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSampleWithObservable', referenced from method rx.Observable.sample
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8936 (Lrx/internal/operators/OperatorSampleWithObservable;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorScan', referenced from method rx.Observable.scan
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8938 (Lrx/internal/operators/OperatorScan;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorScan', referenced from method rx.Observable.scan
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8938 (Lrx/internal/operators/OperatorScan;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorSerialize.instance, referenced from method rx.Observable.serialize
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64872: Lrx/internal/operators/OperatorSerialize;.instance ()Lrx/internal/operators/OperatorSerialize;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/observables/ConnectableObservable;)
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.observables.ConnectableObservable.refCount, referenced from method rx.Observable.share
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 64938: Lrx/observables/ConnectableObservable;.refCount ()Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0004
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorSingle.instance, referenced from method rx.Observable.single
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64874: Lrx/internal/operators/OperatorSingle;.instance ()Lrx/internal/operators/OperatorSingle;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSingle', referenced from method rx.Observable.singleOrDefault
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8941 (Lrx/internal/operators/OperatorSingle;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkip', referenced from method rx.Observable.skip
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8942 (Lrx/internal/operators/OperatorSkip;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkipTimed', referenced from method rx.Observable.skip
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8945 (Lrx/internal/operators/OperatorSkipTimed;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkipLast', referenced from method rx.Observable.skipLast
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8943 (Lrx/internal/operators/OperatorSkipLast;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkipLastTimed', referenced from method rx.Observable.skipLast
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8944 (Lrx/internal/operators/OperatorSkipLastTimed;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkipUntil', referenced from method rx.Observable.skipUntil
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8946 (Lrx/internal/operators/OperatorSkipUntil;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSkipWhile', referenced from method rx.Observable.skipWhile
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8947 (Lrx/internal/operators/OperatorSkipWhile;) in Lrx/Observable;
01-24 22:52:24.119 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$26; (8850)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$26;' failed
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$26', referenced from method rx.Observable.subscribe
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8814 (Lrx/Observable$26;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Subscriber', referenced from method rx.Observable.subscribe
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve instanceof 8850 (Lrx/Subscriber;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x20 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$27; (8850)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$27;' failed
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$27', referenced from method rx.Observable.subscribe
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8815 (Lrx/Observable$27;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x000a
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$28; (8850)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$28;' failed
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$28', referenced from method rx.Observable.subscribe
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8816 (Lrx/Observable$28;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0014
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Action0;)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$29; (8850)
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$29;' failed
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Observable$29', referenced from method rx.Observable.subscribe
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8817 (Lrx/Observable$29;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x001e
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.util.ScalarSynchronousObservable', referenced from method rx.Observable.subscribeOn
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve instanceof 8983 (Lrx/internal/util/ScalarSynchronousObservable;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x20 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorSwitchIfEmpty', referenced from method rx.Observable.switchIfEmpty
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8950 (Lrx/internal/operators/OperatorSwitchIfEmpty;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTake', referenced from method rx.Observable.take
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8951 (Lrx/internal/operators/OperatorTake;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeTimed', referenced from method rx.Observable.take
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8955 (Lrx/internal/operators/OperatorTakeTimed;) in Lrx/Observable;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorTakeLastOne.instance, referenced from method rx.Observable.takeLast
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64887: Lrx/internal/operators/OperatorTakeLastOne;.instance ()Lrx/internal/operators/OperatorTakeLastOne;
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x000a
01-24 22:52:24.129 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeLast', referenced from method rx.Observable.takeLast
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8952 (Lrx/internal/operators/OperatorTakeLast;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0013
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeLastTimed', referenced from method rx.Observable.takeLast
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8954 (Lrx/internal/operators/OperatorTakeLastTimed;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeLastTimed', referenced from method rx.Observable.takeLast
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8954 (Lrx/internal/operators/OperatorTakeLastTimed;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeUntil', referenced from method rx.Observable.takeUntil
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8956 (Lrx/internal/operators/OperatorTakeUntil;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeUntilPredicate', referenced from method rx.Observable.takeUntil
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8957 (Lrx/internal/operators/OperatorTakeUntilPredicate;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTakeWhile', referenced from method rx.Observable.takeWhile
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8958 (Lrx/internal/operators/OperatorTakeWhile;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorThrottleFirst', referenced from method rx.Observable.throttleFirst
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8959 (Lrx/internal/operators/OperatorThrottleFirst;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTimeInterval', referenced from method rx.Observable.timeInterval
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8960 (Lrx/internal/operators/OperatorTimeInterval;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTimeout', referenced from method rx.Observable.timeout
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8961 (Lrx/internal/operators/OperatorTimeout;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTimeoutWithSelector', referenced from method rx.Observable.timeout
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8962 (Lrx/internal/operators/OperatorTimeoutWithSelector;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x000a
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorTimestamp', referenced from method rx.Observable.timestamp
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8963 (Lrx/internal/operators/OperatorTimestamp;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.observables.BlockingObservable.from, referenced from method rx.Observable.toBlocking
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64937: Lrx/observables/BlockingObservable;.from (Lrx/Observable;)Lrx/observables/BlockingObservable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.internal.operators.OperatorToObservableList.instance, referenced from method rx.Observable.toList
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64904: Lrx/internal/operators/OperatorToObservableList;.instance ()Lrx/internal/operators/OperatorToObservableList;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMap', referenced from method rx.Observable.toMap
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8964 (Lrx/internal/operators/OperatorToMap;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMap', referenced from method rx.Observable.toMap
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8964 (Lrx/internal/operators/OperatorToMap;) in Lrx/Observable;
01-24 22:52:24.139 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMap', referenced from method rx.Observable.toMap
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8964 (Lrx/internal/operators/OperatorToMap;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMultimap', referenced from method rx.Observable.toMultimap
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8965 (Lrx/internal/operators/OperatorToMultimap;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMultimap', referenced from method rx.Observable.toMultimap
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8965 (Lrx/internal/operators/OperatorToMultimap;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMultimap', referenced from method rx.Observable.toMultimap
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8965 (Lrx/internal/operators/OperatorToMultimap;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToMultimap', referenced from method rx.Observable.toMultimap
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8965 (Lrx/internal/operators/OperatorToMultimap;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Single', referenced from method rx.Observable.toSingle
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8849 (Lrx/Single;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToObservableSortedList', referenced from method rx.Observable.toSortedList
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8967 (Lrx/internal/operators/OperatorToObservableSortedList;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToObservableSortedList', referenced from method rx.Observable.toSortedList
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8967 (Lrx/internal/operators/OperatorToObservableSortedList;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToObservableSortedList', referenced from method rx.Observable.toSortedList
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8967 (Lrx/internal/operators/OperatorToObservableSortedList;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorToObservableSortedList', referenced from method rx.Observable.toSortedList
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8967 (Lrx/internal/operators/OperatorToObservableSortedList;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.Subscriber.onStart, referenced from method rx.Observable.unsafeSubscribe
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 64749: Lrx/Subscriber;.onStart ()V
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.exceptions.Exceptions.throwIfFatal, referenced from method rx.Observable.unsafeSubscribe
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve static method 64758: Lrx/exceptions/Exceptions;.throwIfFatal (Ljava/lang/Throwable;)V
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x71 at 0x0016
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorUnsubscribeOn', referenced from method rx.Observable.unsubscribeOn
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8968 (Lrx/internal/operators/OperatorUnsubscribeOn;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWindowWithSize', referenced from method rx.Observable.window
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8971 (Lrx/internal/operators/OperatorWindowWithSize;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWindowWithTime', referenced from method rx.Observable.window
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8973 (Lrx/internal/operators/OperatorWindowWithTime;) in Lrx/Observable;
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.149 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWindowWithObservable', referenced from method rx.Observable.window
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8969 (Lrx/internal/operators/OperatorWindowWithObservable;) in Lrx/Observable;
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWindowWithStartEndObservable', referenced from method rx.Observable.window
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8972 (Lrx/internal/operators/OperatorWindowWithStartEndObservable;) in Lrx/Observable;
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func0;)
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWindowWithObservableFactory', referenced from method rx.Observable.window
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8970 (Lrx/internal/operators/OperatorWindowWithObservableFactory;) in Lrx/Observable;
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorWithLatestFrom', referenced from method rx.Observable.withLatestFrom
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8974 (Lrx/internal/operators/OperatorWithLatestFrom;) in Lrx/Observable;
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.internal.operators.OperatorZipIterable', referenced from method rx.Observable.zipWith
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve new-instance 8976 (Lrx/internal/operators/OperatorZipIterable;) in Lrx/Observable;
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x22 at 0x0000
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/functions/Func2;)
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd0f at 0x02 in Lrx/Observable;.combineLatest
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd10 at 0x02 in Lrx/Observable;.defer
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd14 at 0x02 in Lrx/Observable;.from
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd13 at 0x02 in Lrx/Observable;.fromCallable
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd24 at 0x06 in Lrx/Observable;.interval
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd48 at 0x02 in Lrx/Observable;.mapNotification
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd17 at 0x32 in Lrx/Observable;.range
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$3; interface 8866 'Lrx/functions/Func2;'
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$3;' failed
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb43 at 0x02 in Lrx/Observable;.sequenceEqual
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfdab at 0x1f in Lrx/Observable;.subscribe
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd23 at 0x02 in Lrx/Observable;.timer
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd27 at 0x02 in Lrx/Observable;.using
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd9a at 0x29 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd99 at 0x26 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd98 at 0x22 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd97 at 0x1e in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd96 at 0x1b in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd95 at 0x18 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd94 at 0x15 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd93 at 0x12 in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd92 at 0x0f in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd9a at 0x0f in Lrx/Observable;.zip
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd28 at 0x02 in Lrx/Observable;.all
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2d at 0x02 in Lrx/Observable;.buffer
01-24 22:52:24.159 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2f at 0x09 in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2f at 0x0a in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2f at 0x07 in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2b at 0x02 in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2e at 0x02 in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd2c at 0x04 in Lrx/Observable;.buffer
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd30 at 0x02 in Lrx/Observable;.cast
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$5; interface 8866 'Lrx/functions/Func2;'
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$5;' failed
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb49 at 0x02 in Lrx/Observable;.collect
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd65 at 0x07 in Lrx/Observable;.collect
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3f at 0x1e in Lrx/Observable;.concatMapEager
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd33 at 0x02 in Lrx/Observable;.debounce
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd32 at 0x02 in Lrx/Observable;.debounce
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd34 at 0x02 in Lrx/Observable;.delay
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd35 at 0x06 in Lrx/Observable;.delay
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd35 at 0x02 in Lrx/Observable;.delay
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd11 at 0x06 in Lrx/Observable;.delaySubscription
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd12 at 0x02 in Lrx/Observable;.delaySubscription
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd37 at 0x02 in Lrx/Observable;.distinct
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd39 at 0x02 in Lrx/Observable;.distinctUntilChanged
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x07 in Lrx/Observable;.doOnCompleted
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x02 in Lrx/Observable;.doOnEach
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x07 in Lrx/Observable;.doOnEach
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x07 in Lrx/Observable;.doOnError
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x07 in Lrx/Observable;.doOnNext
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3c at 0x02 in Lrx/Observable;.doOnRequest
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3d at 0x02 in Lrx/Observable;.doOnSubscribe
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3b at 0x07 in Lrx/Observable;.doOnTerminate
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd3e at 0x02 in Lrx/Observable;.doOnUnsubscribe
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd40 at 0x02 in Lrx/Observable;.elementAt
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd41 at 0x02 in Lrx/Observable;.elementAtOrDefault
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd29 at 0x03 in Lrx/Observable;.exists
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd42 at 0x02 in Lrx/Observable;.filter
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd43 at 0x02 in Lrx/Observable;.finallyDo
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd49 at 0x02 in Lrx/Observable;.flatMap
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd49 at 0x02 in Lrx/Observable;.flatMap
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd44 at 0x02 in Lrx/Observable;.groupBy
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd45 at 0x02 in Lrx/Observable;.groupBy
01-24 22:52:24.169 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd15 at 0x07 in Lrx/Observable;.groupJoin
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd16 at 0x07 in Lrx/Observable;.join
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd47 at 0x02 in Lrx/Observable;.map
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd4e at 0x0d in Lrx/Observable;.observeOn
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd4f at 0x02 in Lrx/Observable;.onBackpressureBuffer
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd50 at 0x02 in Lrx/Observable;.onBackpressureBuffer
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd52 at 0x02 in Lrx/Observable;.onBackpressureDrop
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd56 at 0x02 in Lrx/Observable;.onErrorResumeNext
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd55 at 0x02 in Lrx/Observable;.onErrorResumeNext
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd57 at 0x02 in Lrx/Observable;.onErrorReturn
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd58 at 0x02 in Lrx/Observable;.onExceptionResumeNext
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$16; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$16;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb05 at 0x02 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$17; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$17;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb08 at 0x02 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$18; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$18;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb0b at 0x11 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$19; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$19;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb0e at 0x02 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$21; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$21;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb17 at 0x06 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Failed resolving Lrx/Observable$22; interface 8864 'Lrx/functions/Func0;'
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$22;' failed
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb1a at 0x02 in Lrx/Observable;.replay
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd61 at 0x06 in Lrx/Observable;.retry
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd63 at 0x02 in Lrx/Observable;.sample
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd62 at 0x02 in Lrx/Observable;.sample
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd64 at 0x02 in Lrx/Observable;.scan
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd66 at 0x02 in Lrx/Observable;.scan
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd69 at 0x02 in Lrx/Observable;.singleOrDefault
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd6b at 0x02 in Lrx/Observable;.skip
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd6e at 0x02 in Lrx/Observable;.skip
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd6c at 0x02 in Lrx/Observable;.skipLast
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd6d at 0x02 in Lrx/Observable;.skipLast
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd6f at 0x02 in Lrx/Observable;.skipUntil
01-24 22:52:24.179 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd70 at 0x06 in Lrx/Observable;.skipWhile
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$26; (8850)
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$26;' failed
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb2c at 0x02 in Lrx/Observable;.subscribe
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$30; (8850)
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$30;' failed
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb3f at 0x0d in Lrx/Observable;.subscribe
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$27; (8850)
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$27;' failed
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb30 at 0x0c in Lrx/Observable;.subscribe
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$28; (8850)
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$28;' failed
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb34 at 0x16 in Lrx/Observable;.subscribe
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Unable to resolve superclass of Lrx/Observable$29; (8850)
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Link of class 'Lrx/Observable$29;' failed
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfb38 at 0x20 in Lrx/Observable;.subscribe
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd72 at 0x11 in Lrx/Observable;.subscribeOn
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd74 at 0x02 in Lrx/Observable;.switchIfEmpty
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd75 at 0x02 in Lrx/Observable;.take
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7a at 0x02 in Lrx/Observable;.take
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd76 at 0x15 in Lrx/Observable;.takeLast
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd78 at 0x06 in Lrx/Observable;.takeLast
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd79 at 0x02 in Lrx/Observable;.takeLast
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7b at 0x02 in Lrx/Observable;.takeUntil
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7c at 0x02 in Lrx/Observable;.takeUntil
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7d at 0x02 in Lrx/Observable;.takeWhile
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7e at 0x02 in Lrx/Observable;.throttleFirst
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd7f at 0x02 in Lrx/Observable;.timeInterval
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd80 at 0x06 in Lrx/Observable;.timeout
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd81 at 0x0c in Lrx/Observable;.timeout
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd82 at 0x02 in Lrx/Observable;.timestamp
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd83 at 0x06 in Lrx/Observable;.toMap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd83 at 0x02 in Lrx/Observable;.toMap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd84 at 0x02 in Lrx/Observable;.toMap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd85 at 0x06 in Lrx/Observable;.toMultimap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd85 at 0x02 in Lrx/Observable;.toMultimap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd86 at 0x02 in Lrx/Observable;.toMultimap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd87 at 0x02 in Lrx/Observable;.toMultimap
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfce6 at 0x06 in Lrx/Observable;.toSingle
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd89 at 0x04 in Lrx/Observable;.toSortedList
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd89 at 0x02 in Lrx/Observable;.toSortedList
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8a at 0x04 in Lrx/Observable;.toSortedList
01-24 22:52:24.189 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8a at 0x02 in Lrx/Observable;.toSortedList
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8b at 0x02 in Lrx/Observable;.unsubscribeOn
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8e at 0x02 in Lrx/Observable;.window
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd90 at 0x08 in Lrx/Observable;.window
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8c at 0x02 in Lrx/Observable;.window
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8f at 0x02 in Lrx/Observable;.window
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd8d at 0x02 in Lrx/Observable;.window
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd91 at 0x02 in Lrx/Observable;.withLatestFrom
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: DexOpt: unable to opt direct call 0xfd9b at 0x02 in Lrx/Observable;.zipWith
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: Exception Ljava/lang/NoClassDefFoundError; thrown while initializing Lrx/Observable;
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken E/dalvikvm: Could not find class 'rx.Subscriber', referenced from method com.example.bitcoiner.printchicken.util.SearchUtil.TextViewTextOnSubscribe.call
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve check-cast 8850 (Lrx/Subscriber;) in Lcom/example/bitcoiner/printchicken/util/SearchUtil/TextViewTextOnSubscribe;
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x1f at 0x0000
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to find class referenced in signature (Lrx/Subscriber;)
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Could not find method rx.Subscriber.add, referenced from method com.example.bitcoiner.printchicken.util.SearchUtil.TextViewTextOnSubscribe.call
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: VFY: unable to resolve virtual method 64744: Lrx/Subscriber;.add (Lrx/Subscription;)V
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/dalvikvm: VFY: replacing opcode 0x6e at 0x0012
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken I/dalvikvm: Rejecting re-init on previously-failed class Lrx/Observable; v=0x0
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken D/AndroidRuntime: Shutting down VM
01-24 22:52:24.199 4871-4871/com.example.bitcoiner.printchicken W/dalvikvm: threadid=1: thread exiting with uncaught exception (group=0x417c7d58)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: FATAL EXCEPTION: main
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: Process: com.example.bitcoiner.printchicken, PID: 4871
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: java.lang.NoClassDefFoundError: rx/Observable
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at com.example.bitcoiner.printchicken.util.SearchUtil.RxTextView.textChanges(RxTextView.java:17)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at com.example.bitcoiner.printchicken.ui.activity.SearchActivity.onCreate(SearchActivity.java:180)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.Activity.performCreate(Activity.java:5246)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2165)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2250)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.ActivityThread.access$900(ActivityThread.java:141)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1213)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.os.Looper.loop(Looper.java:136)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5072)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at java.lang.reflect.Method.invokeNative(Native Method)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at java.lang.reflect.Method.invoke(Method.java:515)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:609)
01-24 22:52:24.209 4871-4871/com.example.bitcoiner.printchicken E/AndroidRuntime: at dalvik.system.NativeStart.main(Native Method)
01-24 22:52:47.559 4871-4877/com.example.bitcoiner.printchicken I/jdwp: Ignoring second debugger -- accepting and dropping
01-24 22:55:00.259 4871-4877/com.example.bitcoiner.printchicken I/jdwp: Ignoring second debugger -- accepting and dropping
01-24 22:55:00.989 4871-4877/com.example.bitcoiner.printchicken I/jdwp: Ignoring second debugger -- accepting and dropping
01-24 22:55:01.729 4871-4877/com.example.bitcoiner.printchicken I/jdwp: Ignoring second debugger -- accepting and dropping

I get the same exception when mocking a RealmObject with Mockito

i got the same issue, is there any alternative solution?

@santoshgistto Please provide more details, including version of Realm.

@kneth
Realm Java 1.0.1
error : java.lang.NoClassDefFoundError: rx.Observable

i am using the firebase

@mpost @santoshgistto So the workaround here doesn't help? https://realm.io/docs/java/latest/#jackson-databind

fixed thank you :+1:

Cool! it works 👍

Was this page helpful?
0 / 5 - 0 ratings

Related issues

David-Kuper picture David-Kuper  ·  3Comments

wezley98 picture wezley98  ·  3Comments

bryanspano picture bryanspano  ·  3Comments

yuwu picture yuwu  ·  3Comments

pawlo2102 picture pawlo2102  ·  3Comments