We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffa3b6 commit 829b87fCopy full SHA for 829b87f
app/build.gradle
@@ -1,6 +1,7 @@
1
plugins {
2
id 'com.android.application'
3
id 'org.jetbrains.kotlin.android'
4
+ id 'maven-publish'
5
}
6
7
android {
jipack.yml
@@ -0,0 +1,4 @@
+jdk:
+ - openjdk11
+before_install:
+ - ./scripts/prepareJitpackEnvironment.sh
s3media_files_uploader/build.gradle
@@ -30,7 +30,19 @@ android {
30
jvmTarget = '1.8'
31
32
33
+afterEvaluate {
34
+ publishing {
35
+ publications {
36
+ release(MavenPublication) {
37
+ from components.release
38
39
+ groupId = 'com.github.softsuave-tech-matrix'
40
+ artifactId = 's3media_files_uploader'
41
+ version = '1.0.0'
42
+ }
43
44
45
+}
46
dependencies {
47
48
implementation 'androidx.core:core-ktx:1.10.1'
0 commit comments