You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a library A which is published via Bintray and all of its dependencies which are remote dependencies (e.g. maven or jcenter) are compiled and accessed as usual by any app hosting my library.
However I recently included a local sub-library B as an aar file into library A. and it cannot be seen by the host app C. It is either not seen at all (when I include B into A as a project) or it seen and compiles but when in runtime I try to access a class of library B that host app C crashes and I get such errors:
java.lang.NoClassDefFoundError: Failed resolution of: ***/AuthorizationService;
What is the syntax for the library B to force Bintray to include in the published package even its local sub libraries?
The text was updated successfully, but these errors were encountered:
I have a library A which is published via Bintray and all of its dependencies which are remote dependencies (e.g. maven or jcenter) are compiled and accessed as usual by any app hosting my library.
However I recently included a local sub-library B as an aar file into library A. and it cannot be seen by the host app C. It is either not seen at all (when I include B into A as a project) or it seen and compiles but when in runtime I try to access a class of library B that host app C crashes and I get such errors:
java.lang.NoClassDefFoundError: Failed resolution of: ***/AuthorizationService;
What is the syntax for the library B to force Bintray to include in the published package even its local sub libraries?
The text was updated successfully, but these errors were encountered: