How To Get A Jar From Github Project?
I want to use kSoap2-android library from the official site http://simpligility.github.io/ksoap2-android/index.html, but I don't know how can I make a jar from the github project h
Solution 1:
You can follow this step by step procedure to get .jar:
- Click the Clone or download button, and click Download ZIP.
- Extract the downloaded zip file to a folder somewhere.
- Go into the folder that contains the src directory and the gradlew files
- Shift-right-click, click Open command window here
- Enter gradlew.bat setupDecompWorkspace
- Enter gradlew.bat shadowJar
- The JAR file is in the build folder, inside the libs folder.
Hope this helps you.
Post a Comment for "How To Get A Jar From Github Project?"