user8140110
user8140110

Reputation: 31

How to fix NDK build error in Android Studio

I want build my project from Android Studio into my phone, but when I hit the run button in Android Studio, it shows me this error:

Error:Execution failed for task ':app:compileDebugNdk'.
> Error: Your project contains C++ files but it is not using a supported native build system.
Consider using CMake or ndk-build integration with the stable Android Gradle plugin:
 https://developer.android.com/studio/projects/add-native-code.html
or use the experimental plugin:
 http://tools.android.com/tech-docs/new-build-system/gradle-experimental.

Build.Gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "25.0.2"

    defaultConfig {
        applicationId "com.companyname.gamename"
        minSdkVersion 14
        targetSdkVersion 23

        ndk {
            moduleName "player_shared"
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/dagger-1.2.2.jar')
    compile files('libs/javax.inject-1.jar')
    compile files('libs/nineoldandroids-2.4.0.jar')
    compile files('libs/support-v4-19.0.1.jar')
}

How can I fix it?

Upvotes: 0

Views: 1485

Answers (2)

Saubhagya Srivastava
Saubhagya Srivastava

Reputation: 174

Paste this in file build.gradle above buildTypes{}:

sourceSets {
    main {
        jni.srcDirs = []
    }
}

buildTypes {
}

Upvotes: 0

AskNilesh
AskNilesh

Reputation: 69689

Paste the below code in your build.gradle file (Module:app):

sourceSets {
    main {
        jni.srcDirs = []
    }
}

buildTypes{
}

Upvotes: 1

Related Questions