I have a library project projectA, projectA needs to use a third library thirdparty.aar
and thirdparty1.jar
. Library projectA will be exported as sdk with extension file name aar
(projectA.aar
).
I create a sample project to test my projectA.aar
. thirdparty1.jar
works fine in my projectA.aar
, but thirdparty.aar
doesn't work in my sample project even sample project has compile error.
can't not resolve package for thirdparty.aar
Anyone know how to import a thirdparty.aar
file into my library project like importing jar file(jar file works file), and package this thirdparty.aar
with my own library.
Thanks very much.