我正在尝试按照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'
}