Dali icon indicating copy to clipboard operation
Dali copied to clipboard

The application could not be installed: INSTALL_FAILED_NO_MATCHING_ABIS

Open AnthonyKoueik opened this issue 6 years ago • 1 comments

Installation did not succeed. The application could not be installed: INSTALL_FAILED_NO_MATCHING_ABIS Installation failed due to: 'null'

how can i fix this ?

AnthonyKoueik avatar Jan 14 '20 15:01 AnthonyKoueik

Add this into. your gradle(Main Module).

    defaultConfig {
        ...

        // add this
        ndk {
            abiFilters 'arm64-v8a', 'x86_64', "x86", "armeabi-v7a"
        }
    }

chanjungkim avatar Jun 12 '20 11:06 chanjungkim