kshoji / javax.sound.midi-for-Android

Package javax.sound.midi porting for Android
Apache License 2.0
75 stars 34 forks source link

Invalid maven url #14

Open Druvid opened 5 years ago

Druvid commented 5 years ago

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'