Home > Enterprise >  NDK not found in project file
NDK not found in project file

Time:09-05

Execution failed for task ':app:stripDebugDebugSymbols'. > NDK at /home/pc84/Android/Sdk/ndk-bundle did not have a source.properties filestrong text

CodePudding user response:

first go to  project level gradle 
=> gradle-wrapper.propeties
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip


then in build.gradle
 => in dependencies  change below line 
classpath 'com.android.tools.build:gradle:7.1.3'

CodePudding user response:

try this, Add ndkVersion in build.gradle

apply plugin: 'com.android.application'

android {
   

    ndkVersion '21.4.7075529' // check version depends on your android and  project
  • Related