0

I trying to publish an Android library with JitPack as described at https://jitpack.io/docs/ANDROID/ and https://developer.android.com/studio/build/maven-publish-plugin#groovy. The JitPack build logs show that everything is fine, I can import it to my project. But after building the project I can't access the library code. I literally can't see it, even in External Libraries.

Andrew
  • 33
  • 3

1 Answers1

1

@Pawel's method work for me: minifyEnabled false in library build.gradle do the trick!

Alesh17
  • 366
  • 1
  • 7
  • 1
    OMG, @Alesh17 you are my savior . I even didn't think about that. Thank you so much! – neo Jun 15 '23 at 05:59