When updating to Android Studio 0.4, which uses the android gradle plugin 0.7.0 and gradle 1.9, following error occurs:
org.gradle.api.internal.MissingMet
jniDir() has been replaced by jniFolders(). You can set it like this:
tasks.withType(com.android.build.gradle.tasks.PackageApplication) { pkgTask -> pkgTask.jniFolders = new HashSet() pkgTask.jniFolders.add(new File(projectDir, 'native-libs')) }
I found this solution in this discussion