Using AAR Files in Extensions

Greetings!

I’m currently working on creating an extension but have run into a bit of a challenge. Some dependencies I need only have .aar files available, not .jar files. I’m wondering

  • Is there a way to use .aar files directly in extensions?
  • Or, is there an efficient method to convert these .aar files to .jar files so they can be utilized for extension development?
1 Like

Currently, you can't directly use an aar file to develop extensions. You need to extract the classes.jar from the .aar file. Use any zip viewer application (e.x: Winrar) to unzip it.

Thanks @JEWEL i'll try

1 Like

Thanks @JEWEL it worked

1 Like

You're welcome :bouquet::bouquet::bouquet:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.