I'm using android studio 1.5 and i'm creating general sdk library like paypal/facebook sdk, this plugin include 3rd party library like QRcode scanner,okhttp for networking. Once i include in these plugins inside custom library gradle file it's working fine in the same project structure, But when i try to include custom sdk library to other android application the above 3rd party plugins not included in the final custom library sdk so how can i build the custom android sdk library with 3rd party libraries.
© 2022 - 2024 — McMap. All rights reserved.
build.gradle
file, all the dependencies it uses will also be imported. But if you're exporting it as a jar, you'll need to include those 3rd party library jars separately or use some tool to include the jars in your own: https://mcmap.net/q/158571/-classpath-including-jar-within-a-jar – Rakes