我一直试图将此Midi Lib集成到我的Android项目中,但没有成功。我已尝试手动导入它,将其链接与此相同 lib但是它给了我编译错误。 我也没有运气就试过maven。
将库添加为外部模块时出错(添加到项目根目录中的libs文件夹)
错误:项目:应用程序从配置声明依赖关系'编译'配置'默认'未在项目描述符中声明:libs:android-midi-lib-master。
我的设置gradle:
include ':app'
include 'libs:android-midi-lib-master'
我的build.gradle:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':openCVLibrary320')
compile project(':libs:android-midi-lib-master')
compile files('libs/wekaSTRIPPED.jar')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.code.gson:gson:2.8.1'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
我的解决方案是在模块中复制创建新文件夹leff。然后将所有出现的com.leff.midi替换为我的包名称,在我的情况下为com.benidobre.android.midi。之后,再也没有导入错误,因此我能够运行该应用程序