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 de1471f commit 400a970Copy full SHA for 400a970
easybilling/build.gradle
@@ -1,8 +1,19 @@
1
plugins {
2
id 'com.android.library'
3
id 'kotlin-android'
4
+ id 'maven-publish'
5
}
6
7
+repositories {
8
+ mavenCentral()
9
+ google()
10
+ jcenter()
11
+ maven { url "https://jitpack.io" }
12
+}
13
+
14
+group = 'com.github.applogistdev'
15
+version = '6.2.0'
16
17
android {
18
compileSdkVersion 31
19
buildToolsVersion "31.0.0"
@@ -37,3 +48,17 @@ dependencies {
37
48
38
49
api 'com.android.billingclient:billing:5.0.0'
39
50
51
52
+afterEvaluate {
53
+ publishing {
54
+ publications {
55
+ // Creates a Maven publication called "release".
56
+ release(MavenPublication) {
57
+ from components.release
58
+ groupId = 'com.github.applogistdev'
59
+ artifactId = 'easybilling-android'
60
+ version = '3.0.0'
61
+ }
62
63
64
0 commit comments