Skip to content

Commit

Permalink
Fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjith-zuper committed Oct 22, 2023
1 parent cfbf290 commit f70bac3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions imagepicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id "com.android.library"
id "kotlin-android"
id "kotlin-parcelize"
id "maven-publish"
}

group = 'com.github.ZupersoftSolutions'
Expand Down Expand Up @@ -55,6 +56,15 @@ artifacts {
archives sourcesJar
}

android {
publishing {
singleVariant('release') {
withSourcesJar()
withJavadocJar()
}
}
}

dependencies {
implementation "com.github.bumptech.glide:glide:4.14.2"
implementation 'androidx.recyclerview:recyclerview:1.2.1'
Expand Down
5 changes: 4 additions & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
jdk:
- openjdk17

before_install:
- ./setup.sh
- ./setup.sh

0 comments on commit f70bac3

Please sign in to comment.