如何将aar文件添加到react-native项目?

时间:2017-09-07 17:29:22

标签: android react-native

我正在构建一个react-native项目,但无法将aar文件添加为依赖项。

我已按照以下步骤进行操作

  1. 创建了libs文件夹,并在其中放置了aar文件。
  2. 在顶级Gradle中写这个

     repositories {
       mavenCentral()
       flatDir {
         dirs 'libs'
       }
    }
    
  3. 将以下行添加到依赖项

    compile project(name: "xyz", ext: 'aar')
    
  4. 我在构建

    时遇到了这个错误
    * What went wrong:
    A problem occurred evaluating project ':react-native-abc'.
    > Required keys [path] are missing from map {name=xyz, ext=aar}.
    

1 个答案:

答案 0 :(得分:0)

->在步骤2中,只需确保在添加时

    flatDir{ 
       dirs 'libs' 
    }

在存储库中,存储库属于所有项目,而不是buildscript。

->在第3步中尝试以下操作:

    compile(name: "xyz",ext: 'aar')