1837170582. Error: INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113

用android studio 3.4.0  

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.app_myapp"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
sourceSets{
    main{
        jniLibs.srcDirs=['libs']
    }
}

启动时,用PC机上的模拟器出现以下问题,是因为代码中使用了ARM的指令,而PC上不支持ARM的,所以出现这个错误,要换成用开发板来模拟。才能OK。

1837170582. Error: INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113