0

I Have a library that I've made, it imports the "androidx.biometric:biometric:1.0.0" the library is a wrapper for Android biometric. I've made an aar file and imported it to my project.

When I try to access the method in my library, it says that it can't find supertype "androidx.biometric" altough my library has it like this: api 'androidx.biometric:biometric:1.0.0'

If I'm adding the same dependancy in my project, it success. (api 'androidx.biometric:biometric:1.0.0') but the whole idea is that my aar library will take care of that.

Is there any fix for this? am I doing something wrong here?

nirh216
  • 335
  • 1
  • 6
  • 15

1 Answers1

0

I can not comment on your question so I am just posting it here. Please check the link below it might answer your question: Generate AAR file with all dependencies

Md. Kamrul Amin
  • 1,870
  • 1
  • 11
  • 33
  • it's suggesting to remove dependencies from the library.. I want them inside my library. Thanks for the effort! :) – nirh216 Feb 10 '20 at 14:01