NoSuchFieldError : PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING











up vote
0
down vote

favorite












I'm facing java.lang.NoSuchFieldError error while using Firebase products.



App crashes randomly, once per several launches and I don't see any visible reasons for that.



Crashlytics recognizes as two separate issues:



First:



Fatal Exception: java.lang.NoSuchFieldError
No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-1/base.apk:classes2.dex)
com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source)
com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source)
android.os.HandlerThread.run (HandlerThread.java:61)


Second:



Fatal Exception: java.lang.NoSuchFieldError
No static field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-rCklgf0d6JLM3ymH4dG31Q==/base.apk:classes3.dex)
com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source:7)
com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source:4)
android.os.HandlerThread.run (HandlerThread.java:65)


I wonder what could be the causing reason, at least what library.



Any help appreciated.



My build.gradle file (project level)



buildscript {
ext.kotlin_version = '1.2.71'
ext.anko_version='0.10.6'
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.26.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


My build.gradle - app file.



apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.myjob.exchange"
minSdkVersion 17
targetSdkVersion 28
versionCode 10
versionName "1.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

implementation 'com.android.support:multidex:1.0.3'

// Anko
implementation "org.jetbrains.anko:anko:$anko_version"

// Firebase
implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
implementation 'com.google.firebase:firebase-firestore:17.1.0'
implementation 'com.facebook.android:facebook-android-sdk:4.38.1'

implementation 'com.google.firebase:firebase-messaging:17.3.4'

//Google Play
implementation 'com.google.android.gms:play-services-places:16.0.0'

//Crashlytics
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'

// Image slider
implementation "com.android.support:support-v4:+"
implementation 'com.squareup.picasso:picasso:2.5.0'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.daimajia.slider:library:1.1.5@aar'

// Retrofit library
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.4.0'

}

apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '28.0.0'
}
}

}
}









