I'm deploying an aar lib that contains two native libs and two jar wrappers. To "hide" the wrappers I imported this jars to my local maven repository with mvn install:install-file -Dfile=myjar1.jar -DgroupId=com.my.package -DartifactId=engine -Dversion=1.1.1 -Dpackaging=jar and reference it inside the lib project. But if I don't reference this wrapper jars in the application project too I just found NoClassDefFoundError when try to use any class of this jars. Anybody know how can I do solve that avoiding to populate and add dependencies of this jars in the app project?
Asked
Active
Viewed 86 times
0
-
1https://stackoverflow.com/questions/36916991/transitive-dependencies-for-local-aar-library – Daniel Nugent Aug 09 '17 at 23:00
-
Possible duplicate of [Transitive dependencies for local aar library](https://stackoverflow.com/questions/36916991/transitive-dependencies-for-local-aar-library) – larsgrefer Aug 22 '17 at 14:32