Example project will not build
I cloned the repository and I am trying to test the code, but the project won't compile. The error that I get is :" No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi"
It worked after updating below two things.
Update the classpath of gradle tools to 4.0.1 under project build.gradle file.
dependencies { classpath "com.android.tools.build:gradle:4.0.1" classpath 'com.novoda:bintray-release:0.9.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }
Also update the distributionURL of gradle to 6.1.1 as follows under gradle-wrapper.properties file: distributionUrl=https://services.gradle.org/distributions/gradle-6.1.1-bin.zip