share|improve this question


























    up vote
    0
    down vote

    favorite












    I'm facing java.lang.NoSuchFieldError error while using Firebase products.



    App crashes randomly, once per several launches and I don't see any visible reasons for that.



    Crashlytics recognizes as two separate issues:



    First:



    Fatal Exception: java.lang.NoSuchFieldError
    No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-1/base.apk:classes2.dex)
    com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source)
    com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source)
    android.os.HandlerThread.run (HandlerThread.java:61)


    Second:



    Fatal Exception: java.lang.NoSuchFieldError
    No static field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-rCklgf0d6JLM3ymH4dG31Q==/base.apk:classes3.dex)
    com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source:7)
    com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source:4)
    android.os.HandlerThread.run (HandlerThread.java:65)


    I wonder what could be the causing reason, at least what library.



    Any help appreciated.



    My build.gradle file (project level)



    buildscript {
    ext.kotlin_version = '1.2.71'
    ext.anko_version='0.10.6'
    repositories {
    google()
    jcenter()
    maven {
    url 'https://maven.fabric.io/public'
    }
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.google.gms:google-services:4.2.0'
    classpath 'io.fabric.tools:gradle:1.26.1'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    }
    }

    allprojects {
    repositories {
    google()
    jcenter()
    maven {
    url 'https://maven.google.com/'
    }
    }
    }

    task clean(type: Delete) {
    delete rootProject.buildDir
    }


    My build.gradle - app file.



    apply plugin: 'com.android.application'
    apply plugin: 'io.fabric'

    apply plugin: 'kotlin-android'

    apply plugin: 'kotlin-android-extensions'

    android {
    compileSdkVersion 28
    defaultConfig {
    applicationId "com.myjob.exchange"
    minSdkVersion 17
    targetSdkVersion 28
    versionCode 10
    versionName "1.1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
    }
    buildTypes {
    release {
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    }
    }

    dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:design:28.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

    implementation 'com.android.support:multidex:1.0.3'

    // Anko
    implementation "org.jetbrains.anko:anko:$anko_version"

    // Firebase
    implementation 'com.google.firebase:firebase-core:16.0.5'
    implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
    implementation 'com.google.firebase:firebase-firestore:17.1.0'
    implementation 'com.facebook.android:facebook-android-sdk:4.38.1'

    implementation 'com.google.firebase:firebase-messaging:17.3.4'

    //Google Play
    implementation 'com.google.android.gms:play-services-places:16.0.0'

    //Crashlytics
    implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'

    // Image slider
    implementation "com.android.support:support-v4:+"
    implementation 'com.squareup.picasso:picasso:2.5.0'
    implementation 'com.nineoldandroids:library:2.4.0'
    implementation 'com.daimajia.slider:library:1.1.5@aar'

    // Retrofit library
    implementation 'com.squareup.retrofit2:retrofit:2.3.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.4.0'

    }

    apply plugin: 'com.google.gms.google-services'
    com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

    configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    def requested = details.requested
    if (requested.group == 'com.android.support') {
    if (!requested.name.startsWith("multidex")) {
    details.useVersion '28.0.0'
    }
    }

    }
    }









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm facing java.lang.NoSuchFieldError error while using Firebase products.



      App crashes randomly, once per several launches and I don't see any visible reasons for that.



      Crashlytics recognizes as two separate issues:



      First:



      Fatal Exception: java.lang.NoSuchFieldError
      No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-1/base.apk:classes2.dex)
      com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source)
      com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source)
      android.os.HandlerThread.run (HandlerThread.java:61)


      Second:



      Fatal Exception: java.lang.NoSuchFieldError
      No static field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-rCklgf0d6JLM3ymH4dG31Q==/base.apk:classes3.dex)
      com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source:7)
      com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source:4)
      android.os.HandlerThread.run (HandlerThread.java:65)


      I wonder what could be the causing reason, at least what library.



      Any help appreciated.



      My build.gradle file (project level)



      buildscript {
      ext.kotlin_version = '1.2.71'
      ext.anko_version='0.10.6'
      repositories {
      google()
      jcenter()
      maven {
      url 'https://maven.fabric.io/public'
      }
      }
      dependencies {
      classpath 'com.android.tools.build:gradle:3.2.1'
      classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
      classpath 'com.google.gms:google-services:4.2.0'
      classpath 'io.fabric.tools:gradle:1.26.1'
      // NOTE: Do not place your application dependencies here; they belong
      // in the individual module build.gradle files
      }
      }

      allprojects {
      repositories {
      google()
      jcenter()
      maven {
      url 'https://maven.google.com/'
      }
      }
      }

      task clean(type: Delete) {
      delete rootProject.buildDir
      }


      My build.gradle - app file.



      apply plugin: 'com.android.application'
      apply plugin: 'io.fabric'

      apply plugin: 'kotlin-android'

      apply plugin: 'kotlin-android-extensions'

      android {
      compileSdkVersion 28
      defaultConfig {
      applicationId "com.myjob.exchange"
      minSdkVersion 17
      targetSdkVersion 28
      versionCode 10
      versionName "1.1.0"
      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      multiDexEnabled true
      }
      buildTypes {
      release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
      }
      }
      }

      dependencies {
      implementation fileTree(dir: 'libs', include: ['*.jar'])
      implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support.constraint:constraint-layout:1.1.3'
      implementation 'com.android.support:design:28.0.0'
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'com.android.support.test:runner:1.0.2'
      androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

      implementation 'com.android.support:multidex:1.0.3'

      // Anko
      implementation "org.jetbrains.anko:anko:$anko_version"

      // Firebase
      implementation 'com.google.firebase:firebase-core:16.0.5'
      implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
      implementation 'com.google.firebase:firebase-firestore:17.1.0'
      implementation 'com.facebook.android:facebook-android-sdk:4.38.1'

      implementation 'com.google.firebase:firebase-messaging:17.3.4'

      //Google Play
      implementation 'com.google.android.gms:play-services-places:16.0.0'

      //Crashlytics
      implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'

      // Image slider
      implementation "com.android.support:support-v4:+"
      implementation 'com.squareup.picasso:picasso:2.5.0'
      implementation 'com.nineoldandroids:library:2.4.0'
      implementation 'com.daimajia.slider:library:1.1.5@aar'

      // Retrofit library
      implementation 'com.squareup.retrofit2:retrofit:2.3.0'
      implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
      implementation 'com.squareup.okhttp3:logging-interceptor:3.4.0'

      }

      apply plugin: 'com.google.gms.google-services'
      com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

      configurations.all {
      resolutionStrategy.eachDependency { DependencyResolveDetails details ->
      def requested = details.requested
      if (requested.group == 'com.android.support') {
      if (!requested.name.startsWith("multidex")) {
      details.useVersion '28.0.0'
      }
      }

      }
      }









      share|improve this question













      I'm facing java.lang.NoSuchFieldError error while using Firebase products.



      App crashes randomly, once per several launches and I don't see any visible reasons for that.



      Crashlytics recognizes as two separate issues:



      First:



      Fatal Exception: java.lang.NoSuchFieldError
      No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-1/base.apk:classes2.dex)
      com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source)
      com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source)
      android.os.HandlerThread.run (HandlerThread.java:61)


      Second:



      Fatal Exception: java.lang.NoSuchFieldError
      No static field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.myjob.exchange-rCklgf0d6JLM3ymH4dG31Q==/base.apk:classes3.dex)
      com.google.android.gms.flags.FlagValueProvider.initialize (Unknown Source:7)
      com.google.android.gms.flags.FlagRegistry.initialize (Unknown Source:4)
      android.os.HandlerThread.run (HandlerThread.java:65)


      I wonder what could be the causing reason, at least what library.



      Any help appreciated.



      My build.gradle file (project level)



      buildscript {
      ext.kotlin_version = '1.2.71'
      ext.anko_version='0.10.6'
      repositories {
      google()
      jcenter()
      maven {
      url 'https://maven.fabric.io/public'
      }
      }
      dependencies {
      classpath 'com.android.tools.build:gradle:3.2.1'
      classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
      classpath 'com.google.gms:google-services:4.2.0'
      classpath 'io.fabric.tools:gradle:1.26.1'
      // NOTE: Do not place your application dependencies here; they belong
      // in the individual module build.gradle files
      }
      }

      allprojects {
      repositories {
      google()
      jcenter()
      maven {
      url 'https://maven.google.com/'
      }
      }
      }

      task clean(type: Delete) {
      delete rootProject.buildDir
      }


      My build.gradle - app file.



      apply plugin: 'com.android.application'
      apply plugin: 'io.fabric'

      apply plugin: 'kotlin-android'

      apply plugin: 'kotlin-android-extensions'

      android {
      compileSdkVersion 28
      defaultConfig {
      applicationId "com.myjob.exchange"
      minSdkVersion 17
      targetSdkVersion 28
      versionCode 10
      versionName "1.1.0"
      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      multiDexEnabled true
      }
      buildTypes {
      release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
      }
      }
      }

      dependencies {
      implementation fileTree(dir: 'libs', include: ['*.jar'])
      implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support.constraint:constraint-layout:1.1.3'
      implementation 'com.android.support:design:28.0.0'
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'com.android.support.test:runner:1.0.2'
      androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

      implementation 'com.android.support:multidex:1.0.3'

      // Anko
      implementation "org.jetbrains.anko:anko:$anko_version"

      // Firebase
      implementation 'com.google.firebase:firebase-core:16.0.5'
      implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
      implementation 'com.google.firebase:firebase-firestore:17.1.0'
      implementation 'com.facebook.android:facebook-android-sdk:4.38.1'

      implementation 'com.google.firebase:firebase-messaging:17.3.4'

      //Google Play
      implementation 'com.google.android.gms:play-services-places:16.0.0'

      //Crashlytics
      implementation 'com.crashlytics.sdk.android:crashlytics:2.9.5'

      // Image slider
      implementation "com.android.support:support-v4:+"
      implementation 'com.squareup.picasso:picasso:2.5.0'
      implementation 'com.nineoldandroids:library:2.4.0'
      implementation 'com.daimajia.slider:library:1.1.5@aar'

      // Retrofit library
      implementation 'com.squareup.retrofit2:retrofit:2.3.0'
      implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
      implementation 'com.squareup.okhttp3:logging-interceptor:3.4.0'

      }

      apply plugin: 'com.google.gms.google-services'
      com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true

      configurations.all {
      resolutionStrategy.eachDependency { DependencyResolveDetails details ->
      def requested = details.requested
      if (requested.group == 'com.android.support') {
      if (!requested.name.startsWith("multidex")) {
      details.useVersion '28.0.0'
      }
      }

      }
      }






      android firebase






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 at 11:38









      Александр Бабич

      7510




      7510
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          Found an answer in this post: https://blog.jakelee.co.uk/tokenrefresher-fatal-crash-when-using-firebaseui/



          Talking shortly - this fixed the issue:
          Update com.firebaseui:firebase-ui-auth dependency to 4.2.1 from 4.1.0






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430160%2fnosuchfielderror-prefer-highest-or-remote-version-no-force-staging%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote



            accepted










            Found an answer in this post: https://blog.jakelee.co.uk/tokenrefresher-fatal-crash-when-using-firebaseui/



            Talking shortly - this fixed the issue:
            Update com.firebaseui:firebase-ui-auth dependency to 4.2.1 from 4.1.0






            share|improve this answer

























              up vote
              0
              down vote



              accepted










              Found an answer in this post: https://blog.jakelee.co.uk/tokenrefresher-fatal-crash-when-using-firebaseui/



              Talking shortly - this fixed the issue:
              Update com.firebaseui:firebase-ui-auth dependency to 4.2.1 from 4.1.0






              share|improve this answer























                up vote
                0
                down vote



                accepted







                up vote
                0
                down vote



                accepted






                Found an answer in this post: https://blog.jakelee.co.uk/tokenrefresher-fatal-crash-when-using-firebaseui/



                Talking shortly - this fixed the issue:
                Update com.firebaseui:firebase-ui-auth dependency to 4.2.1 from 4.1.0






                share|improve this answer












                Found an answer in this post: https://blog.jakelee.co.uk/tokenrefresher-fatal-crash-when-using-firebaseui/



                Talking shortly - this fixed the issue:
                Update com.firebaseui:firebase-ui-auth dependency to 4.2.1 from 4.1.0







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 6 at 10:33









                Александр Бабич

                7510




                7510






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430160%2fnosuchfielderror-prefer-highest-or-remote-version-no-force-staging%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Contact image not getting when fetch all contact list from iPhone by CNContact

                    count number of partitions of a set with n elements into k subsets

                    A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks