I'm trying to start developing the spotify streamer app from a course in udacity. But i'm having trouble while following these steps:
This project is built using Gradle:
Clone the repository: git clone https://github.com/kaaes/spotify-web-api-android.git
Build: ./gradlew assemble
Grab the aar that can be found in build/outputs/aar/spotify-web-api-android-0.1.0.aar and put it in the libs folder in your application
Everything worked except the last step. The process didnt create a build/outputs/aar directory. All I see are 3 folders inside my app\build directory:
apk
lint-results-release-fatal_files
logs
and thats it. The steps are from :
https://github.com/kaaes/spotify-web-api-android/blob/master/README.md
Problem solved. I was running the ".\gradlew assemble" command from my application folder. Running the same command from the cloned git folder ('spotify-web-api-android') created the .aar file successfully