I follow the Test the library steps
-
First, browse KKBOX Developer Website and create an developer account, and then create an app to get the client ID and client secret.
-
Then, create a file ClientInfo.kt in the SDK/openapi_android_developer_sdk/OpenAPIDeveloperLibraryClient/src/main/java/com/kkbox/openapideveloperlibraryclient directory and put your client id and client secret in it.
package com.kkbox.openapideveloperlibraryclient
object ClientInfo {
const val CLIENT_ID = "YOUR_CLIENT_ID"
const val CLIENT_SECRET = "YOUR_CLIENT_SECRET"
}
And Then follow the Build the library steps
cd SDK/openapi_android_developer_sdk
./gradlew assembleDebug
However, Android Studio complained about the following error: "Failed to resolve: com.kkbox:openapideveloper:1.0.0."
Does this library still work now?
I follow the Test the library steps
First, browse KKBOX Developer Website and create an developer account, and then create an app to get the client ID and client secret.
Then, create a file
ClientInfo.ktin theSDK/openapi_android_developer_sdk/OpenAPIDeveloperLibraryClient/src/main/java/com/kkbox/openapideveloperlibraryclientdirectory and put your client id and client secret in it.And Then follow the Build the library steps
cd SDK/openapi_android_developer_sdk ./gradlew assembleDebugHowever, Android Studio complained about the following error: "Failed to resolve: com.kkbox:openapideveloper:1.0.0."
Does this library still work now?