在AndroidStudio中引用SpotifyWebApi

时间:2015-07-08 00:22:04

标签: android

我试图在AndroidStudio中引用SpotifyWebApi。我正在使用此处的说明

https://github.com/kaaes/spotify-web-api-android/blob/master/README.md

但是我收到了错误 错误:无法解决:: spotify-web-api-android-0.1.0:

当我尝试构建时。

我该如何解决这个问题?我有AndroidStudio 1.2.2

这是我的模块:app build.gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "app.com.example.android.spotifystreamerstage1"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    compile(name:'spotify-web-api-android-0.1.0', ext:'aar')
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.squareup.okhttp:okhttp:2.2.0'

    // Other dependencies your app might use
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
}

1 个答案:

答案 0 :(得分:0)

spotify-web-api-android不包含在maven中央存储库中。链接的文档有错误的信息。我不知道为什么......

或者我找到了this link和下一个代码。

repositories {
    maven {
        url "https://github.com/z0lope0z/raws/raw/master"
    }
    mavenCentral()
}

dependencies {
    compile 'kaaes.spotify.webapi.android:spotify-web-api-android:0.1.0'
}