Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jniLibs are not extended in gradle

Tags:

android

gradle

An android application have two modules and one depend on the other, and the common used jars and native libraries are defined in parent-project, while the child-project add it as a dependency in the build.gradle:

enter image description here

However after I build the child-project I found that the jars put insiede the parent-project are copied to the apk, while the native libraries are not. Only the native libraries inside the child-project are packaged to the apk.

What's going on?

With Android studio 1.0.2.

like image 325
hguser Avatar asked Jan 31 '15 03:01

hguser


1 Answers

I had the same issue. The problem was, in my parent (library) project's build.config's sourceSets I've added the following:

jniLibs.srcDirs = ['jniLibs']
jni.srcDirs = []

This didn't work, .so files were missing from the child project's APK, so I've replaced it with:

jni.srcDirs = []
jniLibs.srcDir 'src/main/jniLibs'

With this method, everything is fine.

like image 117
Szörényi Ádám Avatar answered Sep 30 '22 01:09

Szörényi Ádám