Android Studio can't find library classes after Gradle build

前端 未结 5 1657
野性不改
野性不改 2021-01-03 19:30

I\'m trying to add a .jar library to my project into the /libs folder. Here is my grade.build:

    buildscript {
              


        
5条回答
  •  不知归路
    2021-01-03 20:14

    Using the command line, in the root of your project, run :
    ./gradlew clean && ./gradlew build

    Then recompile your project in studio and you should see your new lib.

提交回复
热议问题