[INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]

前端 未结 11 1467
灰色年华
灰色年华 2020-11-29 00:38

I have an issue with third party libraries that are imported to my project.

I read quite a lot of articles about that but do not get any information how properly han

11条回答
  •  既然无缘
    2020-11-29 01:08

    This is caused by a gradle dependency on some out-of-date thing which causes the error. Remove gradle dependencies until the error stops appearing. For me, it was:

    implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
    

    This line needed to be updated to a newer version such as:

    api group: 'commons-io', name: 'commons-io', version: '2.6'
    

提交回复
热议问题