Invalid maven url
Druvid opened this issue · 0 comments
Druvid commented
The repository at https://github.com/kshoji/USB-MIDI-Driver/raw/master/library/repository does not exit, as described here: https://github.com/kshoji/javax.sound.midi-for-Android/wiki/Use-library-with-Android-Studio
Also, in Android Studio, the project root build.gradle need two separate entries for maven url like this:
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://github.com/kshoji/BLE-MIDI-for-Android/raw/master/library/repository'
}
maven {
url 'https://github.com/kshoji/USB-MIDI-Driver/raw/master/library/repository'
}
mavenCentral()
}
}
and
compile 'jp.kshoji:midi-driver:0.1.4:@aar'
should be replaced by
implementation 'jp.kshoji:midi-driver:0.1.4:@aar'