我试图添加一个jar文件到我现有的应用程序。当我尝试以下绝对路径到我的构建。Gradle,它工作得很好。
compile files('C:/Users/julia/AndroidStudioProjects/TestProject/libs/MyPo.jar')
但是,当我试图将其更改为相对路径时,它不起作用。
compile files('libs/MyPo.jar'), I also tried
compile project('libs:MyPo.jar')
compile project(':libs:MyPo.jar')
使用相对路径将这个jar文件添加到我的应用程序的正确方法是什么?谢谢。
将jar文件放到app->lib文件夹中在您的项目构建中。Gradle use compile ('lib/filename.jar')然后同步你的项目
File
-> Project Structure
-> Dependencies
->"+"——> File dependency