I am currently working on an android library, which I will try to use in later applications. I am using android studio as my main IDE, and I noticed that I can generate two types of .AAR files, one is Debug and one is release. And I have Questions regarding them.
Q1: whats the difference between them (debug, release)?
Q2: is the release type more obfuscated than the debug type? If not, how do I secure my library such that it can't be reversed engineered(basically how do I hide my code so that it wont be easy to get access to it)?
Thank you.