Android Studio: Gradle build fails — Execution failed for task ':compileDebugAidl'

前端 未结 10 1924
孤街浪徒
孤街浪徒 2021-02-06 22:18

After changes to source and building with gradle in Android Studio (I/O preview) AI - 130.677228 the build fails with the following error:

Gradle: 
FAILURE: Buil         


        
10条回答
  •  心在旅途
    2021-02-06 23:13

    Add the code below into your build.gradle file. This works for me.

    dependencies {
    
    compile fileTree(dir: 'libs', include: '*.jar')
    
    }
    

提交回复
热议问题