Bandhook-Kotlin
Bandhook-Kotlin copied to clipboard
Unresolved reference: last_fm_api_key
I'm trying to build this via ./gradlew clean build and I'm getting following error : `Download https://dl.google.com/dl/android/maven2/com/android/support/support-annotations/27.0.2/support-annotations-27.0.2.jar Download https://jcenter.bintray.com/com/google/code/gson/gson/2.7/gson-2.7.jar Download https://jcenter.bintray.com/org/jetbrains/anko/anko-sdk15/0.10.4/anko-sdk15-0.10.4.jar Download https://jcenter.bintray.com/org/jetbrains/anko/anko-design/0.10.4/anko-design-0.10.4.jar Download https://dl.google.com/dl/android/maven2/android/arch/lifecycle/common/1.0.3/common-1.0.3.jar e: /Users/plasta/Desktop/Bandhook-Kotlin-master/app/src/main/java/com/antonioleiva/bandhookkotlin/di/DataModule.kt: (28, 100): Unresolved reference: last_fm_api_key
FAILURE: Build failed with an exception.
- What went wrong: Execution failed for task ':app:compileDebugKotlin'.
Compilation error. See log for more details
-
Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
-
Get more help at https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0. See https://docs.gradle.org/4.5.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 2m 27s `
As @antoniolg specifies in the readme.MD, you need to add your own key:
https://github.com/antoniolg/Bandhook-Kotlin/#how-to-use-this-project
You should go to http://www.lastfm.es/api and create this file with this content:
<string name="last_fm_api_key">YOUR_KEY</string>
in this route
app/src/main/res/values/api_key.xml.
Hope it helps!