在我的 gradle 文件中为 android 添加 pd 的 gradle 依赖项没有任何作用

Adding gradle dependency for pd for android in my gradle file does nothing

我正在尝试按照 pd-for-android's githubpage 上的说明将 pd-for-android 作为 gradle 依赖项导入到我的项目中(即确保 jcenter() 是在 build.gradle 的顶级存储库中,然后将 compile 'org.puredata.android:pd-core:1.0.1' 添加到应用 build.gradle)

中的依赖项

我按照这些说明进行操作,但看不到库正在下载到我的外部库中。我还需要做些什么才能让它正常工作吗?

这是我的 gradle 文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "21.1.2"

    defaultConfig {
        ...
        minSdkVersion 19
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"

        ndk {
            ...
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    wearApp project(':wear')
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.android.support:support-v4:23.2.1'
    compile 'io.reactivex:rxjava:+'
    compile 'io.reactivex:rxandroid:+'
    compile 'org.puredata.android:pd-core:1.0.1'
}

当您单击“文件”->“项目结构”,然后在 Android Studio 中的“依赖项”选项卡上时,它是否正确显示为依赖项? 如果没有,您是否尝试通过“+”按钮将其添加到那里?

检查它是否 inside app\build\intermediates\exploded-aar\

如果你有图书馆,你应该没有任何问题使用它。