ExCamera icon indicating copy to clipboard operation
ExCamera copied to clipboard

Example project will not build

Open Artespecialist opened this issue 5 years ago • 1 comments

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"

Artespecialist avatar Apr 14 '21 23:04 Artespecialist

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

Deepak-GP avatar Mar 07 '23 11:03 Deepak-GP