0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Gradle - How to Import Local .jar Files when Building?

Posted at

If you need manual import .jar from local when building gradle project, you can add this in the build.gradle file.

Gradle Version : 6.8.1

dependencies {
...
...
...
    implementation fileTree('your/local/libs/folder') { include '*.jar' }
...
...
...
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?