We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3572ae commit 3c83f8eCopy full SHA for 3c83f8e
.idea/compiler.xml
IpFyAndroid/build.gradle
@@ -1,6 +1,8 @@
1
plugins {
2
id 'com.android.library'
3
id 'kotlin-android'
4
+ id 'kotlin-parcelize'
5
+ id 'maven-publish'
6
}
7
8
android {
@@ -42,4 +44,21 @@ dependencies {
42
44
43
45
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
46
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
47
+}
48
+
49
+afterEvaluate {
50
+ publishing {
51
+ publications {
52
+ // Creates a Maven publication called "release".
53
+ release(MavenPublication) {
54
+ // Applies the component for the release build variant.
55
+ from components.release
56
57
+ // You can then customize attributes of the publication as shown below.
58
+ groupId = 'com.creative.chintan369'
59
+ artifactId = 'IpFyAndroid'
60
+ version = '1.0.1'
61
+ }
62
63
64
0 commit comments