UnsatisfiedLinkError: Couldn't load crashlytics from loader dalvik.system.PathClassLoader

我是研究僧i 提交于 2019-12-06 14:29:44

问题


After add two lines in build.gradle I have the next exception:

java.lang.UnsatisfiedLinkError: Couldn't load crashlytics from loader dalvik.system.PathClassLoader[dexPath=/data/app/com.creardigitalm.samsungclub-1.apk,libraryPath=/data/app-lib/com.creardigitalm.samsungclub-1]: findLibrary returned null

  1. I add the dependency to my project-level build.gradle (apply plugin: 'com.google.gms.google-services'):

apply plugin: 'com.android.application'

apply plugin: 'com.google.gms.google-services'

apply plugin: 'io.fabric'

  1. I add the plugin to my app-level build.gradle (classpath 'com.google.gms:google-services:1.5.0-beta2'):
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:1.5.0-beta2'
    }
}

Fabric & google-services enter somehow in conflict and I do not know how to solve

来源:https://stackoverflow.com/questions/33660282/unsatisfiedlinkerror-couldnt-load-crashlytics-from-loader-dalvik-system-pathcl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!