0

How do i setup my project to use this git hub project; PD-for-android https://github.com/libpd/pd-for-android . Tutorials i found are for older repositories. Adding it to dependencies,

compile 'org.puredata.android:pd-core:1.0.0-rc4'

as shown on https://github.com/libpd/pd-for-android leads to a failed to resolve error on the gradle console for android studio

Nigel Tiany
  • 71
  • 12

1 Answers1

0

The pd-for-android artifact should be obtained from jcenter. Check out the build.gradle files in the MobMuPlat Android app, which is built using the jcenter artifact:

repositories {
  jcenter()
}

github.com/monkeyswarm/MobMuPlattree/master/MobMuPlat-Android

Joe Bowbeer
  • 3,574
  • 3
  • 36
  • 47