java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader

前端 未结 17 1831
耶瑟儿~
耶瑟儿~ 2020-11-29 22:21

Is there someone who had experience with this error?

java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file \"/data/app/org.swig         


        
17条回答
  •  时光取名叫无心
    2020-11-29 22:31

    This helped me. Sharing it for someone who might come up with same issue.

    android {
        ....
        defaultConfig {
            ....
            ndk {
                abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
            }
        }
    }
    

提交回复
热议问题