我正在构建一个react-native项目,但无法将aar
文件添加为依赖项。
我已按照以下步骤进行操作
在顶级Gradle中写这个
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
将以下行添加到依赖项
compile project(name: "xyz", ext: 'aar')
我在构建
时遇到了这个错误* What went wrong:
A problem occurred evaluating project ':react-native-abc'.
> Required keys [path] are missing from map {name=xyz, ext=aar}.
答案 0 :(得分:0)
->在步骤2中,只需确保在添加时
flatDir{
dirs 'libs'
}
在存储库中,存储库属于所有项目,而不是buildscript。
->在第3步中尝试以下操作:
compile(name: "xyz",ext: 'aar')