使用 gradle 构建 spotify 包装器后没有生成 aar 文件
no aar file generated after building spotify wrapper with gradle
我正在尝试从 udacity 课程开始开发 spotify 流媒体应用程序。但是我在执行这些步骤时遇到了问题:
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
除了最后一步,一切正常。该进程没有创建 build/outputs/aar 目录。我只看到 app\build 目录中的 3 个文件夹:
apk
lint-results-release-fatal_files
logs
就是这样。步骤来自:
https://github.com/kaaes/spotify-web-api-android/blob/master/README.md
问题已解决。我是来自我的应用程序文件夹的 运行 ".\gradlew assemble" 命令。 运行 克隆的 git 文件夹 ('spotify-web-api-android') 中的相同命令成功创建了 .aar 文件
我也被这个问题困住了。如果您的 android 目录中有 spotify web api 并且构建文件不会生成 aar 文件,只需从 android 的根目录复制 local.properties 文件将提供 SDK 位置的项目目录。如果不这样做,运行 来自网络 api 目录的上述命令将导致 git 尝试重新下载 SDK 只是为了编译该文件
我正在尝试从 udacity 课程开始开发 spotify 流媒体应用程序。但是我在执行这些步骤时遇到了问题:
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
除了最后一步,一切正常。该进程没有创建 build/outputs/aar 目录。我只看到 app\build 目录中的 3 个文件夹:
apk
lint-results-release-fatal_files
logs
就是这样。步骤来自:
https://github.com/kaaes/spotify-web-api-android/blob/master/README.md
问题已解决。我是来自我的应用程序文件夹的 运行 ".\gradlew assemble" 命令。 运行 克隆的 git 文件夹 ('spotify-web-api-android') 中的相同命令成功创建了 .aar 文件
我也被这个问题困住了。如果您的 android 目录中有 spotify web api 并且构建文件不会生成 aar 文件,只需从 android 的根目录复制 local.properties 文件将提供 SDK 位置的项目目录。如果不这样做,运行 来自网络 api 目录的上述命令将导致 git 尝试重新下载 SDK 只是为了编译该文件