Google AppInvites break build

末鹿安然 提交于 2019-12-03 11:52:58

Same error when I tried to use Instant Run.

Fixed by adding this instead:

android {
  sourcesets {
    main {
      jniLibs.srcDir new File(buildDir, 'lib')
    {
  }
}

Reference: https://groups.google.com/forum/#!topic/adt-dev/OqDyZ5VN-QM

Ashish Rawat

Change the gradle version to 1.3.1.

 dependencies {
     classpath 'com.android.tools.build:gradle:1.3.1'
 }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!