Skip to content

Commit

Permalink
Merge pull request #4 from Willena/fix/2-version-unreachable
Browse files Browse the repository at this point in the history
Should fix source being unreachable when importing the lib. Closes #2
  • Loading branch information
Willena authored Jan 4, 2021
2 parents c182182 + ed30536 commit 49709dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions phoneinputview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ dependencies {
// build a jar with source files
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

task javadoc(type: Javadoc) {
Expand All @@ -43,6 +44,7 @@ task javadoc(type: Javadoc) {
// build a jar with javadoc
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}

artifacts {
Expand Down

0 comments on commit 49709dd

Please sign in to comment.