File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
src/main/java/com/segment/analytics/kotlin/core Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -78,4 +78,8 @@ dependencies {
78
78
79
79
apply from : rootProject. file(' gradle/artifacts-android.gradle' )
80
80
apply from : rootProject. file(' gradle/mvn-publish.gradle' )
81
- apply from : rootProject. file(' gradle/codecov.gradle' )
81
+ apply from : rootProject. file(' gradle/codecov.gradle' )
82
+
83
+ tasks. named(" signReleasePublication" ) {
84
+ dependsOn(" bundleReleaseAar" )
85
+ }
Original file line number Diff line number Diff line change @@ -38,4 +38,8 @@ dependencies {
38
38
39
39
apply from : rootProject. file(' gradle/artifacts-core.gradle' )
40
40
apply from : rootProject. file(' gradle/mvn-publish.gradle' )
41
- apply from : rootProject. file(' gradle/codecov.gradle' )
41
+ apply from : rootProject. file(' gradle/codecov.gradle' )
42
+
43
+ tasks. named(" signReleasePublication" ) {
44
+ dependsOn(" jar" )
45
+ }
Original file line number Diff line number Diff line change 1
1
package com.segment.analytics.kotlin.core
2
2
3
3
object Constants {
4
- const val LIBRARY_VERSION = " 1.19.2 "
4
+ const val LIBRARY_VERSION = " 1.20.0 "
5
5
const val DEFAULT_API_HOST = " api.segment.io/v1"
6
6
const val DEFAULT_CDN_HOST = " cdn-settings.segment.com/v1"
7
7
}
Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ android.useAndroidX=true
19
19
android.enableJetifier =true
20
20
# Kotlin code style for this project: "official" or "obsolete":
21
21
kotlin.code.style =official
22
+ android.disableAutomaticComponentCreation =true
22
23
23
24
# Deployment variables
24
25
GROUP =com.segment.analytics.kotlin
25
26
26
- VERSION_CODE =1192
27
- VERSION_NAME =1.19.2
27
+ VERSION_CODE =1200
28
+ VERSION_NAME =1.20.0
28
29
29
30
POM_NAME =Segment for Kotlin
30
31
POM_DESCRIPTION =The hassle-free way to add analytics to your Kotlin app.
You can’t perform that action at this time.
0 commit comments