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.
Asked
Active
Viewed 184 times
0
-
1Do you have minify enabled in your library? It might be stripping away all of your classes. – Pawel Dec 10 '21 at 19:40
-
Hi @Pawel! I turned off minifyEnabled on my library. – Andrew Dec 11 '21 at 10:48
1 Answers
1
@Pawel's method work for me: minifyEnabled false
in library build.gradle do the trick!

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