NDK integration in Android Studio Error

I am using Android studio version 1.3.1 and trying to integrate NDK by going to local.proprties and writing ndk.dir = and I got this error

Error: execution completed for task ': tesstwo: compileReleaseNdk'.

Error: NDK integration is deprecated in the current plugin. Try a new experimental plugin. See http://tools.android.com/tech-docs/new-build-system/gradle-experimental for more details. Set "android.useDeprecatedNdk = true" to gradle.properties to continue using the current NDK integration.

Please help me solve this problem.

+8
android android-studio android-ndk
source share
1 answer

Add this to your build.gradle:

android{ sourceSets { main { jni.srcDirs = [] } } } 
+14
source share

All Articles